mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08:00
Tidy up benchmark.cpp
Node count is different just becuase now we don't log on "bench.txt" file anymore so that we avoid some calls to pretty_pv() that calls Position::do_move(). Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -203,10 +203,10 @@ namespace {
|
||||
bool go(Position& pos, UCIParser& up) {
|
||||
|
||||
string token;
|
||||
int time[] = { 0, 0 }, inc[] = { 0, 0 };
|
||||
SearchLimits limits(0, 0, 0, 0, 0, 0, false, false);
|
||||
SearchLimits limits;
|
||||
Move searchMoves[MAX_MOVES] = { MOVE_NONE };
|
||||
Move* cur = searchMoves;
|
||||
int time[] = { 0, 0 }, inc[] = { 0, 0 };
|
||||
|
||||
while (up >> token)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user