1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! A spatial tree library

#![warn(missing_docs)]
#![cfg_attr(test, feature(test))]

extern crate nalgebra;
#[macro_use]
extern crate itertools;
extern crate rand;
extern crate num;

#[cfg(any(test, feature = "arbitrary"))]
extern crate quickcheck;
#[cfg(test)]
extern crate test;

pub use traits::*;
pub use pure_tree::PureTree;
pub use data_tree::Tree;
pub use error::ConstructionError;

pub mod partition;
pub mod pure_tree;
pub mod data_tree;
pub mod traits;
pub mod iter;
pub mod error;