"src/git@developer.sourcefind.cn:tianlh/lightgbm-dcu.git" did not exist on "5ffd7571193f7814eb2e30a0bc648e648bad0bf3"
Commit ba3e1ff2 authored by Adilet Zhaxybay's avatar Adilet Zhaxybay Committed by Guolin Ke
Browse files

Replaced tabs with spaces (#1330)

parent 1e3b57d4
......@@ -669,13 +669,13 @@ inline static double AvoidInf(double x) {
}
inline static float AvoidInf(float x) {
if (x >= 1e38) {
return 1e38f;
} else if (x <= -1e38) {
return -1e38f;
} else {
return x;
}
if (x >= 1e38) {
return 1e38f;
} else if (x <= -1e38) {
return -1e38f;
} else {
return x;
}
}
template<typename _Iter> inline
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment