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
+3 -5
View File
@@ -41,15 +41,13 @@ internal static class Program
QualityDivider = 115,
ProgressModifier = 80,
ProgressDivider = 130,
},
0
}
);
var threads = 8;
var config = new SolverConfig()
{
Iterations = 30_000 / threads,
ThreadCount = threads,
Iterations = 1_000_000,
ThreadCount = 8,
};
Debugger.Break();