Skip to content

Commit

Permalink
Increase DefaultMovesToGo to 60, decreasing soft bound even more
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Feb 22, 2024
1 parent 48d32bf commit 7a2c433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Lynx.Cli/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"HardTimeBoundMultiplier": 0.5,
"SoftTimeBoundMultiplier": 1,
"DefaultMovesToGo": 50,
"DefaultMovesToGo": 60,
"SoftTimeBaseIncrementMultiplier": 0.75,

"LMR_MinDepth": 3,
Expand Down
2 changes: 1 addition & 1 deletion src/Lynx/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public sealed class EngineSettings

public double SoftTimeBoundMultiplier { get; set; } = 1;

public int DefaultMovesToGo { get; set; } = 50;
public int DefaultMovesToGo { get; set; } = 60;

public double SoftTimeBaseIncrementMultiplier { get; set; } = 0.75;

Expand Down

0 comments on commit 7a2c433

Please sign in to comment.