-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoptions.cpp
More file actions
37 lines (33 loc) · 647 Bytes
/
options.cpp
File metadata and controls
37 lines (33 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* options.cpp
*
* the MicroChess project: https://github.com/ripred/MicroChess
*
* MicroChess options_t implementation
*
*/
#include <Arduino.h>
#include "MicroChess.h"
#include "options.h"
options_t::options_t() :
max_max_ply(4),
max_quiescent_ply(4),
maxply(2),
minply(1),
random(False),
live_update(False),
profiling(False),
continuous(False),
integrate(True),
openbook(False),
shuffle_pieces(True),
white_human(False),
black_human(False),
alpha_beta_pruning(True),
seed(PRN_SEED),
print_level(Debug1),
time_limit(0),
mistakes(0),
randskip(0)
{
}