Skip to content

Commit

Permalink
Reduce singular extension margin
Browse files Browse the repository at this point in the history
  • Loading branch information
jnlt3 committed Aug 6, 2023
1 parent 5fd38d3 commit 37e67a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bm/bm_search/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ pub fn search<Search: SearchType>(
&& entry.depth() + 2 >= depth
&& matches!(entry.entry_type(), EntryType::LowerBound | EntryType::Exact)
{
let s_beta = entry.score() - depth as i16 * 3;
let s_beta = entry.score() - depth as i16 * 2;
local_context.search_stack_mut()[ply as usize].skip_move = Some(make_move);

let multi_cut = depth >= 5;
Expand Down

0 comments on commit 37e67a3

Please sign in to comment.