Skip to content

Commit

Permalink
⌛ Increase soft bound (#668)
Browse files Browse the repository at this point in the history
* Increase `SoftTimeBoundMultiplier` to 1, so that soft bound is `t/DefaultMovesToGo`+ inc
* Update `DefaultMovesToGo` to 40
  • Loading branch information
eduherminio authored Feb 18, 2024
1 parent 82226d2 commit 0a97d99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Lynx.Cli/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"OnlineTablebaseMaxSupportedPieces": 7,
"ShowWDL": false,

"DefaultMovesToGo": 30,
"HardTimeBoundMultiplier": 0.25,
"SoftTimeBoundMultiplier": 0.4,
"SoftTimeBoundMultiplier": 1,
"DefaultMovesToGo": 40,
"SoftTimeBaseIncrementMultiplier": 1,

"LMR_MinDepth": 3,
Expand Down
6 changes: 3 additions & 3 deletions src/Lynx/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ public sealed class EngineSettings

#region Time management

public int DefaultMovesToGo { get; set; } = 30;

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

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

public int DefaultMovesToGo { get; set; } = 40;

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

Expand Down

0 comments on commit 0a97d99

Please sign in to comment.