00001 00022 #ifndef __MLPACK_CORE_TREE_BINARY_SPACE_TREE_TRAITS_HPP 00023 #define __MLPACK_CORE_TREE_BINARY_SPACE_TREE_TRAITS_HPP 00024 00025 #include <mlpack/core/tree/tree_traits.hpp> 00026 00027 namespace mlpack { 00028 namespace tree { 00029 00036 template<typename BoundType, 00037 typename StatisticType, 00038 typename MatType> 00039 class TreeTraits<BinarySpaceTree<BoundType, StatisticType, MatType> > 00040 { 00041 public: 00046 static const bool HasParentDistance = false; 00047 00053 static const bool HasOverlappingChildren = false; 00054 00058 static const bool FirstPointIsCentroid = false; 00059 00063 static const bool HasSelfChildren = false; 00064 }; 00065 00066 }; // namespace tree 00067 }; // namespace mlpack 00068 00069 #endif