Optimizations/improve action gen

This commit is contained in:
Asriel Camora
2023-07-07 20:18:30 +02:00
parent 636501ab86
commit 436858e65c
2 changed files with 10 additions and 3 deletions
+2 -2
View File
@@ -18,9 +18,9 @@ public readonly record struct SolverConfig
Iterations = 300000;
ScoreStorageThreshold = 1f;
MaxScoreWeightingConstant = 0.1f;
ExplorationConstant = 2;
ExplorationConstant = 4;
MaxStepCount = 25;
MaxRolloutStepCount = 99;
MaxRolloutStepCount = MaxStepCount;
ThreadCount = Environment.ProcessorCount;
}
}