Skip to content

Commit

Permalink
Add max 10-20 step
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Nov 13, 2024
1 parent 0055416 commit 22605d4
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 @@ -212,19 +212,19 @@ public int TranspositionTableSize
[SPSA<int>(-8192, 0, 512)]
public int HistoryPrunning_Margin { get; set; } = -1940;

[SPSA<int>(0, 1500, 50)]
[SPSA<int>(0, 200, 10)]
public int SEE_Pawn { get; set; } = 100;

[SPSA<int>(0, 1500, 50)]
[SPSA<int>(200, 600, 20)]
public int SEE_Knight { get; set; } = 450;

[SPSA<int>(0, 1500, 50)]
[SPSA<int>(200, 600, 20)]
public int SEE_Bishop { get; set; } = 450;

[SPSA<int>(0, 1500, 50)]
[SPSA<int>(400, 800, 20)]
public int SEE_Rook { get; set; } = 650;

[SPSA<int>(0, 1500, 50)]
[SPSA<int>(900, 1300, 20)]
public int SEE_Queen { get; set; } = 1250;
}

Expand Down

0 comments on commit 22605d4

Please sign in to comment.