pub trait TreeBuild<T, S> where
T: Aabb,
S: Sorter, {
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.