Add enum for Selection method

This commit is contained in:
2025-07-11 17:15:11 +07:00
parent f720cb7321
commit c62570e15d
10 changed files with 59 additions and 39 deletions

View File

@@ -416,4 +416,14 @@ public static class Enums
Moderate = 2,
Aggressive = 3
}
/// <summary>
/// Selection methods for genetic algorithm optimization
/// </summary>
public enum GeneticSelectionMethod
{
Tournament,
Roulette,
FitnessWeighted
}
}