Update raphael (now threaded and loggable)

This commit is contained in:
Asriel Camora
2025-04-29 14:28:50 -07:00
parent fb959e07fc
commit 9d8e29f069
5 changed files with 37 additions and 28 deletions
+1 -1
View File
@@ -24,7 +24,6 @@ public readonly record struct SolverConfig
public float ExplorationConstant { get; init; }
public int MaxStepCount { get; init; }
public int MaxRolloutStepCount { get; init; }
public int MaxThreadCount { get; init; }
public int ForkCount { get; init; }
public int FurcatedActionCount { get; init; }
public bool StrictActions { get; init; }
@@ -41,6 +40,7 @@ public readonly record struct SolverConfig
public bool BackloadProgress { get; init; }
public bool MinimizeSteps { get; init; }
public int MaxThreadCount { get; init; }
public ActionType[] ActionPool { get; init; }
public SolverAlgorithm Algorithm { get; init; }