Skip to content

Commit

Permalink
ablation: no dynamic reduction based on complexity
Browse files Browse the repository at this point in the history
test r15
  • Loading branch information
dhbloo committed Jul 26, 2024
1 parent 49a8c22 commit 9a16ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rapfi/search/ab/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ Value search(Board &board, SearchStack *ss, Value alpha, Value beta, Depth depth
* (0.1f / Evaluation::PolicyBuffer::ScoreScale));

// Dynamic reduction based on complexity
r += complexity * complexityReduction<Rule>(trivialMove, importantMove, distract);
//r += complexity * complexityReduction<Rule>(trivialMove, importantMove, distract);

// Decrease reduction if position is or has been on the PV
if (ss->ttPv)
Expand Down

0 comments on commit 9a16ff4

Please sign in to comment.