Skip to content

Commit

Permalink
fix test counts
Browse files Browse the repository at this point in the history
  • Loading branch information
znxftw committed Dec 18, 2024
1 parent 39ba93d commit bce723e
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, 2574755, 12, 8)]
[InlineData(Helpers.EndgameFEN, 344654, 39, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 3035484, 1707, 8)]
[InlineData(Helpers.KiwiPeteFEN, 7075274, -116, 8)]
[InlineData(Helpers.StartingFEN, 2170912, 7, 8)]
[InlineData(Helpers.EndgameFEN, 450006, 36, 9)]
[InlineData(Helpers.AdvancedMoveFEN, 4800762, 1750, 8)]
[InlineData(Helpers.KiwiPeteFEN, 11787207, -42, 8)]
public void ShouldTraverseDeterministically(string position, int expectedNodes, int expectedScore, int depth)
{
Global.Reset();
Expand Down

0 comments on commit bce723e

Please sign in to comment.