Click or drag to resize
Accord.NET (logo)

OptimizationProgressEventArgs Constructor

Initializes a new instance of the OptimizationProgressEventArgs class.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public OptimizationProgressEventArgs(
	int iteration,
	int evaluations,
	double[] gradient,
	double gnorm,
	double[] solution,
	double xnorm,
	double value,
	double stp,
	bool finished
)
Request Example View Source

Parameters

iteration
Type: SystemInt32
The current iteration of the optimization method.
evaluations
Type: SystemInt32
The number of function evaluations performed.
gradient
Type: SystemDouble
The current gradient of the function.
gnorm
Type: SystemDouble
The norm of the current gradient
solution
Type: SystemDouble
The current solution parameters.
xnorm
Type: SystemDouble
The norm of the current parameter vector.
value
Type: SystemDouble
The value of the function evaluated at the current solution.
stp
Type: SystemDouble
The current step size.
finished
Type: SystemBoolean
True if the method is about to terminate, false otherwise.
See Also