]> git.sesse.net Git - stockfish/commitdiff
remove evalType from bench
authorRobert Nurnberg @ elitebook <robert.nurnberg@gmx.de>
Mon, 17 Jul 2023 16:02:22 +0000 (18:02 +0200)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Tue, 18 Jul 2023 06:09:52 +0000 (08:09 +0200)
no longer used

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

No functional change

AUTHORS
src/benchmark.cpp

diff --git a/AUTHORS b/AUTHORS
index 792893944c42e8d9fbba47b1c76a853edf84065d..462ae5e82d58fe3d67774d5972341117a986b3b7 100644 (file)
--- 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)
index baa90140f9bff30af9613dc9e3cb2a2586210ae8..c41092a9de89bd4237fccb8d8e6e6231a892e8ef 100644 (file)
@@ -121,7 +121,6 @@ vector<string> 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;