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:
Asriel Camora
2023-07-07 13:01:17 +02:00
parent d5a8288439
commit 1386f9150c
7 changed files with 71 additions and 71 deletions
+1 -1
View File
@@ -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);
}