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
@@ -14,7 +14,6 @@ public readonly record struct MCTSConfig
public float MaxScoreWeightingConstant { get; init; }
public float ExplorationConstant { get; init; }
public float ScoreStorageThreshold { get; init; }
public float ScoreProgress { get; init; }
public float ScoreQuality { get; init; }
@@ -32,7 +31,6 @@ public readonly record struct MCTSConfig
MaxScoreWeightingConstant = config.MaxScoreWeightingConstant;
ExplorationConstant = config.ExplorationConstant;
ScoreStorageThreshold = config.ScoreStorageThreshold;
ScoreProgress = config.ScoreProgress;
ScoreQuality = config.ScoreQuality;