src/bisection_tree.rs@20db884b7028
src/bisection_tree.rs
Mon, 24 Oct 2022 09:41:43 +0300
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Mon, 24 Oct 2022 09:41:43 +0300
- changeset 3
- 20db884b7028
- parent 0
-
9f27689eb130
- child 5
-
59dc4c5883f4
- permissions
- -rw-r--r--
Allow step closure of AlgIterators to indicate succesfull termination or failure.
///
/// 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::*;