pub struct LimitPoint {
pub x: Array1<f64>,
pub lambda: f64,
pub branch_index: usize,
pub stability_change: bool,
}Expand description
A limit (fold/turning) point where det(F_x) = 0
Fields§
§x: Array1<f64>State at the limit point
lambda: f64Parameter value at the limit point
branch_index: usizeIndex along the branch where the limit point occurs
stability_change: boolStability change indicator (true if stability changes)
Trait Implementations§
Source§impl Clone for LimitPoint
impl Clone for LimitPoint
Source§fn clone(&self) -> LimitPoint
fn clone(&self) -> LimitPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LimitPoint
impl RefUnwindSafe for LimitPoint
impl Send for LimitPoint
impl Sync for LimitPoint
impl Unpin for LimitPoint
impl UnsafeUnpin for LimitPoint
impl UnwindSafe for LimitPoint
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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