Package com.opttek.optquest
Class COptQuestDualRequirement
java.lang.Object
com.opttek.optquest.COptQuestRequirement
com.opttek.optquest.COptQuestDualRequirement
The COptQuestDualRequirement defines a requirement that has both a lower bound
and an upper bound. The OptQuest Engine considers the COptQuestDualRequirement
to be feasible if lower bound ≤ requirement value ≤ upper bound
-
Constructor Summary
ConstructorDescriptionDefault constructorCOptQuestDualRequirement
(double lower, double upper) Constructor that sets the lower and upper bound of the requirement.COptQuestDualRequirement
(String name, double lower, double upper) Constructor that assigns a name to the requirement and sets the lower and upper bound of the requirement. -
Method Summary
Methods inherited from class com.opttek.optquest.COptQuestRequirement
equals, GetLowerBound, GetName, GetReplicationConfidenceErrorPercent, GetReplicationConfidenceLevel, GetReplicationStatistic, GetReplicationStatisticValue, GetUpperBound, hashCode, hasUserVariables, IsGoal, SetGoal, setHasUserVariables, SetLowerBound, SetName, SetReplicationConfidence, SetReplicationStatistic, SetTolerance, SetUpperBound
-
Constructor Details
-
COptQuestDualRequirement
public COptQuestDualRequirement(double lower, double upper) Constructor that sets the lower and upper bound of the requirement.- Parameters:
lower
- a value between -pow(2,31) and +pow(2,31)-1upper
- a value between -pow(2,31) and +pow(2,31)-1
-
COptQuestDualRequirement
Constructor that assigns a name to the requirement and sets the lower and upper bound of the requirement.- Parameters:
name
- - alphanumeric namelower
- a value between -pow(2,31) and +pow(2,31)-1upper
- a value between -pow(2,31) and +pow(2,31)-1
-
COptQuestDualRequirement
public COptQuestDualRequirement()Default constructor
-