RareEventProbabilityEstimationContextStopExecution Method

Specifies conditions under which a CrossEntropyProgram executing in this context should be considered as terminated.

Definition

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

Parameters

iteration  Int32
The current iteration identifier.
levels  LinkedListDouble
The performance levels achieved by the program in previous iterations.
parameters  LinkedListDoubleMatrix
The sampling parameters applied by the program in previous iterations.

Return Value

Boolean
true to stop the program; false otherwise.

Remarks

Each iteration executed by the Run method of a CrossEntropyProgram ends with a call to method StopExecution, and the program stops iterating if it returns true. By overriding the method in a derived context class, it determines at what conditions the Cross-Entropy program should stop at iteration completion.

Exceptions

ArgumentNullExceptionlevels is null.
-or-
parameters is null.

See Also