pub struct NumericalPolynomialSystem<Exp> {
pub components: Vec<Polynomial<usize, f32, Exp>>,
}
Expand description
A numerical system of polynomial differential equations.
Such a system is ready for use in numerical solvers: the coefficients are floating point numbers and the variables are consecutive integer indices.
Fields§
§components: Vec<Polynomial<usize, f32, Exp>>
Components of the vector field.
Trait Implementations§
Source§impl<Exp> ODESystem for NumericalPolynomialSystem<Exp>
impl<Exp> ODESystem for NumericalPolynomialSystem<Exp>
Auto Trait Implementations§
impl<Exp> Freeze for NumericalPolynomialSystem<Exp>
impl<Exp> RefUnwindSafe for NumericalPolynomialSystem<Exp>where
Exp: RefUnwindSafe,
impl<Exp> Send for NumericalPolynomialSystem<Exp>where
Exp: Send,
impl<Exp> Sync for NumericalPolynomialSystem<Exp>where
Exp: Sync,
impl<Exp> Unpin for NumericalPolynomialSystem<Exp>
impl<Exp> UnwindSafe for NumericalPolynomialSystem<Exp>where
Exp: RefUnwindSafe,
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> 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§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.