]> git.sesse.net Git - stockfish/blobdiff - src/move.cpp
Maximum aspiration delta of 24
[stockfish] / src / move.cpp
index 165700a2a31500795da5b5253dec3e0b8a41a4d2..1b33ff68f721993c42e2712b284fcd50c0d3d5a8 100644 (file)
@@ -195,7 +195,7 @@ const string pretty_pv(Position& pos, int time, int depth,
   size_t length = 0;
 
   // First print depth, score, time and searched nodes...
-  s << std::setw(2) << depth / 2
+  s << std::setw(2) << depth
     << (type == VALUE_TYPE_LOWER ? " >" : type == VALUE_TYPE_UPPER ? " <" : "  ")
     << std::setw(7) << score_string(score)
     << std::setw(8) << time_string(time);