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