PartitionOptimizationContextStopAtIntermediateIteration Method

Specifies conditions under which a SystemPerformanceOptimizer executing in this context should be considered as terminated after completing an intermediate iteration.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
protected override bool StopAtIntermediateIteration(
	int iteration,
	LinkedList<double> levels,
	LinkedList<DoubleMatrix> parameters
)

Parameters

iteration  Int32
The current iteration identifier.
levels  LinkedListDouble
The performance levels achieved in previous iterations by a SystemPerformanceOptimizer executing in this context.
parameters  LinkedListDoubleMatrix
The sampling parameters applied in previous iterations by a SystemPerformanceOptimizer executing in this context.

Return Value

Boolean
true if the optimization program must be stopped; otherwise, false.

Remarks

At intermediate iterations, the algorithm will stop under the following conditions.

A PartitionOptimizationContext never stops before executing a number of iterations less than MinimumNumberOfIterations, and always stops if such number is greater than or equal to MaximumNumberOfIterations.

For intermediate iterations, method StopAtIntermediateIteration(Int32, LinkedListDouble, LinkedListDoubleMatrix) is called to check if a Cross-Entropy program executing in this context should stop or not.

In a PartitionOptimizationContext, the method analyzes the currently updated reference parameter, say

LaTeX equation

as follows. Define the sequence LaTeX equation such that, for LaTeX equation,

LaTeX equation

If condition

LaTeX equation

can be verified, where LaTeX equation is MinimumNumberOfIterations, the method returns true; otherwise false is returned. Equivalently, the algorithm converges if the indexes of the largest probabilities in each of the LaTeX equation columns of the reference parameter coincide LaTeX equation times in a row of iterations.

Exceptions

ArgumentNullExceptionlevels is null.
-or-
parameters is null.

See Also