C# Class Accord.Math.Optimization.OptimizationProgressEventArgs

Optimization progress event arguments.
Inheritance: System.EventArgs
Afficher le fichier Open project: accord-net/framework Class Usage Examples

Méthodes publiques

Méthode 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.

Method Details

OptimizationProgressEventArgs() public méthode

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 True if the method is about to terminate, false otherwise.
Résultat System