Method | Description | |
---|---|---|
OptimizationProgressEventArgs ( int iteration, int evaluations, double gradient, double gnorm, double solution, double xnorm, double value, double stp, bool finished ) : System |
Initializes a new instance of the OptimizationProgressEventArgs class.
|
public OptimizationProgressEventArgs ( int iteration, int evaluations, double gradient, double gnorm, double solution, double xnorm, double value, double stp, bool finished ) : System | ||
iteration | int | The current iteration of the optimization method. |
evaluations | int | The number of function evaluations performed. |
gradient | double | The current gradient of the function. |
gnorm | double | The norm of the current gradient |
solution | double | The current solution parameters. |
xnorm | double | The norm of the current parameter vector. |
value | double | The value of the function evaluated at the current solution. |
stp | double | The current step size. |
finished | bool | |
return | System |