protected override sealed bool StopExecution(
int iteration,
LinkedList<double> levels,
LinkedList<DoubleMatrix> parameters
)
Protected Overrides NotOverridable Function StopExecution (
iteration As Integer,
levels As LinkedList(Of Double),
parameters As LinkedList(Of DoubleMatrix)
) As Boolean
protected:
virtual bool StopExecution(
int iteration,
LinkedList<double>^ levels,
LinkedList<DoubleMatrix^>^ parameters
) override sealed
abstract StopExecution :
iteration : int *
levels : LinkedList<float> *
parameters : LinkedList<DoubleMatrix> -> bool
override StopExecution :
iteration : int *
levels : LinkedList<float> *
parameters : LinkedList<DoubleMatrix> -> bool
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.
ArgumentNullException | levels is null. -or- parameters is null. |