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

Default Hash defined in a single place

Instead of defining it both in ucioption.cpp and benchmark.cpp. Obviously changing the default Hash will
change the bench as a result.

No functional change.
This commit is contained in:
lucasart 2014-08-05 11:39:50 +08:00
parent 535f70088e
commit 94fe366779

View file

@ -82,7 +82,7 @@ void benchmark(const Position& current, istream& is) {
vector<string> fens;
// Assign default values to missing arguments
string ttSize = (is >> token) ? token : "32";
string ttSize = (is >> token) ? token : Options["Hash"];
string threads = (is >> token) ? token : "1";
string limit = (is >> token) ? token : "13";
string fenFile = (is >> token) ? token : "default";