MLPACK  1.0.4
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 MatType>
00048     EmptyStatistic(const MatType& /* dataset */,
00049                    const size_t /* begin */,
00050                    const size_t /* count */)
00051     { }
00052 
00063     template<typename MatType>
00064     EmptyStatistic(const MatType& /* dataset */,
00065                    const size_t /* start */,
00066                    const size_t /* count */,
00067                    const EmptyStatistic& /* leftStat */,
00068                    const EmptyStatistic& /* rightStat */)
00069     { }
00070 };
00071 
00072 }; // namespace tree
00073 }; // namespace mlpack
00074 
00075 #endif // __MLPACK_CORE_TREE_STATISTIC_HPP