mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 04:28:55 +01:00
360c5ff3df
Instead of using an arbitrary limit we encode the absolute position in a u32 using one strong u16 for the field id and a weak u16 for the relative position in the attribute.
28 lines
755 B
Rust
28 lines
755 B
Rust
use std::cmp;
|
|
|
|
use crate::{relative_from_absolute_position, Position};
|
|
|
|
pub const MAX_DISTANCE: u32 = 8;
|
|
|
|
pub fn index_proximity(lhs: u32, rhs: u32) -> u32 {
|
|
if lhs <= rhs {
|
|
cmp::min(rhs - lhs, MAX_DISTANCE)
|
|
} else {
|
|
cmp::min((lhs - rhs) + 1, MAX_DISTANCE)
|
|
}
|
|
}
|
|
|
|
pub fn positions_proximity(lhs: Position, rhs: Position) -> u32 {
|
|
let (lhs_attr, lhs_index) = relative_from_absolute_position(lhs);
|
|
let (rhs_attr, rhs_index) = relative_from_absolute_position(rhs);
|
|
if lhs_attr != rhs_attr {
|
|
MAX_DISTANCE
|
|
} else {
|
|
index_proximity(lhs_index as u32, rhs_index as u32)
|
|
}
|
|
}
|
|
|
|
pub fn path_proximity(path: &[Position]) -> u32 {
|
|
path.windows(2).map(|w| positions_proximity(w[0], w[1])).sum::<u32>()
|
|
}
|