Skip to content

Commit

Permalink
Tweak bestmove effort
Browse files Browse the repository at this point in the history
Bench: 9812163
  • Loading branch information
SzilBalazs committed Aug 30, 2023
1 parent 147c5f9 commit 4fbe1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/time_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace search {
*/
bool handle_iteration(int bm_stability, double bm_effort) {
const double bm_scale = 1.2 - std::min(bm_stability, 10) * 0.04;
const double effort_scale = 1.5 - bm_effort;
const double effort_scale = 1.25 - bm_effort * 0.5;

const double scale = bm_scale * effort_scale;

Expand Down

0 comments on commit 4fbe1c5

Please sign in to comment.