Remove score storage threshold

This commit is contained in:
Asriel Camora
2024-07-01 09:49:27 -07:00
parent a20b5014cb
commit 480cc15cc7
5 changed files with 1 additions and 55 deletions
-2
View File
@@ -17,7 +17,6 @@ public enum SolverAlgorithm
public readonly record struct SolverConfig
{
public int Iterations { get; init; }
public float ScoreStorageThreshold { get; init; }
public float MaxScoreWeightingConstant { get; init; }
public float ExplorationConstant { get; init; }
public int MaxStepCount { get; init; }
@@ -39,7 +38,6 @@ public readonly record struct SolverConfig
public SolverConfig()
{
Iterations = 100_000;
ScoreStorageThreshold = 1f;
MaxScoreWeightingConstant = 0.1f;
ExplorationConstant = 4;
MaxStepCount = 30;