pub enum IPResult {
Optimal {
x: Vector,
objective: Rational64,
},
Infeasible,
Unbounded,
Unknown,
}Expand description
Result of interior point optimization.
Variants§
Optimal
Optimal solution found with objective value.
Infeasible
Problem is infeasible.
Unbounded
Problem is unbounded.
Unknown
Numerical issues or iteration limit reached.
Trait Implementations§
impl StructuralPartialEq for IPResult
Auto Trait Implementations§
impl Freeze for IPResult
impl RefUnwindSafe for IPResult
impl Send for IPResult
impl Sync for IPResult
impl Unpin for IPResult
impl UnsafeUnpin for IPResult
impl UnwindSafe for IPResult
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