X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=c41092a9de89bd4237fccb8d8e6e6231a892e8ef;hb=6a31f54d3cacf8c4dc57f301e0e3aa40d7aec435;hp=baa90140f9bff30af9613dc9e3cb2a2586210ae8;hpb=34d0c1b5272a7af322825426e90c6fbc6b69c6b4;p=stockfish 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;