Skip to content

Commit

Permalink
fix test values
Browse files Browse the repository at this point in the history
  • Loading branch information
znxftw committed Dec 26, 2024
1 parent 9716f19 commit 0f7f145
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, 405929, 7, 8)]
[InlineData(Helpers.EndgameFEN, 141090, 36, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 2051222, 1750, 8)]
[InlineData(Helpers.KiwiPeteFEN, 6064990, -42, 8)]
[InlineData(Helpers.StartingFEN, 475558, 7, 8)]
[InlineData(Helpers.EndgameFEN, 151145, 36, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 1928455, 1750, 8)]
[InlineData(Helpers.KiwiPeteFEN, 3739155, -42, 8)]
public void ShouldTraverseDeterministically(string position, int expectedNodes, int expectedScore, int depth)
{
Global.Reset();
Expand Down

0 comments on commit 0f7f145

Please sign in to comment.