Enum opencv::core::SolveLPResult [−][src]
#[repr(C)]
pub enum SolveLPResult {
SOLVELP_UNBOUNDED,
SOLVELP_UNFEASIBLE,
SOLVELP_SINGLE,
SOLVELP_MULTI,
}
Expand description
return codes for cv::solveLP() function
Variants
problem is unbounded (target function can achieve arbitrary high values)
problem is unfeasible (there are no points that satisfy all the constraints imposed)
there is only one maximum for target function
there are multiple maxima for target function - the arbitrary one is returned
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SolveLPResult
impl Send for SolveLPResult
impl Sync for SolveLPResult
impl Unpin for SolveLPResult
impl UnwindSafe for SolveLPResult
Blanket Implementations
Mutably borrows from an owned value. Read more