pub enum DAEType {
SemiExplicit,
FullyImplicit,
}Expand description
DAE system type
Variants§
SemiExplicit
Semi-explicit index-1 DAE of the form: x’ = f(x, y, t) 0 = g(x, y, t)
FullyImplicit
Fully implicit index-1 DAE of the form: F(x’, x, t) = 0
Trait Implementations§
impl Copy for DAEType
impl Eq for DAEType
impl StructuralPartialEq for DAEType
Auto Trait Implementations§
impl Freeze for DAEType
impl RefUnwindSafe for DAEType
impl Send for DAEType
impl Sync for DAEType
impl Unpin for DAEType
impl UnwindSafe for DAEType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more