PopulationBasedOptimizer<TSolution, TPopulation, TCandidate>.DiversityTest Property

Gets the convergence test that measures population diversity.

Definition

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

Property Value

SimpleConvergenceTest

Remarks

This test measures the average pairwise Euclidean distance between solutions in the population. When this distance falls below the tolerance, it indicates the population has converged to a small region.

See Also