1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

remove evalType from bench

no longer used

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

No functional change
This commit is contained in:
Robert Nurnberg @ elitebook 2023-07-17 18:02:22 +02:00 committed by Joost VandeVondele
parent 34d0c1b527
commit 6a31f54d3c
2 changed files with 1 additions and 1 deletions

View file

@ -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)

View 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;