Skip to content

Commit

Permalink
More slight edits
Browse files Browse the repository at this point in the history
  • Loading branch information
sfleischman105 committed Nov 28, 2017
1 parent 443e626 commit e7af49b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pleco_engine/src/pleco_searcher/thread_search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl<'a> ThreadSearcher<'a> {
self.roolback_root_moves();

if depth >= 5 {
delta = 18;
delta = 20;
alpha = max(self.root_moves_prev_score() - delta, NEG_INFINITY as i32);
beta = min(self.root_moves_prev_score() + delta, INFINITY as i32);
}
Expand Down

0 comments on commit e7af49b

Please sign in to comment.