]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Trivial code style fixes
[stockfish] / src / search.cpp
index 1317fc239ddc46c22f89167b2516f645ed33aa13..152de13c861d6689f803327424c8a419db79b19c 100644 (file)
@@ -126,6 +126,7 @@ void Search::init() {
   {
       double    pvRed = 0.00 + log(double(hd)) * log(double(mc)) / 3.00;
       double nonPVRed = 0.33 + log(double(hd)) * log(double(mc)) / 2.25;
+
       Reductions[1][1][hd][mc] = int8_t(   pvRed >= 1.0 ?    pvRed + 0.5: 0);
       Reductions[0][1][hd][mc] = int8_t(nonPVRed >= 1.0 ? nonPVRed + 0.5: 0);