pub enum LiaError {
NonLinear(String),
MalformedTerm,
NotInequality,
}Expand description
Error during reification to linear expression
Variants§
NonLinear(String)
Expression is not linear (e.g., x*y)
MalformedTerm
Malformed term structure
NotInequality
Goal is not an inequality
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LiaError
impl RefUnwindSafe for LiaError
impl Send for LiaError
impl Sync for LiaError
impl Unpin for LiaError
impl UnwindSafe for LiaError
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