pub enum Pricer {
Auto = 0,
Dantzig = 1,
Parmult = 2,
Devex = 3,
Quicksteep = 4,
Steep = 5,
}Expand description
Enum representing the pricer type.
Variants§
Auto = 0
Automatically choose the pricer.
Dantzig = 1
Use Dantzig pricer.
Parmult = 2
Use parallel multiple pricer.
Devex = 3
Use Devex pricer.
Quicksteep = 4
Use quick steepest edge pricer.
Steep = 5
Use steepest edge pricer.
Trait Implementations§
impl Copy for Pricer
impl Eq for Pricer
impl StructuralPartialEq for Pricer
Auto Trait Implementations§
impl Freeze for Pricer
impl RefUnwindSafe for Pricer
impl Send for Pricer
impl Sync for Pricer
impl Unpin for Pricer
impl UnwindSafe for Pricer
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