Fix genetic backend

This commit is contained in:
2025-07-11 14:11:41 +07:00
parent d04d8f310d
commit e43a1af5ef
15 changed files with 542 additions and 205 deletions

View File

@@ -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>