Population Based Optimizer<TSolution, TPopulation, TCandidate>.Population Convergence Test 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#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public SimpleConvergenceTest PopulationConvergenceTest { get; }
Property Value
SimpleConvergenceTestRemarks
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.