Struct bacon_sci::ivp::BDFInfo[][src]

pub struct BDFInfo<N, S, O> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    O: DimName,
    DefaultAllocator: Allocator<N, S> + Allocator<N, O> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>, 
{ /* fields omitted */ }

Provides an IVPSolver implementation for BDFSolver, based on the higher and lower order coefficients. It is up to the BDFSolver to correctly implement the coefficients.

Implementations

impl<N, S, O> BDFInfo<N, S, O> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    O: DimName,
    DefaultAllocator: Allocator<N, S> + Allocator<N, O> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>, 
[src]

pub fn new() -> Self[src]

Trait Implementations

impl<N: Clone, S: Clone, O: Clone> Clone for BDFInfo<N, S, O> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    O: DimName,
    DefaultAllocator: Allocator<N, S> + Allocator<N, O> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>,
    N::RealField: Clone,
    N::RealField: Clone,
    N::RealField: Clone,
    N::RealField: Clone,
    N::RealField: Clone,
    N::RealField: Clone,
    N::RealField: Clone
[src]

impl<N: Debug, S: Debug, O: Debug> Debug for BDFInfo<N, S, O> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    O: DimName,
    DefaultAllocator: Allocator<N, S> + Allocator<N, O> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>,
    N::RealField: Debug,
    N::RealField: Debug,
    N::RealField: Debug,
    N::RealField: Debug,
    N::RealField: Debug,
    N::RealField: Debug,
    N::RealField: Debug
[src]

impl<N, S, O> Default for BDFInfo<N, S, O> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    O: DimName,
    DefaultAllocator: Allocator<N, S> + Allocator<N, O> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>, 
[src]

impl<N, S> From<BDF2<N, S>> for BDFInfo<N, S, U3> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    DefaultAllocator: Allocator<N, S> + Allocator<N, U3> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>, 
[src]

impl<N, S> From<BDF6<N, S>> for BDFInfo<N, S, U7> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    DefaultAllocator: Allocator<N, S> + Allocator<N, U7> + Allocator<N, S, S> + Allocator<N, U1, S> + Allocator<(usize, usize), S>, 
[src]

impl<N, S, O> IVPSolver<N, S> for BDFInfo<N, S, O> where
    N: ComplexField,
    S: DimName + DimMin<S, Output = S>,
    O: DimName,
    DefaultAllocator: Allocator<N, S> + Allocator<N, O> + Allocator<N, S, S> + Allocator<(usize, usize), S> + Allocator<N, U1, S>, 
[src]

Auto Trait Implementations

impl<N, S, O> !RefUnwindSafe for BDFInfo<N, S, O>[src]

impl<N, S, O> !Send for BDFInfo<N, S, O>[src]

impl<N, S, O> !Sync for BDFInfo<N, S, O>[src]

impl<N, S, O> !Unpin for BDFInfo<N, S, O>[src]

impl<N, S, O> !UnwindSafe for BDFInfo<N, S, O>[src]

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<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,