Package com.opttek.optquest
Class COptQuestLowerRequirement
java.lang.Object
com.opttek.optquest.COptQuestRequirement
com.opttek.optquest.COptQuestLowerRequirement
The COptQuestLowerRequirement defines a requirement that has a lower bound but
no upper bound. The OptQuest Engine considers the COptQuestLowerRequirement
to be feasible if lower bound ≤ requirement value
-
Constructor Summary
ConstructorDescriptionDefault constructorCOptQuestLowerRequirement
(double lower) Constructor that sets the lower bound of the requirement.COptQuestLowerRequirement
(String name, double lower) Constructor that assigns a name to the requirement and sets the lower bound -
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
-
COptQuestLowerRequirement
public COptQuestLowerRequirement(double lower) Constructor that sets the lower bound of the requirement.- Parameters:
lower
- a value between -pow(2,31) and +pow(2,31)-1
-
COptQuestLowerRequirement
Constructor that assigns a name to the requirement and sets the lower bound- Parameters:
name
- alphanumeric namelower
- a value between -pow(2,31) and +pow(2,31)-1
-
COptQuestLowerRequirement
public COptQuestLowerRequirement()Default constructor
-