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

Update polyglot.ini

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2011-05-01 07:49:40 +01:00
parent 4dc7ba1619
commit 33bd67e052
3 changed files with 3 additions and 14 deletions

View file

@ -31,21 +31,10 @@ Passed Pawns (Endgame) = 100
Space = 100 Space = 100
Aggressiveness = 100 Aggressiveness = 100
Cowardice = 100 Cowardice = 100
Check Extension (PV nodes) = 2
Check Extension (non-PV nodes) = 1
Single Reply Extension (PV nodes) = 2
Single Reply Extension (non-PV nodes) = 2
Mate Threat Extension (PV nodes) = 0
Mate Threat Extension (non-PV nodes) = 0
Pawn Push to 7th Extension (PV nodes) = 1
Pawn Push to 7th Extension (non-PV nodes) = 1
Passed Pawn Extension (PV nodes) = 1
Passed Pawn Extension (non-PV nodes) = 0
Pawn Endgame Extension (PV nodes) = 2
Pawn Endgame Extension (non-PV nodes) = 2
Minimum Split Depth = 4 Minimum Split Depth = 4
Maximum Number of Threads per Split Point = 5 Maximum Number of Threads per Split Point = 5
Use Sleeping Threads = false Use Sleeping Threads = false
Skill Level = 20
Emergency Move Horizon = 40 Emergency Move Horizon = 40
Emergency Base Time = 200 Emergency Base Time = 200
Emergency Move Time = 70 Emergency Move Time = 70

View file

@ -394,7 +394,7 @@ bool think(Position& pos, const SearchLimits& limits, Move searchMoves[]) {
// Read UCI options // Read UCI options
UCIMultiPV = Options["MultiPV"].value<int>(); UCIMultiPV = Options["MultiPV"].value<int>();
SkillLevel = Options["Skill level"].value<int>(); SkillLevel = Options["Skill Level"].value<int>();
read_evaluation_uci_options(pos.side_to_move()); read_evaluation_uci_options(pos.side_to_move());
Threads.read_uci_options(); Threads.read_uci_options();

View file

@ -90,7 +90,7 @@ OptionsMap::OptionsMap() {
o["Ponder"] = UCIOption(true); o["Ponder"] = UCIOption(true);
o["OwnBook"] = UCIOption(true); o["OwnBook"] = UCIOption(true);
o["MultiPV"] = UCIOption(1, 1, 500); o["MultiPV"] = UCIOption(1, 1, 500);
o["Skill level"] = UCIOption(20, 0, 20); o["Skill Level"] = UCIOption(20, 0, 20);
o["Emergency Move Horizon"] = UCIOption(40, 0, 50); o["Emergency Move Horizon"] = UCIOption(40, 0, 50);
o["Emergency Base Time"] = UCIOption(200, 0, 30000); o["Emergency Base Time"] = UCIOption(200, 0, 30000);
o["Emergency Move Time"] = UCIOption(70, 0, 5000); o["Emergency Move Time"] = UCIOption(70, 0, 5000);