Skip to content

Commit

Permalink
fix traversal values
Browse files Browse the repository at this point in the history
  • Loading branch information
znxftw committed Dec 17, 2024
1 parent c1cd646 commit 5eb7082
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Rudim.Test/UnitTest/Board/TraversalTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public class TraversalTest
// This helps keep track if certain optimizations are good enough to make up for the extra time spent
// Compare time spent with and without the change before updating the keys
[Theory]
[InlineData(Helpers.StartingFEN, 1627098, 5, 8)]
[InlineData(Helpers.EndgameFEN, 384110, 45, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 2232112, 1520, 8)]
[InlineData(Helpers.KiwiPeteFEN, 5817311, -60, 8)]
[InlineData(Helpers.StartingFEN, 1792286, 5, 8)]
[InlineData(Helpers.EndgameFEN, 415340, 45, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 2677577, 1520, 8)]
[InlineData(Helpers.KiwiPeteFEN, 6761199, -60, 8)]
public void ShouldTraverseDeterministically(string position, int expectedNodes, int expectedScore, int depth)
{
Global.Reset();
Expand Down

0 comments on commit 5eb7082

Please sign in to comment.