protected virtual bool StopAtIntermediateIteration(
int iteration,
LinkedList<double> levels,
LinkedList<DoubleMatrix> parameters
)
Protected Overridable Function StopAtIntermediateIteration (
iteration As Integer,
levels As LinkedList(Of Double),
parameters As LinkedList(Of DoubleMatrix)
) As Boolean
protected:
virtual bool StopAtIntermediateIteration(
int iteration,
LinkedList<double>^ levels,
LinkedList<DoubleMatrix^>^ parameters
)
abstract StopAtIntermediateIteration :
iteration : int *
levels : LinkedList<float> *
parameters : LinkedList<DoubleMatrix> -> bool
override StopAtIntermediateIteration :
iteration : int *
levels : LinkedList<float> *
parameters : LinkedList<DoubleMatrix> -> bool
An iteration is defined as intermediate for a SystemPerformanceOptimizationContext if it is greater than MinimumNumberOfIterations, and less than 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.
By default, the method controls if, in the last MinimumNumberOfIterations iterations, the levels achieved by the program remain constant, and, if so, return true; otherwise returns false.
ArgumentNullException | levels is null. -or- parameters is null. |