Skip to content

Commit

Permalink
Tighten bounds and steps
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Jan 6, 2025
1 parent 9dd7aa9 commit a1a348c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Lynx/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,19 +237,19 @@ public int Threads

#endregion

[SPSA<int>(0, 2000, 200)]
[SPSA<int>(0, 1000, 100)]
public int MVV_Pawn { get; set; } = 63;

[SPSA<int>(2000, 4000, 200)]
[SPSA<int>(2500, 3500, 100)]
public int MVV_Knight { get; set; } = 2958;

[SPSA<int>(2000, 4000, 200)]
[SPSA<int>(2500, 3500, 100)]
public int MVV_Bishop { get; set; } = 2938;

[SPSA<int>(4000, 6000, 200)]
[SPSA<int>(5000, 6500, 100)]
public int MVV_Rook { get; set; } = 5865;

[SPSA<int>(9000, 11000, 200)]
[SPSA<int>(9000, 10500, 100)]
public int MVV_Queen { get; set; } = 9644;
}

Expand Down

0 comments on commit a1a348c

Please sign in to comment.