 | BoundedVariableProblemPointIsFeasible Method (DoubleVector, Double) |
Function for determining the feasibility of a give point. A point
x is feasible if it satisfies all the constraints of the
problem within a specified tolerance.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic virtual bool PointIsFeasible(
DoubleVector x,
double tolerance
)
Public Overridable Function PointIsFeasible (
x As DoubleVector,
tolerance As Double
) As Boolean
public:
virtual bool PointIsFeasible(
DoubleVector^ x,
double tolerance
)
abstract PointIsFeasible :
x : DoubleVector *
tolerance : float -> bool
override PointIsFeasible :
x : DoubleVector *
tolerance : float -> bool
Parameters
- x
- Type: CenterSpace.NMath.CoreDoubleVector
A vector to test for feasibility. - tolerance
- Type: SystemDouble
Constraint tolerance.
Return Value
Type:
Booleantrue if the point is feasible.
See Also