| SolveLPResult Enumeration |
http://www.emgu.com
The return value for solveLP function
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
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