Skip to content

Commit bb83a41

Browse files
uriblassmcostalba
authored andcommitted
Increase slowmover and reduce instability
These two changes go in opposite directions and it seems that the combination is stronger than original. Here are the positive tests at various TC: 15+0.05 LLR: 2.96 (-2.94,2.94) [-1.50,4.50] Total: 24561 W: 4946 L: 4772 D: 14843 60+0.05 LLR: 2.96 (-2.94,2.94) [0.00,6.00] Total: 15259 W: 2598 L: 2423 D: 10238 40/30 LLR: 2.96 (-2.94,2.94) [-3.00,3.00] Total: 2570 W: 527 L: 422 D: 1621 Unfortunately there is also a bad result with one sec time increment that needs to be further investigated: 12+1 LLR: -2.97 (-2.94,2.94) [-3.00,3.00] Total: 2694 W: 438 L: 543 D: 1713 bench: 8340585
1 parent 984ee9d commit bb83a41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/timeman.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace {
7878

7979
void TimeManager::pv_instability(double bestMoveChanges) {
8080

81-
unstablePVExtraTime = int(bestMoveChanges * optimumSearchTime);
81+
unstablePVExtraTime = int(bestMoveChanges * optimumSearchTime / 1.4);
8282
}
8383

8484

src/ucioption.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void init(OptionsMap& o) {
8383
o["Emergency Base Time"] = Option(60, 0, 30000);
8484
o["Emergency Move Time"] = Option(30, 0, 5000);
8585
o["Minimum Thinking Time"] = Option(20, 0, 5000);
86-
o["Slow Mover"] = Option(50, 10, 1000);
86+
o["Slow Mover"] = Option(70, 10, 1000);
8787
o["UCI_Chess960"] = Option(false);
8888
o["UCI_AnalyseMode"] = Option(false, on_eval);
8989
}

0 commit comments

Comments
 (0)