make style more like Google style

This commit is contained in:
tqchen
2014-03-02 13:30:24 -08:00
committed by tqchen
parent 51b6d86c17
commit a8f69878eb
16 changed files with 32 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_LINEAR_HPP_
#define _XGBOOST_LINEAR_HPP_
#ifndef XGBOOST_LINEAR_HPP
#define XGBOOST_LINEAR_HPP
/*!
* \file xgboost_linear.h
* \brief Implementation of Linear booster, with L1/L2 regularization: Elastic Net

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_COL_TREEMAKER_HPP_
#define _XGBOOST_COL_TREEMAKER_HPP_
#ifndef XGBOOST_COL_TREEMAKER_HPP
#define XGBOOST_COL_TREEMAKER_HPP
/*!
* \file xgboost_col_treemaker.hpp
* \brief implementation of regression tree maker,

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_APEX_TREE_HPP_
#define _XGBOOST_APEX_TREE_HPP_
#ifndef XGBOOST_APEX_TREE_HPP
#define XGBOOST_APEX_TREE_HPP
/*!
* \file xgboost_svdf_tree.hpp
* \brief implementation of regression tree constructor, with layerwise support

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_TREE_HPP_
#define _XGBOOST_TREE_HPP_
#ifndef XGBOOST_TREE_HPP
#define XGBOOST_TREE_HPP
/*!
* \file xgboost_tree.hpp
* \brief implementation of regression tree

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_TREE_MODEL_H_
#define _XGBOOST_TREE_MODEL_H_
#ifndef XGBOOST_TREE_MODEL_H
#define XGBOOST_TREE_MODEL_H
/*!
* \file xgboost_tree_model.h
* \brief generic definition of model structure used in tree models

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_H_
#define _XGBOOST_H_
#ifndef XGBOOST_H
#define XGBOOST_H
/*!
* \file xgboost.h
* \brief the general gradient boosting interface

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_DATA_H_
#define _XGBOOST_DATA_H_
#ifndef XGBOOST_DATA_H
#define XGBOOST_DATA_H
/*!
* \file xgboost_data.h

View File

@@ -1,5 +1,5 @@
#ifndef _XGBOOST_GBMBASE_H_
#define _XGBOOST_GBMBASE_H_
#ifndef XGBOOST_GBMBASE_H
#define XGBOOST_GBMBASE_H
#include <omp.h>
#include <cstring>