PopulationBasedOptimizer<TSolution, TPopulation, TCandidate>.PopulationConvergenceTest Property

Gets the convergence test that uses the population's coefficient of variation.

Definition

Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public SimpleConvergenceTest PopulationConvergenceTest { get; }

Property Value

SimpleConvergenceTest

Remarks

This test measures convergence based on how tightly clustered the function values are. It uses the ratio of the standard deviation to the mean (coefficient of variation) of the population's function values. When this ratio falls below the tolerance, it indicates the population has converged to similar function values.

See Also