[][src]Struct roots::DebugConvergency

pub struct DebugConvergency<F: FloatType> { /* fields omitted */ }

Convergency provider for debugging. It will print out the error at each iteration.

Methods

impl<F: FloatType> DebugConvergency<F>[src]

pub fn new(eps: F, max_iter: usize) -> DebugConvergency<F>[src]

pub fn reset(self: &mut DebugConvergency<F>)[src]

pub fn get_iter_count(self: &DebugConvergency<F>) -> usize[src]

Trait Implementations

impl<F: FloatType + Display + LowerExp> Convergency<F> for DebugConvergency<F>[src]

fn is_root_found(&mut self, y: F) -> bool[src]

Prints the value being checked

fn is_converged(&mut self, x1: F, x2: F) -> bool[src]

Prints values being checked

fn is_iteration_limit_reached(&mut self, iter: usize) -> bool[src]

Updates internal iteration counter

Auto Trait Implementations

impl<F> RefUnwindSafe for DebugConvergency<F> where
    F: RefUnwindSafe

impl<F> Send for DebugConvergency<F> where
    F: Send

impl<F> Sync for DebugConvergency<F> where
    F: Sync

impl<F> Unpin for DebugConvergency<F> where
    F: Unpin

impl<F> UnwindSafe for DebugConvergency<F> where
    F: UnwindSafe

Blanket Implementations

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

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

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

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.