Files
tantivy/src/spatial/mod.rs
Alan Gutierrez ba6d77c112 Add a surveyor to determine spread and prefix.
Implemented a `Surveyor` that will evaluate the bounding boxes of a set
of triangles and determine the dimension with the maximum spread and the
shared prefix for the values of dimension with the maximum spread.
2025-11-04 01:26:44 -06:00

6 lines
107 B
Rust

//! Spatial module (implements a block kd-tree)
pub mod radix_select;
pub mod surveyor;
pub mod triangle;