pub trait TreeBuild<T: Aabb, S: Sorter>: Sized {
    fn sorter(&self) -> S;

    fn num_level(&self, num_bots: usize) -> usize { ... }
    fn height_seq_fallback(&self) -> usize { ... }
}
Expand description

Specify options for constructing the tree.

Required Methods

Provided Methods

Implementors