pub enum LPBackend {
Simplex,
InteriorPoint,
Auto,
}Expand description
LP solver backend selection
Variants§
Simplex
Dual simplex (good for incremental solving)
InteriorPoint
Interior point (good for large problems)
Auto
Auto-select based on problem size
Trait Implementations§
impl Copy for LPBackend
impl Eq for LPBackend
impl StructuralPartialEq for LPBackend
Auto Trait Implementations§
impl Freeze for LPBackend
impl RefUnwindSafe for LPBackend
impl Send for LPBackend
impl Sync for LPBackend
impl Unpin for LPBackend
impl UnsafeUnpin for LPBackend
impl UnwindSafe for LPBackend
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