[][src]Struct levenberg_marquardt::Config

pub struct Config<N> {
    pub max_iterations: usize,
    pub consecutive_divergence_limit: usize,
    pub initial_lambda: N,
    pub lambda_convege: N,
    pub lambda_diverge: N,
    pub threshold: N,
}

Fields

max_iterations: usizeconsecutive_divergence_limit: usizeinitial_lambda: Nlambda_convege: Nlambda_diverge: Nthreshold: N

Trait Implementations

impl<N: Clone> Clone for Config<N>[src]

impl<N: Copy> Copy for Config<N>[src]

impl<N: Debug> Debug for Config<N>[src]

impl<N> Default for Config<N> where
    N: FromPrimitive
[src]

impl<N: Eq> Eq for Config<N>[src]

impl<N: PartialEq> PartialEq<Config<N>> for Config<N>[src]

impl<N> StructuralEq for Config<N>[src]

impl<N> StructuralPartialEq for Config<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for Config<N> where
    N: RefUnwindSafe

impl<N> Send for Config<N> where
    N: Send

impl<N> Sync for Config<N> where
    N: Sync

impl<N> Unpin for Config<N> where
    N: Unpin

impl<N> UnwindSafe for Config<N> where
    N: 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> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,