[−][src]Struct optimization_engine::core::solver_status::SolverStatus   
Solver status
This structure contais information about the solver status. Instances of
SolverStatus are returned by optimizers.
Methods
impl SolverStatus[src]
pub fn new(
    exit_status: ExitStatus, 
    num_iter: usize, 
    solve_time: Duration, 
    fpr_norm: f64, 
    cost_value: f64
) -> SolverStatus[src]
exit_status: ExitStatus,
num_iter: usize,
solve_time: Duration,
fpr_norm: f64,
cost_value: f64
) -> SolverStatus
Constructs a new instance of SolverStatus
Arguments
convergedwhether the algorithm has converged to a solution up to the specified tolerancenum_iternumber of iterationsfpr_normnorm of the fixed-point residual; a gauge of the solution qualitycost_valuethe 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]
total execution time
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
pub fn exit_status(&self) -> ExitStatus[src]
exit status of solver
Trait Implementations
impl PartialEq<SolverStatus> for SolverStatus[src]
fn eq(&self, other: &SolverStatus) -> bool[src]
fn ne(&self, other: &SolverStatus) -> bool[src]
impl Debug for SolverStatus[src]
Auto Trait Implementations
impl Send for SolverStatus
impl Unpin for SolverStatus
impl Sync for SolverStatus
impl UnwindSafe for SolverStatus
impl RefUnwindSafe for SolverStatus
Blanket Implementations
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,