]> git.sesse.net Git - stockfish/blob - src/ucioption.cpp
Remove 4*IncrementalFutilityMargin from futilityValue
[stockfish] / src / ucioption.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2009 Marco Costalba
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 ////
22 //// Includes
23 ////
24
25 #include <algorithm>
26 #include <cassert>
27 #include <map>
28 #include <string>
29 #include <sstream>
30 #include <vector>
31
32 #include "misc.h"
33 #include "thread.h"
34 #include "ucioption.h"
35
36 using std::string;
37
38 ////
39 //// Local definitions
40 ////
41
42 namespace {
43
44   ///
45   /// Types
46   ///
47
48   enum OptionType { SPIN, COMBO, CHECK, STRING, BUTTON };
49
50   typedef std::vector<string> ComboValues;
51
52   struct Option {
53
54     string name, defaultValue, currentValue;
55     OptionType type;
56     size_t idx;
57     int minValue, maxValue;
58     ComboValues comboValues;
59
60     Option();
61     Option(const char* defaultValue, OptionType = STRING);
62     Option(bool defaultValue, OptionType = CHECK);
63     Option(int defaultValue, int minValue, int maxValue);
64
65     bool operator<(const Option& o) const { return this->idx < o.idx; }
66   };
67
68   typedef std::map<string, Option> Options;
69
70   ///
71   /// Constants
72   ///
73
74   // load_defaults populates the options map with the hard
75   // coded names and default values.
76
77   void load_defaults(Options& o) {
78
79     o["Use Search Log"] = Option(false);
80     o["Search Log Filename"] = Option("SearchLog.txt");
81     o["Book File"] = Option("book.bin");
82     o["Mobility (Middle Game)"] = Option(100, 0, 200);
83     o["Mobility (Endgame)"] = Option(100, 0, 200);
84     o["Pawn Structure (Middle Game)"] = Option(100, 0, 200);
85     o["Pawn Structure (Endgame)"] = Option(100, 0, 200);
86     o["Passed Pawns (Middle Game)"] = Option(100, 0, 200);
87     o["Passed Pawns (Endgame)"] = Option(100, 0, 200);
88     o["Space"] = Option(100, 0, 200);
89     o["Aggressiveness"] = Option(100, 0, 200);
90     o["Cowardice"] = Option(100, 0, 200);
91     o["King Safety Curve"] = Option("Quadratic", COMBO);
92
93        o["King Safety Curve"].comboValues.push_back("Quadratic");
94        o["King Safety Curve"].comboValues.push_back("Linear");  /*, "From File"*/
95
96     o["King Safety Coefficient"] = Option(40, 1, 100);
97     o["King Safety X Intercept"] = Option(0, 0, 20);
98     o["King Safety Max Slope"] = Option(30, 10, 100);
99     o["King Safety Max Value"] = Option(500, 100, 1000);
100     o["Queen Contact Check Bonus"] = Option(3, 0, 8);
101     o["Queen Check Bonus"] = Option(2, 0, 4);
102     o["Rook Check Bonus"] = Option(1, 0, 4);
103     o["Bishop Check Bonus"] = Option(1, 0, 4);
104     o["Knight Check Bonus"] = Option(1, 0, 4);
105     o["Discovered Check Bonus"] = Option(3, 0, 8);
106     o["Mate Threat Bonus"] = Option(3, 0, 8);
107     o["Check Extension (PV nodes)"] = Option(2, 0, 2);
108     o["Check Extension (non-PV nodes)"] = Option(1, 0, 2);
109     o["Single Reply Extension (PV nodes)"] = Option(2, 0, 2);
110     o["Single Reply Extension (non-PV nodes)"] = Option(2, 0, 2);
111     o["Mate Threat Extension (PV nodes)"] = Option(0, 0, 2);
112     o["Mate Threat Extension (non-PV nodes)"] = Option(0, 0, 2);
113     o["Pawn Push to 7th Extension (PV nodes)"] = Option(1, 0, 2);
114     o["Pawn Push to 7th Extension (non-PV nodes)"] = Option(1, 0, 2);
115     o["Passed Pawn Extension (PV nodes)"] = Option(1, 0, 2);
116     o["Passed Pawn Extension (non-PV nodes)"] = Option(0, 0, 2);
117     o["Pawn Endgame Extension (PV nodes)"] = Option(2, 0, 2);
118     o["Pawn Endgame Extension (non-PV nodes)"] = Option(2, 0, 2);
119     o["Full Depth Moves (PV nodes)"] = Option(10, 1, 100);
120     o["Full Depth Moves (non-PV nodes)"] = Option(3, 1, 100);
121     o["Threat Depth"] = Option(5, 0, 100);
122     o["Randomness"] = Option(0, 0, 10);
123     o["Minimum Split Depth"] = Option(4, 4, 7);
124     o["Maximum Number of Threads per Split Point"] = Option(5, 4, 8);
125     o["Threads"] = Option(1, 1, 8);
126     o["Hash"] = Option(32, 4, 4096);
127     o["Clear Hash"] = Option(false, BUTTON);
128     o["Ponder"] = Option(true);
129     o["OwnBook"] = Option(true);
130     o["MultiPV"] = Option(1, 1, 500);
131     o["UCI_ShowCurrLine"] = Option(false);
132     o["UCI_Chess960"] = Option(false);
133     o["UCI_AnalyseMode"] = Option(false);
134
135     // Any option should know its name so to be easily printed
136     for (Options::iterator it = o.begin(); it != o.end(); ++it)
137         it->second.name = it->first;
138   }
139
140   ///
141   /// Variables
142   ///
143
144   Options options;
145
146   // stringify converts a value of type T to a std::string
147   template<typename T>
148   string stringify(const T& v) {
149
150      std::ostringstream ss;
151      ss << v;
152      return ss.str();
153   }
154
155
156   // get_option_value implements the various get_option_value_<type>
157   // functions defined later, because only the option value
158   // type changes a template seems a proper solution.
159
160   template<typename T>
161   T get_option_value(const string& optionName) {
162
163       T ret = T();
164       if (options.find(optionName) == options.end())
165           return ret;
166
167       std::istringstream ss(options[optionName].currentValue);
168       ss >> ret;
169       return ret;
170   }
171
172 }
173
174 ////
175 //// Functions
176 ////
177
178 /// init_uci_options() initializes the UCI options.  Currently, the only
179 /// thing this function does is to initialize the default value of the
180 /// "Threads" parameter to the number of available CPU cores.
181
182 void init_uci_options() {
183
184   load_defaults(options);
185
186   // Limit the default value of "Threads" to 7 even if we have 8 CPU cores.
187   // According to Ken Dail's tests, Glaurung plays much better with 7 than
188   // with 8 threads.  This is weird, but it is probably difficult to find out
189   // why before I have a 8-core computer to experiment with myself.
190   assert(options.find("Threads") != options.end());
191   assert(options.find("Minimum Split Depth") != options.end());
192
193   options["Threads"].defaultValue = stringify(Min(cpu_count(), 7));
194   options["Threads"].currentValue = stringify(Min(cpu_count(), 7));
195 }
196
197
198 /// print_uci_options() prints all the UCI options to the standard output,
199 /// in the format defined by the UCI protocol.
200
201 void print_uci_options() {
202
203   static const char optionTypeName[][16] = {
204     "spin", "combo", "check", "string", "button"
205   };
206
207   // Build up a vector out of the options map and sort it according to idx
208   // field, that is the chronological insertion order in options map.
209   std::vector<Option> vec;
210   for (Options::const_iterator it = options.begin(); it != options.end(); ++it)
211       vec.push_back(it->second);
212
213   std::sort(vec.begin(), vec.end());
214
215   for (std::vector<Option>::const_iterator it = vec.begin(); it != vec.end(); ++it)
216   {
217       std::cout << "\noption name " << it->name
218                 << " type "         << optionTypeName[it->type];
219
220       if (it->type == BUTTON)
221           continue;
222
223       if (it->type == CHECK)
224           std::cout << " default " << (it->defaultValue == "1" ? "true" : "false");
225       else
226           std::cout << " default " << it->defaultValue;
227
228       if (it->type == SPIN)
229           std::cout << " min " << it->minValue << " max " << it->maxValue;
230       else if (it->type == COMBO)
231           for (ComboValues::const_iterator itc = it->comboValues.begin();
232               itc != it->comboValues.end(); ++itc)
233               std::cout << " var " << *itc;
234   }
235   std::cout << std::endl;
236 }
237
238
239 /// get_option_value_bool() returns the current value of a UCI parameter of
240 /// type "check".
241
242 bool get_option_value_bool(const string& optionName) {
243
244   return get_option_value<bool>(optionName);
245 }
246
247
248 /// get_option_value_int() returns the value of a UCI parameter as an integer.
249 /// Normally, this function will be used for a parameter of type "spin", but
250 /// it could also be used with a "combo" parameter, where all the available
251 /// values are integers.
252
253 int get_option_value_int(const string& optionName) {
254
255   return get_option_value<int>(optionName);
256 }
257
258
259 /// get_option_value_string() returns the current value of a UCI parameter as
260 /// a string. It is used with parameters of type "combo" and "string".
261
262 string get_option_value_string(const string& optionName) {
263
264    return get_option_value<string>(optionName);
265 }
266
267
268 /// set_option_value() inserts a new value for a UCI parameter. Note that
269 /// the function does not check that the new value is legal for the given
270 /// parameter: This is assumed to be the responsibility of the GUI.
271
272 void set_option_value(const string& name, const string& value) {
273
274   // UCI protocol uses "true" and "false" instead of "1" and "0", so convert
275   // value according to standard C++ convention before to store it.
276   string v(value);
277   if (v == "true")
278       v = "1";
279   else if (v == "false")
280       v = "0";
281
282   if (options.find(name) != options.end())
283       options[name].currentValue = v;
284   else
285       std::cout << "No such option: " << name << std::endl;
286 }
287
288
289 /// push_button() is used to tell the engine that a UCI parameter of type
290 /// "button" has been selected:
291
292 void push_button(const string& buttonName) {
293
294   set_option_value(buttonName, "true");
295 }
296
297
298 /// button_was_pressed() tests whether a UCI parameter of type "button" has
299 /// been selected since the last time the function was called, in this case
300 /// it also resets the button.
301
302 bool button_was_pressed(const string& buttonName) {
303
304   if (!get_option_value<bool>(buttonName))
305           return false;
306
307   set_option_value(buttonName, "false");
308   return true;
309 }
310
311
312 namespace {
313
314   // Define constructors of Option class.
315
316   Option::Option() {} // To allow insertion in a std::map
317
318   Option::Option(const char* def, OptionType t)
319   : defaultValue(def), currentValue(def), type(t), idx(options.size()), minValue(0), maxValue(0) {}
320
321   Option::Option(bool def, OptionType t)
322   : defaultValue(stringify(def)), currentValue(stringify(def)), type(t), idx(options.size()), minValue(0), maxValue(0) {}
323
324   Option::Option(int def, int minv, int maxv)
325   : defaultValue(stringify(def)), currentValue(stringify(def)), type(SPIN), idx(options.size()), minValue(minv), maxValue(maxv) {}
326
327 }