fix random

This commit is contained in:
tqchen 2014-08-31 14:14:39 -07:00
parent 9e0cc778e8
commit 88da7839b7

View File

@ -83,7 +83,7 @@ struct Random{
inline void Seed(unsigned sd) {
this->rseed = sd;
#if defined(_MSC_VER)||defined(_WIN32)
::xgboost::utils::Seed(sd);
::xgboost::random::Seed(sd);
#endif
}
/*! \brief return a real number uniform in [0,1) */