public static IEvolutionaryAlgorithm <IBitIndividual, BitArray, bool> UsingStagnationStatistics(
     this IEvolutionaryAlgorithm <IBitIndividual, BitArray, bool> algorithm) =>
 algorithm.UsingStatistics(new StagnationStatistics());
Пример #2
0
 public static IEvolutionaryAlgorithm <IBitIndividual, BitArray, bool> UsingBasicStatistics(
     this IEvolutionaryAlgorithm <IBitIndividual, BitArray, bool> algorithm) =>
 algorithm.UsingStatistics(new BasicEvolutionaryStatistics <IBitIndividual, BitArray, bool>());