14 lines
296 B
C++
14 lines
296 B
C++
/*!
|
|
* \file xgboost.cpp
|
|
* \brief bootser implementations
|
|
* \author Tianqi Chen: tianqi.tchen@gmail.com
|
|
*/
|
|
// implementation of boosters go to here
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
#include <climits>
|
|
#include "xgboost.h"
|
|
#include "../utils/xgboost_utils.h"
|
|
|
|
|