pub enum SqpGlobalization {
Filter,
L1Elastic,
}Expand description
Choice of SQP globalization strategy. Defaults to filter (Fletcher-Leyffer 2002) per the design note §4.1; l1-elastic merit (Han-Powell with adaptive penalty) is the alternative.
Variants§
Trait Implementations§
Source§impl Clone for SqpGlobalization
impl Clone for SqpGlobalization
Source§fn clone(&self) -> SqpGlobalization
fn clone(&self) -> SqpGlobalization
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 SqpGlobalization
impl Debug for SqpGlobalization
Source§impl Default for SqpGlobalization
impl Default for SqpGlobalization
Source§fn default() -> SqpGlobalization
fn default() -> SqpGlobalization
Returns the “default value” for a type. Read more
Source§impl PartialEq for SqpGlobalization
impl PartialEq for SqpGlobalization
Source§fn eq(&self, other: &SqpGlobalization) -> bool
fn eq(&self, other: &SqpGlobalization) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SqpGlobalization
impl Eq for SqpGlobalization
impl StructuralPartialEq for SqpGlobalization
Auto Trait Implementations§
impl Freeze for SqpGlobalization
impl RefUnwindSafe for SqpGlobalization
impl Send for SqpGlobalization
impl Sync for SqpGlobalization
impl Unpin for SqpGlobalization
impl UnsafeUnpin for SqpGlobalization
impl UnwindSafe for SqpGlobalization
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