[][src]Struct optimization_engine::core::solver_status::SolverStatus

pub struct SolverStatus { /* fields omitted */ }

Solver status

This structure contais information about the solver status. Instances of SolverStatus are returned by optimizers.

Methods

impl SolverStatus[src]

pub fn new(
    converged: bool,
    num_iter: usize,
    solve_time: Duration,
    fpr_norm: f64,
    cost_value: f64
) -> SolverStatus
[src]

Constructs a new instance of SolverStatus

Arguments

  • converged whether the algorithm has converged to a solution up to the specified tolerance
  • num_iter number of iterations
  • fpr_norm norm of the fixed-point residual; a gauge of the solution quality
  • cost_value the value of the cost function at the solution

pub fn has_converged(&self) -> bool[src]

whether the algorithm has converged

pub fn iterations(&self) -> usize[src]

number of iterations taken by the algorithm

pub fn solve_time(&self) -> Duration[src]

number of iterations taken by the algorithm

pub fn norm_fpr(&self) -> f64[src]

norm of the fixed point residual

pub fn cost_value(&self) -> f64[src]

value of the cost at the solution

Trait Implementations

impl Debug for SolverStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]