Skip to content

Commit

Permalink
Bench: 17819966
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Oct 18, 2023
1 parent 8cbb43a commit 876d573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ CONSTR(1) InitReductions() {
for (int depth = 1; depth < 32; ++depth)
for (int moves = 1; moves < 32; ++moves)
Reductions[0][depth][moves] = 0.00 + log(depth) * log(moves) / 3.25, // capture
Reductions[1][depth][moves] = 1.50 + log(depth) * log(moves) / 1.75; // quiet
Reductions[1][depth][moves] = 1.20 + log(depth) * log(moves) / 1.75; // quiet
}

// Checks if the move is in the list of searchmoves if any were given
Expand Down

0 comments on commit 876d573

Please sign in to comment.