[TREE] move tree model

This commit is contained in:
tqchen 2016-01-01 01:04:08 -08:00
parent b4d0bb5a6d
commit 05115adbff
2 changed files with 6 additions and 6 deletions

View File

@ -11,13 +11,13 @@
* The major algorithm is a two pass linear scan algorithm that requires two pass scan over the data * The major algorithm is a two pass linear scan algorithm that requires two pass scan over the data
* \author Tianqi Chen * \author Tianqi Chen
*/ */
#ifndef XGBOOST_UTILS_GROUP_DATA_H_ #ifndef XGBOOST_COMMON_GROUP_DATA_H_
#define XGBOOST_UTILS_GROUP_DATA_H_ #define XGBOOST_COMMON_GROUP_DATA_H_
#include <vector> #include <vector>
namespace xgboost { namespace xgboost {
namespace utils { namespace common {
/*! /*!
* \brief multi-thread version of group builder * \brief multi-thread version of group builder
* \tparam ValueType type of entries in the sparse matrix * \tparam ValueType type of entries in the sparse matrix
@ -109,6 +109,6 @@ struct ParallelGroupBuilder {
/*! \brief local temp thread ptr, use this if not specified by the constructor */ /*! \brief local temp thread ptr, use this if not specified by the constructor */
std::vector<std::vector<SizeType> > tmp_thread_rptr; std::vector<std::vector<SizeType> > tmp_thread_rptr;
}; };
} // namespace utils } // namespace common
} // namespace xgboost } // namespace xgboost
#endif // XGBOOST_UTILS_GROUP_DATA_H_ #endif // XGBOOST_UTILS_GROUP_DATA_H_