statistic.hpp

Go to the documentation of this file.
00001 
00024 #ifndef __MLPACK_CORE_TREE_STATISTIC_HPP
00025 #define __MLPACK_CORE_TREE_STATISTIC_HPP
00026 
00027 namespace mlpack {
00028 namespace tree {
00029 
00034 class EmptyStatistic
00035 {
00036   public:
00037     EmptyStatistic() { }
00038     ~EmptyStatistic() { }
00039 
00047     template<typename TreeType>
00048     EmptyStatistic(TreeType& /* node */) { }
00049 
00050   public:
00054     std::string ToString() const
00055     {
00056       std::stringstream convert;
00057       convert << "EmptyStatistic [" << this << "]" << std::endl;
00058       return convert.str();
00059     }
00060 };
00061 
00062 }; // namespace tree
00063 }; // namespace mlpack
00064 
00065 #endif // __MLPACK_CORE_TREE_STATISTIC_HPP

Generated on 13 Aug 2014 for MLPACK by  doxygen 1.6.1