Fix genetic backend
This commit is contained in:
@@ -154,6 +154,21 @@ public class GeneticRequest
|
||||
/// Progress information (JSON serialized)
|
||||
/// </summary>
|
||||
public string? ProgressInfo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The best chromosome found so far (JSON serialized)
|
||||
/// </summary>
|
||||
public string? BestChromosome { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Current generation number when the algorithm was stopped
|
||||
/// </summary>
|
||||
public int CurrentGeneration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The best fitness score achieved so far
|
||||
/// </summary>
|
||||
public double? BestFitnessSoFar { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user