Ejemplo n.º 1
0
 /// <summary>
 /// Exports the standard deviations of the numerical features of the current population's competitive part via
 /// <see cref="RunStatisticTracker.ComputeAndExportNumericalFeatureCoefficientOfVariation"/>.
 /// </summary>
 public void ExportFeatureStandardDeviations()
 {
     RunStatisticTracker.ComputeAndExportNumericalFeatureCoefficientOfVariation(
         this.ParameterTree,
         this.MostRecentSorting.Select(point => point.Genome.CreateMutableGenome()),
         this._currentGeneration);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Exports the standard deviations of the numerical features of the current population's competitive part via
 /// <see cref="RunStatisticTracker.ComputeAndExportNumericalFeatureCoefficientOfVariation"/>.
 /// </summary>
 public void ExportFeatureStandardDeviations()
 {
     RunStatisticTracker.ComputeAndExportNumericalFeatureCoefficientOfVariation(
         this._parameterTree,
         this._population.GetCompetitiveIndividuals(),
         this._currentGeneration);
 }