Skip to content

Commit

Permalink
ablation: no decrease reduction for false forbidden move in Renju
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 0a16fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rapfi/search/ab/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1144,8 +1144,8 @@ Value search(Board &board, SearchStack *ss, Value alpha, Value beta, Depth depth

if constexpr (Rule == Rule::RENJU) {
// Decrease reduction for false forbidden move in Renju
if (ss->moveP4[BLACK] == FORBID)
r -= 1.0f;
//if (ss->moveP4[BLACK] == FORBID)
// r -= 1.0f;
}

// Update statScore of this node
Expand Down

0 comments on commit 0a16fbd

Please sign in to comment.