src/bisection_tree.rs@61b068c50e25
src/bisection_tree.rs
Mon, 24 Oct 2022 10:52:19 +0300
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Mon, 24 Oct 2022 10:52:19 +0300
- changeset 4
- 61b068c50e25
- parent 0
-
9f27689eb130
- child 5
-
59dc4c5883f4
- permissions
- -rw-r--r--
Added type for numerical errors
///
/// Geometrical bisection trees
///
mod supportid;
pub use supportid::*;
mod aggregator;
pub use aggregator::*;
mod either;
pub use either::*;
mod support;
pub use support::*;
mod bt;
pub use bt::*;
mod refine;
pub use refine::*;
mod btfn;
pub use btfn::*;