X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=88c1229e320ea804c4ef277f29c7c0d4da95013c;hp=77c963435f3faed7945c62c6851d141a134b3a14;hb=2f6927ac08887ff3b709cfe9228b27a85bdd1d88;hpb=6716337f407ad6586b636aca72ee673655822137 diff --git a/src/uci.cpp b/src/uci.cpp index 77c96343..88c1229e 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -54,7 +54,7 @@ namespace { // The root position. This is set up when the user (or in practice, the GUI) // sends the "position" UCI command. The root position is sent to the think() // function when the program receives the "go" command. - Position RootPosition; + Position RootPosition(0); // Local functions bool handle_command(const string& command); @@ -143,7 +143,7 @@ namespace { RootPosition.print(); else if (token == "flip") { - Position p(RootPosition); + Position p(RootPosition, RootPosition.thread()); RootPosition.flipped_copy(p); } else if (token == "eval") @@ -308,7 +308,7 @@ namespace { string token; int depth, tm, n; - Position pos(RootPosition); + Position pos(RootPosition, RootPosition.thread()); if (!(uip >> depth)) return;