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 18, 2024
1 parent afb0770 commit 506764c
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, 1787870, 5, 8)]
[InlineData(Helpers.EndgameFEN, 420262, 45, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 2649058, 1520, 8)]
[InlineData(Helpers.KiwiPeteFEN, 6764976, -60, 8)]
[InlineData(Helpers.StartingFEN, 2564147, 5, 8)]
[InlineData(Helpers.EndgameFEN, 343666, 45, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 2898803, 1520, 8)]
[InlineData(Helpers.KiwiPeteFEN, 10316524, -60, 8)]
public void ShouldTraverseDeterministically(string position, int expectedNodes, int expectedScore, int depth)
{
Global.Reset();
Expand Down

0 comments on commit 506764c

Please sign in to comment.