From: Joona Kiiski Date: Fri, 23 Jul 2010 06:16:33 +0000 (+0300) Subject: Don't initialize psqt-tables when 'ucinewgame' is received X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=098ac5e44e88e95ad4ff945824315eca85e67f01 Don't initialize psqt-tables when 'ucinewgame' is received After 'Randomness' is retired, this is no longer necessary. NOTE: Possibly some extra care is needed when tuning branch is synced Signed-off-by: Marco Costalba --- diff --git a/src/uci.cpp b/src/uci.cpp index 60d10b0b..5a9bfb61 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -126,7 +126,6 @@ namespace { else if (token == "ucinewgame") { push_button("New Game"); - Position::init_piece_square_tables(); RootPosition.from_fen(StartPositionFEN); } else if (token == "isready")