SolveLPResult Enumeration |
http://www.emgu.com
The return value for solveLP function
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic enum SolveLPResult
Public Enumeration SolveLPResult
public enum class SolveLPResult
Members
| Member name | Value | Description |
---|
| Unbounded | -2 |
Problem is unbounded (target function can achieve arbitrary high values)
|
| Unfeasible | -1 |
Problem is unfeasible (there are no points that satisfy all the constraints imposed)
|
| Single | 0 |
There is only one maximum for target function
|
| Multi | 1 |
there are multiple maxima for target function - the arbitrary one is returned
|
See Also