From: Robert Nurnberg @ elitebook Date: Mon, 17 Jul 2023 16:02:22 +0000 (+0200) Subject: remove evalType from bench X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=6a31f54d3cacf8c4dc57f301e0e3aa40d7aec435 remove evalType from bench no longer used closes https://github.com/official-stockfish/Stockfish/pull/4694 No functional change --- diff --git a/AUTHORS b/AUTHORS index 79289394..462ae5e8 100644 --- a/AUTHORS +++ b/AUTHORS @@ -180,6 +180,7 @@ renouve Reuven Peleg (R-Peleg) Richard Lloyd (Richard-Lloyd) rn5f107s2 +Robert Nürnberg (robertnurnberg) Rodrigo Exterckötter Tjäder Rodrigo Roim (roim) Ronald de Man (syzygy1, syzygy) diff --git a/src/benchmark.cpp b/src/benchmark.cpp index baa90140..c41092a9 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -121,7 +121,6 @@ vector setup_bench(const Position& current, istream& is) { string limit = (is >> token) ? token : "13"; string fenFile = (is >> token) ? token : "default"; string limitType = (is >> token) ? token : "depth"; - string evalType = (is >> token) ? token : "mixed"; go = limitType == "eval" ? "eval" : "go " + limitType + " " + limit;