Skip to content

Commit

Permalink
Fix benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
WorkingRobot committed Nov 28, 2024
1 parent 0d579bc commit f89203a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Benchmark/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private static void Main(string[] args)
{
var solver = new MCTS(config, initState);
var progress = 0;
solver.Search(initConfig.Data.Iterations, ref progress, CancellationToken.None);
solver.Search(initConfig.Data.Iterations, initConfig.Data.MaxIterations, ref progress, CancellationToken.None);
var solution = solver.Solution();
Console.WriteLine($"{i+1}");
}
Expand Down

0 comments on commit f89203a

Please sign in to comment.