Skip to content

Commit

Permalink
ablation: no policy based reduction
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 d068f62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Rapfi/search/ab/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1114,9 +1114,9 @@ Value search(Board &board, SearchStack *ss, Value alpha, Value beta, Depth depth
searchData->rootDelta);

// Policy based reduction
if (mp.hasPolicyScore())
r += policyReduction<Rule>(mp.curMoveScore()
* (0.1f / Evaluation::PolicyBuffer::ScoreScale));
//if (mp.hasPolicyScore())
// r += policyReduction<Rule>(mp.curMoveScore()
// * (0.1f / Evaluation::PolicyBuffer::ScoreScale));

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

0 comments on commit d068f62

Please sign in to comment.