CrossEntropyContextOnExecutedIteration Method

Called after completion of each iteration of a CrossEntropyProgram executing in this context.

Definition

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

Parameters

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

Remarks

Virtual method OnExecutedIteration is is not a mandatory step of a Cross-Entropy program. It is executed after completion of the updating step, and by default does nothing. Users can override it to add functionality to each Cross-Entropy iteration.

See Also