BoundsInconsistentException Constructor (String, String, String, Int32, Double, Double) |
The bounds given are inconsistent.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public BoundsInconsistentException(
string nameVariable,
string nameLowerBound,
string nameUpperBound,
int index,
double lowerBound,
double upperBound
)
Public Sub New (
nameVariable As String,
nameLowerBound As String,
nameUpperBound As String,
index As Integer,
lowerBound As Double,
upperBound As Double
)
public:
BoundsInconsistentException(
String^ nameVariable,
String^ nameLowerBound,
String^ nameUpperBound,
int index,
double lowerBound,
double upperBound
)
new :
nameVariable : string *
nameLowerBound : string *
nameUpperBound : string *
index : int *
lowerBound : float *
upperBound : float -> BoundsInconsistentException
Parameters
- nameVariable
- Type: SystemString
Name of the variable being bounded.
- nameLowerBound
- Type: SystemString
Name of the lower bound.
- nameUpperBound
- Type: SystemString
Name of the upper bound.
- index
- Type: SystemInt32
The index of the inconsistent bound.
- lowerBound
- Type: SystemDouble
Value of the lower bound.
- upperBound
- Type: SystemDouble
Value of the upper bound.
See Also