mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Restore user weights to 100
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
ace27831ee
commit
be2925b3c5
2 changed files with 5 additions and 5 deletions
|
@ -88,7 +88,7 @@ namespace {
|
||||||
//
|
//
|
||||||
// Values modified by Joona Kiiski
|
// Values modified by Joona Kiiski
|
||||||
const Score WeightsInternal[] = {
|
const Score WeightsInternal[] = {
|
||||||
S(248, 271), S(252, 259), S(46, 0), S(247, 0), S(259, 0)
|
S(284, 229), S(252, 259), S(46, 0), S(209, 0), S(349, 0)
|
||||||
};
|
};
|
||||||
|
|
||||||
// MobilityBonus[PieceType][attacked] contains mobility bonuses for middle and
|
// MobilityBonus[PieceType][attacked] contains mobility bonuses for middle and
|
||||||
|
|
|
@ -72,13 +72,13 @@ OptionsMap::OptionsMap() {
|
||||||
o["Search Log Filename"] = UCIOption("SearchLog.txt");
|
o["Search Log Filename"] = UCIOption("SearchLog.txt");
|
||||||
o["Book File"] = UCIOption("book.bin");
|
o["Book File"] = UCIOption("book.bin");
|
||||||
o["Best Book Move"] = UCIOption(false);
|
o["Best Book Move"] = UCIOption(false);
|
||||||
o["Mobility (Middle Game)"] = UCIOption(115, 0, 200);
|
o["Mobility (Middle Game)"] = UCIOption(100, 0, 200);
|
||||||
o["Mobility (Endgame)"] = UCIOption(85, 0, 200);
|
o["Mobility (Endgame)"] = UCIOption(100, 0, 200);
|
||||||
o["Passed Pawns (Middle Game)"] = UCIOption(100, 0, 200);
|
o["Passed Pawns (Middle Game)"] = UCIOption(100, 0, 200);
|
||||||
o["Passed Pawns (Endgame)"] = UCIOption(100, 0, 200);
|
o["Passed Pawns (Endgame)"] = UCIOption(100, 0, 200);
|
||||||
o["Space"] = UCIOption(100, 0, 200);
|
o["Space"] = UCIOption(100, 0, 200);
|
||||||
o["Aggressiveness"] = UCIOption(135, 0, 200);
|
o["Aggressiveness"] = UCIOption(100, 0, 200);
|
||||||
o["Cowardice"] = UCIOption(85, 0, 200);
|
o["Cowardice"] = UCIOption(100, 0, 200);
|
||||||
o["Minimum Split Depth"] = UCIOption(4, 4, 7);
|
o["Minimum Split Depth"] = UCIOption(4, 4, 7);
|
||||||
o["Maximum Number of Threads per Split Point"] = UCIOption(5, 4, 8);
|
o["Maximum Number of Threads per Split Point"] = UCIOption(5, 4, 8);
|
||||||
o["Threads"] = UCIOption(1, 1, MAX_THREADS);
|
o["Threads"] = UCIOption(1, 1, MAX_THREADS);
|
||||||
|
|
Loading…
Add table
Reference in a new issue