We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39c4390 commit e7dbe69Copy full SHA for e7dbe69
Serendipity/src/main/java/org/shawn/games/Serendipity/Search/AlphaBeta.java
@@ -577,6 +577,10 @@ else if (givesCheck)
577
r -= isPV ? 1 : 0;
578
r -= givesCheck ? 1 : 0;
579
r += cutNode ? 1 : 0;
580
+
581
+ final int history = threadData.history.get(board, move) + 4500;
582
583
+ r -= history / 5000;
584
585
int d = newdepth - r;
586
d = Math.min(newdepth, newdepth - r);
0 commit comments