Skip to content

Commit

Permalink
Add tuned values
Browse files Browse the repository at this point in the history
```
iterations: 667 (135.56s per iter)
games: 21344 (4.24s per game)
Final parameters:
MVV_Pawn = 57(-6.477410) in [0, 1000]
MVV_Knight = 3022(+64.00) in [2500, 3500]
MVV_Bishop = 2811(-127.103299) in [2500, 3500]
MVV_Rook = 6177(+312.25) in [5000, 6500]
MVV_Queen = 9772(+127.65) in [9000, 10500]
```
  • Loading branch information
eduherminio committed Jan 8, 2025
1 parent 6052415 commit dc5b75b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Lynx/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,20 +237,20 @@ public int Threads

#endregion

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

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

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

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

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

[JsonSourceGenerationOptions(
Expand Down

0 comments on commit dc5b75b

Please sign in to comment.