pub struct AdvancedModeResult<F: IntegrateFloat> {
pub solution: Array1<F>,
pub performance_metrics: AdvancedModeMetrics,
pub optimizations_applied: Vec<String>,
}Expand description
Advanced mode optimization result
Fields§
§solution: Array1<F>Computed solution
performance_metrics: AdvancedModeMetricsPerformance metrics
optimizations_applied: Vec<String>Applied optimizations
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for AdvancedModeResult<F>
impl<F> RefUnwindSafe for AdvancedModeResult<F>where
F: RefUnwindSafe,
impl<F> Send for AdvancedModeResult<F>where
F: Send,
impl<F> Sync for AdvancedModeResult<F>where
F: Sync,
impl<F> Unpin for AdvancedModeResult<F>
impl<F> UnwindSafe for AdvancedModeResult<F>where
F: 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