Change the name of the distance module

This commit is contained in:
Kerollmops 2023-06-14 14:58:51 +02:00 committed by Clément Renault
parent c2a402f3ae
commit 23eaaf1001
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
3 changed files with 2 additions and 3 deletions

View File

@ -13,7 +13,7 @@ use roaring::RoaringBitmap;
use rstar::RTree;
use time::OffsetDateTime;
use crate::dot_product::DotProduct;
use crate::distance::DotProduct;
use crate::error::{InternalError, UserError};
use crate::facet::FacetType;
use crate::fields_ids_map::FieldsIdsMap;

View File

@ -10,7 +10,7 @@ pub mod documents;
mod asc_desc;
mod criterion;
pub mod dot_product;
pub mod distance;
mod error;
mod external_documents_ids;
pub mod facet;
@ -20,7 +20,6 @@ pub mod index;
pub mod proximity;
pub mod score_details;
mod search;
mod search;
pub mod update;
#[cfg(test)]