pub enum SolverChoice {
Show 14 variants
Simplex,
ActiveSetQP,
MixedIntegerLP,
DifferentialEvolution,
NsgaII,
Bfgs,
Lbfgs,
LbfgsB,
LevenbergMarquardt,
AugmentedLagrangian,
NelderMead,
Powell,
CmaEs,
Sqp,
}Expand description
Explicit solver choice for OptimProblem::solve_with.
Variants§
Simplex
ActiveSetQP
MixedIntegerLP
DifferentialEvolution
NsgaII
Bfgs
Lbfgs
LbfgsB
LevenbergMarquardt
AugmentedLagrangian
NelderMead
Powell
CmaEs
Sqp
Trait Implementations§
Source§impl Clone for SolverChoice
impl Clone for SolverChoice
Source§fn clone(&self) -> SolverChoice
fn clone(&self) -> SolverChoice
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 moreSource§impl Debug for SolverChoice
impl Debug for SolverChoice
Source§impl PartialEq for SolverChoice
impl PartialEq for SolverChoice
Source§fn eq(&self, other: &SolverChoice) -> bool
fn eq(&self, other: &SolverChoice) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SolverChoice
impl Eq for SolverChoice
impl StructuralPartialEq for SolverChoice
Auto Trait Implementations§
impl Freeze for SolverChoice
impl RefUnwindSafe for SolverChoice
impl Send for SolverChoice
impl Sync for SolverChoice
impl Unpin for SolverChoice
impl UnsafeUnpin for SolverChoice
impl UnwindSafe for SolverChoice
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