00001 00024 #ifndef __MLPACK_CORE_TREE_TREE_TRAITS_HPP 00025 #define __MLPACK_CORE_TREE_TREE_TRAITS_HPP 00026 00027 namespace mlpack { 00028 namespace tree { 00029 00086 template<typename TreeType> 00087 class TreeTraits 00088 { 00089 public: 00095 static const bool HasParentDistance = false; 00096 00101 static const bool HasOverlappingChildren = true; 00102 00106 static const bool FirstPointIsCentroid = false; 00107 00112 static const bool HasSelfChildren = false; 00113 }; 00114 00115 }; // namespace tree 00116 }; // namespace mlpack 00117 00118 #endif