X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=db9e6220fca0574ca8d449023c2212d81de07845;hp=88c1229e320ea804c4ef277f29c7c0d4da95013c;hb=21de03fad7f70c90d883d21d27983a5fe15f2c49;hpb=2f6927ac08887ff3b709cfe9228b27a85bdd1d88 diff --git a/src/uci.cpp b/src/uci.cpp index 88c1229e..db9e6220 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -151,7 +151,7 @@ namespace { EvalInfo ei; cout << "Incremental mg: " << mg_value(RootPosition.value()) << "\nIncremental eg: " << eg_value(RootPosition.value()) - << "\nFull eval: " << evaluate(RootPosition, ei, 0) << endl; + << "\nFull eval: " << evaluate(RootPosition, ei) << endl; } else if (token == "key") cout << "key: " << hex << RootPosition.get_key() @@ -206,7 +206,7 @@ namespace { move = move_from_string(RootPosition, token); RootPosition.do_move(move, st); if (RootPosition.rule_50_counter() == 0) - RootPosition.reset_ply(); + RootPosition.reset_game_ply(); } // Our StateInfo st is about going out of scope so copy // its content inside RootPosition before they disappear.