mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-17 07:36:23 +08:00
Fix wrong reported depth
Interestingly this patch will make people complain search depth is reduced against 2.0.1 ;-) but actually it is only an artifact. Spotted by Joona. No functional change apart from a different do / undo move sequence due to teh fact that we don't call pv_info_to_uci() anymore before entering id loop. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -77,7 +77,7 @@ void benchmark(int argc, char* argv[]) {
|
||||
|
||||
ttSize = argc > 2 ? argv[2] : "128";
|
||||
threads = argc > 3 ? argv[3] : "1";
|
||||
valStr = argc > 4 ? argv[4] : "12";
|
||||
valStr = argc > 4 ? argv[4] : "11";
|
||||
posFile = argc > 5 ? argv[5] : "default";
|
||||
valType = argc > 6 ? argv[6] : "depth";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user