Implement synthhelper settings

This commit is contained in:
Asriel Camora
2023-11-15 03:50:25 -08:00
parent a1cdbdf5fc
commit 976df3cbae
5 changed files with 24 additions and 28 deletions
+1 -4
View File
@@ -64,9 +64,6 @@ public readonly record struct SolverConfig
public static readonly SolverConfig SynthHelperDefault = new SolverConfig() with
{
Iterations = 300000,
ForkCount = Environment.ProcessorCount - 1, // Keep one for the game thread
FurcatedActionCount = Environment.ProcessorCount / 2,
Algorithm = SolverAlgorithm.StepwiseForked
// Add properties if necessary
};
}