From: Steinar H. Gunderson Date: Sat, 24 Nov 2018 10:21:38 +0000 (+0100) Subject: Make sure analysis contempt is off; Stockfish > 9 enables it, and it gives rollercoas... X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=17c1ac08187cea6c69bd193f43a58bc984d9a5bc Make sure analysis contempt is off; Stockfish > 9 enables it, and it gives rollercoaster scores. --- diff --git a/remoteglot.pl b/remoteglot.pl index c6815af..c86eede 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -77,6 +77,7 @@ my $last_text = ''; my ($pos_calculating, $pos_calculating_second_engine); uciprint($engine, "setoption name UCI_AnalyseMode value true"); +uciprint($engine, "setoption name Analysis Contempt value Off"); while (my ($key, $value) = each %remoteglotconf::engine_config) { uciprint($engine, "setoption name $key value $value"); } @@ -84,6 +85,7 @@ uciprint($engine, "ucinewgame"); if (defined($engine2)) { uciprint($engine2, "setoption name UCI_AnalyseMode value true"); + uciprint($engine2, "setoption name Analysis Contempt value Off"); while (my ($key, $value) = each %remoteglotconf::engine2_config) { uciprint($engine2, "setoption name $key value $value"); }