Skip to content

Commit

Permalink
ReverseFPMaxDepth 6 ReverseFPDepthScalingFactor 100
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Sep 8, 2023
1 parent b361e36 commit 382c41e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Lynx.Cli/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"UseOnlineTablebaseInRootPositions": false,
"UseOnlineTablebaseInSearch": false,
"BenchDepth": 5,
"ReverseFPMaxDepth": 4,
"ReverseFPDepthScalingFactor": 150
"ReverseFPMaxDepth": 6,
"ReverseFPDepthScalingFactor": 100
},

// Logging settings
Expand Down
4 changes: 2 additions & 2 deletions src/Lynx/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public sealed class EngineSettings
/// </summary>
public int BenchDepth { get; set; } = 5;

public int ReverseFPMaxDepth { get; set; } = 4;
public int ReverseFPMaxDepth { get; set; } = 6;

public int ReverseFPDepthScalingFactor { get; set; } = 150;
public int ReverseFPDepthScalingFactor { get; set; } = 100;
}

0 comments on commit 382c41e

Please sign in to comment.