mlpack  1.0.12
rectangle_tree.hpp
Go to the documentation of this file.
1 
15 #ifndef __MLPACK_CORE_TREE_RECTANGLE_TREE_HPP
16 #define __MLPACK_CORE_TREE_RECTANGLE_TREE_HPP
17 
18 /* we include bounds.hpp since it gives us the necessary files.
19  * However, we will not use the "ballbounds" option.
20  */
21 #include "bounds.hpp"
22 #include "rectangle_tree/rectangle_tree.hpp"
23 #include "rectangle_tree/single_tree_traverser.hpp"
24 #include "rectangle_tree/single_tree_traverser_impl.hpp"
25 #include "rectangle_tree/dual_tree_traverser.hpp"
26 #include "rectangle_tree/dual_tree_traverser_impl.hpp"
27 #include "rectangle_tree/r_tree_split.hpp"
28 #include "rectangle_tree/r_star_tree_split.hpp"
29 #include "rectangle_tree/r_tree_descent_heuristic.hpp"
30 #include "rectangle_tree/r_star_tree_descent_heuristic.hpp"
31 #include "rectangle_tree/traits.hpp"
32 
33 #endif
Bounds that are useful for binary space partitioning trees.