Fix concurrency deadlock
I'm stupid and forgot it divided the number of iterations by 8, no wonder it was so fast lmao
This commit is contained in:
@@ -75,5 +75,5 @@ public sealed class SolverSingle : ISolver
|
||||
}
|
||||
|
||||
public static void Search(ref SolverConfig config, Node rootNode, CancellationToken token) =>
|
||||
SolverUtils.Search<SolverSingle>(ref config, rootNode, token);
|
||||
SolverUtils.Search<SolverSingle>(ref config, config.Iterations, rootNode, token);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user