Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
68bd9ab9
Commit
68bd9ab9
authored
Aug 08, 2016
by
Guolin Ke
Browse files
some warning fix
parent
1c774687
Changes
41
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
include/LightGBM/application.h
include/LightGBM/application.h
+1
-1
include/LightGBM/bin.h
include/LightGBM/bin.h
+1
-1
include/LightGBM/boosting.h
include/LightGBM/boosting.h
+1
-1
include/LightGBM/config.h
include/LightGBM/config.h
+1
-1
include/LightGBM/dataset.h
include/LightGBM/dataset.h
+1
-1
include/LightGBM/feature.h
include/LightGBM/feature.h
+1
-1
include/LightGBM/meta.h
include/LightGBM/meta.h
+1
-1
include/LightGBM/metric.h
include/LightGBM/metric.h
+1
-1
include/LightGBM/network.h
include/LightGBM/network.h
+1
-1
include/LightGBM/objective_function.h
include/LightGBM/objective_function.h
+1
-1
include/LightGBM/tree.h
include/LightGBM/tree.h
+1
-1
include/LightGBM/tree_learner.h
include/LightGBM/tree_learner.h
+1
-1
include/LightGBM/utils/array_args.h
include/LightGBM/utils/array_args.h
+1
-1
include/LightGBM/utils/common.h
include/LightGBM/utils/common.h
+1
-1
include/LightGBM/utils/log.h
include/LightGBM/utils/log.h
+1
-1
include/LightGBM/utils/pipeline_reader.h
include/LightGBM/utils/pipeline_reader.h
+1
-1
include/LightGBM/utils/random.h
include/LightGBM/utils/random.h
+1
-1
include/LightGBM/utils/text_reader.h
include/LightGBM/utils/text_reader.h
+1
-1
include/LightGBM/utils/threading.h
include/LightGBM/utils/threading.h
+1
-1
src/application/predictor.hpp
src/application/predictor.hpp
+1
-1
No files found.
include/LightGBM/application.h
View file @
68bd9ab9
...
@@ -89,4 +89,4 @@ inline void Application::Run() {
...
@@ -89,4 +89,4 @@ inline void Application::Run() {
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_APPLICATION_H_
#endif // LightGBM_APPLICATION_H_
include/LightGBM/bin.h
View file @
68bd9ab9
...
@@ -306,4 +306,4 @@ inline unsigned int BinMapper::ValueToBin(double value) const {
...
@@ -306,4 +306,4 @@ inline unsigned int BinMapper::ValueToBin(double value) const {
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_BIN_H_
#endif // LightGBM_BIN_H_
include/LightGBM/boosting.h
View file @
68bd9ab9
...
@@ -95,4 +95,4 @@ public:
...
@@ -95,4 +95,4 @@ public:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_BOOSTING_H_
#endif // LightGBM_BOOSTING_H_
include/LightGBM/config.h
View file @
68bd9ab9
...
@@ -329,4 +329,4 @@ struct ParameterAlias {
...
@@ -329,4 +329,4 @@ struct ParameterAlias {
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_CONFIG_H_
#endif // LightGBM_CONFIG_H_
include/LightGBM/dataset.h
View file @
68bd9ab9
...
@@ -395,4 +395,4 @@ private:
...
@@ -395,4 +395,4 @@ private:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_DATA_H_
#endif // LightGBM_DATA_H_
include/LightGBM/feature.h
View file @
68bd9ab9
...
@@ -128,4 +128,4 @@ private:
...
@@ -128,4 +128,4 @@ private:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_FEATURE_H_
#endif // LightGBM_FEATURE_H_
include/LightGBM/meta.h
View file @
68bd9ab9
...
@@ -27,4 +27,4 @@ using ReduceFunction = std::function<void(const char*, char*, int)>;
...
@@ -27,4 +27,4 @@ using ReduceFunction = std::function<void(const char*, char*, int)>;
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_META_H_
#endif // LightGBM_META_H_
include/LightGBM/metric.h
View file @
68bd9ab9
...
@@ -118,4 +118,4 @@ private:
...
@@ -118,4 +118,4 @@ private:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_METRIC_H_
#endif // LightGBM_METRIC_H_
include/LightGBM/network.h
View file @
68bd9ab9
...
@@ -184,4 +184,4 @@ inline int Network::num_machines() {
...
@@ -184,4 +184,4 @@ inline int Network::num_machines() {
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_NETWORK_H_
#endif // LightGBM_NETWORK_H_
include/LightGBM/objective_function.h
View file @
68bd9ab9
...
@@ -50,4 +50,4 @@ public:
...
@@ -50,4 +50,4 @@ public:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_OBJECTIVE_FUNCTION_H_
#endif // LightGBM_OBJECTIVE_FUNCTION_H_
include/LightGBM/tree.h
View file @
68bd9ab9
...
@@ -173,4 +173,4 @@ inline int Tree::GetLeaf(const double* feature_values) const {
...
@@ -173,4 +173,4 @@ inline int Tree::GetLeaf(const double* feature_values) const {
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_TREE_H_
#endif // LightGBM_TREE_H_
include/LightGBM/tree_learner.h
View file @
68bd9ab9
...
@@ -60,4 +60,4 @@ public:
...
@@ -60,4 +60,4 @@ public:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_TREE_LEARNER_H_
#endif // LightGBM_TREE_LEARNER_H_
include/LightGBM/utils/array_args.h
View file @
68bd9ab9
...
@@ -112,5 +112,5 @@ public:
...
@@ -112,5 +112,5 @@ public:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_ARRAY_AGRS_H_
#endif // LightGBM_UTILS_ARRAY_AGRS_H_
include/LightGBM/utils/common.h
View file @
68bd9ab9
...
@@ -264,4 +264,4 @@ static inline int64_t Pow2RoundUp(int64_t x) {
...
@@ -264,4 +264,4 @@ static inline int64_t Pow2RoundUp(int64_t x) {
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_COMMON_FUN_H_
#endif // LightGBM_UTILS_COMMON_FUN_H_
include/LightGBM/utils/log.h
View file @
68bd9ab9
...
@@ -46,4 +46,4 @@ public:
...
@@ -46,4 +46,4 @@ public:
" at %s, line %d .\n", __FILE__, __LINE__);
" at %s, line %d .\n", __FILE__, __LINE__);
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_LOG_H_
#endif // LightGBM_UTILS_LOG_H_
include/LightGBM/utils/pipeline_reader.h
View file @
68bd9ab9
...
@@ -67,4 +67,4 @@ public:
...
@@ -67,4 +67,4 @@ public:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_PIPELINE_READER_H_
#endif // LightGBM_UTILS_PIPELINE_READER_H_
include/LightGBM/utils/random.h
View file @
68bd9ab9
...
@@ -74,4 +74,4 @@ private:
...
@@ -74,4 +74,4 @@ private:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_RANDOM_H_
#endif // LightGBM_UTILS_RANDOM_H_
include/LightGBM/utils/text_reader.h
View file @
68bd9ab9
...
@@ -264,5 +264,5 @@ private:
...
@@ -264,5 +264,5 @@ private:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_TEXT_READER_H_
#endif // LightGBM_UTILS_TEXT_READER_H_
include/LightGBM/utils/threading.h
View file @
68bd9ab9
...
@@ -35,4 +35,4 @@ public:
...
@@ -35,4 +35,4 @@ public:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_UTILS_THREADING_H_
#endif // LightGBM_UTILS_THREADING_H_
src/application/predictor.hpp
View file @
68bd9ab9
...
@@ -184,4 +184,4 @@ private:
...
@@ -184,4 +184,4 @@ private:
}
// namespace LightGBM
}
// namespace LightGBM
#endif
#endif
// LightGBM_PREDICTOR_HPP_
#endif // LightGBM_PREDICTOR_HPP_
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment