pub struct Report {
    pub fx: f64,
    pub xnorm: f64,
    pub gnorm: f64,
    pub neval: usize,
}

Fields

fx: f64

The current value of the objective function.

xnorm: f64

The Euclidean norm of the variables

gnorm: f64

The Euclidean norm of the gradients.

neval: usize

The total number of evaluations.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.