]> git.sesse.net Git - stockfish/commitdiff
Added FEN string to bench output
authorGoldenRare <deshawnmohan@hotmail.com>
Thu, 10 Sep 2020 04:24:40 +0000 (00:24 -0400)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Thu, 17 Sep 2020 05:06:21 +0000 (07:06 +0200)
fixes https://github.com/official-stockfish/Stockfish/pull/3117

closes https://github.com/official-stockfish/Stockfish/pull/3118

No functional change

AUTHORS
src/uci.cpp

diff --git a/AUTHORS b/AUTHORS
index c00ab657ff7426e9a681c49d6aac6a5c0b62b1bc..198dfa5a908a8b65db9f35ca2d9bb2b40cbadfbf 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -63,6 +63,7 @@ Gary Heckman (gheckman)
 George Sobala (gsobala)
 gguliash
 Gian-Carlo Pascutto (gcp)
 George Sobala (gsobala)
 gguliash
 Gian-Carlo Pascutto (gcp)
+Deshawn Mohan-Smith (GoldenRare)
 Gontran Lemaire (gonlem)
 Goodkov Vasiliy Aleksandrovich (goodkov)
 Gregor Cramer
 Gontran Lemaire (gonlem)
 Goodkov Vasiliy Aleksandrovich (goodkov)
 Gregor Cramer
index bc0ee0a0ce8718ce6ebaa8ead77b51ca79c4425f..3f3cc45874f47169e05e2ed6becbd6c7243e5455 100644 (file)
@@ -170,7 +170,7 @@ namespace {
 
         if (token == "go" || token == "eval")
         {
 
         if (token == "go" || token == "eval")
         {
-            cerr << "\nPosition: " << cnt++ << '/' << num << endl;
+            cerr << "\nPosition: " << cnt++ << '/' << num << " (" << pos.fen() << ")" << endl;
             if (token == "go")
             {
                go(pos, is, states);
             if (token == "go")
             {
                go(pos, is, states);