]> git.sesse.net Git - stockfish/blobdiff - src/benchmark.cpp
remove evalType from bench
[stockfish] / src / benchmark.cpp
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;