X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=a92a634c615a18c707c4dd6ba53be097a7448d0f;hb=2efeded6e37283e297f15efde91c1ec3a3e9e920;hp=de8b48bb4c039f480f45f5e6339b19192b8ab70b;hpb=6044f25d7104c25e0218831027eade75e092ed0c;p=stockfish diff --git a/src/benchmark.cpp b/src/benchmark.cpp index de8b48bb..a92a634c 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -145,7 +145,7 @@ void benchmark(const Position& current, istream& is) { pos.do_move(*it, si); uint64_t cnt = limits.depth > 1 ? Search::perft(pos, (limits.depth - 1) * ONE_PLY) : 1; pos.undo_move(*it); - cerr << move_to_uci(*it, pos.is_chess960()) << ": " << cnt << endl; + cout << move_to_uci(*it, pos.is_chess960()) << ": " << cnt << endl; nodes += cnt; } else