Skip to content

Commit 2a5ae34

Browse files
committed
Tweak some UCI parameters
According to Jean-Paul this setup should be stronger than default. And SPRT test seems to confirm it: At fast TC 15"+0.05 ELO: 3.33 +-2.7 (95%) LOS: 99.2% Total: 25866 W: 5461 L: 5213 D: 15192 At longer TC 60"+0.05 ELO: 7.27 +-5.0 (95%) LOS: 99.8% Total: 6544 W: 1212 L: 1075 D: 4257 bench: 5473339 Signed-off-by: Marco Costalba <mcostalba@gmail.com>
1 parent d3fe153 commit 2a5ae34

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/ucioption.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ void init(OptionsMap& o) {
6565
o["Book File"] = Option("book.bin");
6666
o["Best Book Move"] = Option(false);
6767
o["Contempt Factor"] = Option(0, -50, 50);
68-
o["Mobility (Middle Game)"] = Option(100, 0, 200, on_eval);
68+
o["Mobility (Middle Game)"] = Option(115, 0, 200, on_eval);
6969
o["Mobility (Endgame)"] = Option(100, 0, 200, on_eval);
70-
o["Passed Pawns (Middle Game)"] = Option(100, 0, 200, on_eval);
71-
o["Passed Pawns (Endgame)"] = Option(100, 0, 200, on_eval);
70+
o["Passed Pawns (Middle Game)"] = Option(103, 0, 200, on_eval);
71+
o["Passed Pawns (Endgame)"] = Option(103, 0, 200, on_eval);
7272
o["Space"] = Option(100, 0, 200, on_eval);
73-
o["Aggressiveness"] = Option(100, 0, 200, on_eval);
74-
o["Cowardice"] = Option(100, 0, 200, on_eval);
73+
o["Aggressiveness"] = Option(119, 0, 200, on_eval);
74+
o["Cowardice"] = Option(110, 0, 200, on_eval);
7575
o["Min Split Depth"] = Option(msd, 4, 12, on_threads);
7676
o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
7777
o["Threads"] = Option(cpus, 1, MAX_THREADS, on_threads);

0 commit comments

Comments
 (0)