Skip to content

Commit

Permalink
ablation: no qvcf search
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 cb68a96
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Rapfi/search/ab/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,9 @@ Value search(Board &board, SearchStack *ss, Value alpha, Value beta, Depth depth

// Return eval directly or dive into vcf search when the depth reaches zero
if (depth <= 0.0f) {
return oppo5 ? vcfdefend<Rule, NT>(board, ss, alpha, beta)
: vcfsearch<Rule, NT>(board, ss, alpha, beta);
//return oppo5 ? vcfdefend<Rule, NT>(board, ss, alpha, beta)
// : vcfsearch<Rule, NT>(board, ss, alpha, beta);
return Evaluation::evaluate<Rule>(board, alpha, beta);
}

int moveCount = 0, nonMatedCount = 0;
Expand Down

0 comments on commit cb68a96

Please sign in to comment.