Uses of Class
com.opttek.optquest.COptQuestVariable
Packages that use COptQuestVariable
-
Uses of COptQuestVariable in com.opttek.optquest
Subclasses of COptQuestVariable in com.opttek.optquestModifier and TypeClassDescriptionclass
The COptQuestBinaryVariable class defines a binary decision variable which is a discrete variable that can have a value of 0 or 1.class
The COptQuestContinuousVariable class defines a decision variable that can have any value between the lower bound and upper bound.class
Design variables are used when value of the decision variable represents an alternative, and not a quantity.class
The CoptQuestDiscreteVariable class defines a decision variable whose values begin at the lower bound and increment by a step size up to the upper boundclass
The COptQuestEnumerationVariable class defines a decision variable that has an enumerated set of values such as 5,7 and 25.class
The COptQuestGeolocationVariable class defines a decision variable whose values are lists of latitude and longitude.class
The COptQuestIntegerVariable class defines a decision variable whose values begin at the lower bound and increment by a 1 to the upper bound.class
Permutation variables are used to solve sequencing problems.class
The COptQuestTupleVariable class defines a decision variable whose values are lists of tuples.class
The COptQuestUserControlledVariable class allows you to define a variable where you set the value of the variable.Methods in com.opttek.optquest that return COptQuestVariableModifier and TypeMethodDescriptionCOptQuestOptimization.GetVariable
(String Name) Given a variable name, return the COptQuestVariable object.COptQuestUserControlledOptimization.GetVariable
(String Name) Given a variable name, return the COptQuestVariable object.COptQuestConstraint.GetVariableAt
(int index) Returns the COptQuestVariable at the specified 0 based index.COptQuestObjectiveFunction.GetVariableAt
(int index) Returns the variable at the specified index.Methods in com.opttek.optquest that return types with arguments of type COptQuestVariableModifier and TypeMethodDescriptionCOptQuestOptimization.GetVariables()
Returns an array of all variables that have been added to the optimization using the AddVariable()method.COptQuestUserControlledOptimization.GetVariables()
Returns an array of all variables that have been added to the optimization using the AddVariable()method.Methods in com.opttek.optquest with parameters of type COptQuestVariableModifier and TypeMethodDescriptionvoid
COptQuestConstraint.AddVariable
(COptQuestVariable variable, double coefficient) Adds a variable and its coefficient to the linear expression.void
COptQuestEquationSolver.AddVariable
(COptQuestVariable var) Makes the decision variable available to the parsing methods.void
COptQuestObjectiveFunction.AddVariable
(COptQuestVariable variable, double coefficient) Adds a variable and its coefficient to the linear objective which has the form coeff1 * var1 + coeff2 + var2 + coeffn * varN.void
COptQuestOptimization.AddVariable
(COptQuestVariable variable) Adds the variable defined by the input parameter to the optimization.void
COptQuestSelectionGroup.AddVariable
(COptQuestVariable variable) Add a dependent variable that is set to the lower bound when the selection variable is offvoid
COptQuestUserControlledOptimization.AddVariable
(COptQuestVariable variable) Adds the variable defined by the input parameter to the optimization.double
COptQuestSolutionSet.CalculateSensitivity
(COptQuestVariable var) Calculate a sensitivity score for the input variable.double
COptQuestSolutionSet.CalculateStatistic
(COptQuestVariable var, int statistic, double statisticValue) Using the solution set values of the specified variable, calculate the specified statistic.void
COptQuestConstraint.ChangeVariableCoefficient
(COptQuestVariable findVar, double coefficient) Changes the coefficient of the variable to the value specified by the input parameter.void
COptQuestObjectiveFunction.ChangeVariableCoefficient
(COptQuestVariable var, double coefficient) Change the coefficient for this variable.void
COptQuestConstraint.RemoveVariable
(COptQuestVariable variable) Modifies the constraint by removing the variable.Method parameters in com.opttek.optquest with type arguments of type COptQuestVariableModifier and TypeMethodDescriptionvoid
COptQuestEquationSolver.AddVariables
(ArrayList<COptQuestVariable> vars) Makes the input array of decision variables available to the parsing methods.Constructors in com.opttek.optquest with parameters of type COptQuestVariableModifierConstructorDescriptionCOptQuestSelectionGroup
(COptQuestVariable selectionVariable) The constructor includes the variable that indicates the selection of an item (on/off)