Skip to content

Commit

Permalink
⌛ Increase hard bound (#671)
Browse files Browse the repository at this point in the history
* Increase hard bound to 0.5
  • Loading branch information
eduherminio committed Feb 21, 2024
1 parent 5e56da4 commit ddc22f7
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 @@ -15,7 +15,7 @@
"OnlineTablebaseMaxSupportedPieces": 7,
"ShowWDL": false,

"HardTimeBoundMultiplier": 0.25,
"HardTimeBoundMultiplier": 0.5,
"SoftTimeBoundMultiplier": 1,
"DefaultMovesToGo": 40,
"SoftTimeBaseIncrementMultiplier": 0.75,
Expand Down
2 changes: 1 addition & 1 deletion src/Lynx/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public sealed class EngineSettings

#region Time management

public double HardTimeBoundMultiplier { get; set; } = 0.25;
public double HardTimeBoundMultiplier { get; set; } = 0.5;

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

Expand Down

0 comments on commit ddc22f7

Please sign in to comment.