Uses of Class
fuzzydl.milp.Variable

Packages that use Variable
fuzzydl   
fuzzydl.milp   
 

Uses of Variable in fuzzydl
 

Methods in fuzzydl that return Variable
 Variable DegreeVariable.getVariable()
          Gets the variable which defines the degree.
 Variable Concept.getWeightVar()
          Gets the weight variable;
 

Methods in fuzzydl with parameters of type Variable
static Concept Concept.extendedNegThreshold(Variable w, Concept c)
          Gets a new extended negative threshold concept.
static Concept Concept.extendedPosThreshold(Variable w, Concept c)
          Gets a new extended positive threshold concept.
static Degree Degree.getDegree(Variable variable)
          Constructor for a variable degree.
abstract  Expression DefuzzifyQuery.getObjExpression(Variable q)
          Gets the objective expression.
 Expression LomDefuzzifyQuery.getObjExpression(Variable q)
           
 Expression MomDefuzzifyQuery.getObjExpression(Variable q)
           
 Expression SomDefuzzifyQuery.getObjExpression(Variable q)
           
 

Constructors in fuzzydl with parameters of type Variable
Concept(int type, Variable w, Concept c)
           
 

Uses of Variable in fuzzydl.milp
 

Methods in fuzzydl.milp that return Variable
 Variable BinaryBound.getNewVariable()
          Gets a new variable of the type of the bound.
abstract  Variable Bound.getNewVariable()
          Gets a new variable of the type of the bound.
 Variable FreeBound.getNewVariable()
          Gets a new variable of the type of the bound.
 Variable IntBound.getNewVariable()
          Gets a new variable of the type of the bound.
 Variable UpperBound.getNewVariable()
          Gets a new variable of the type of the bound.
 Variable MILPHelper.getNewVariable(Bound bound)
          Gets a new variable with the indicated bound.
 Variable Term.getVar()
          Gets the variable of the term.
 Variable MILPHelper.getVariable(java.lang.String varName)
          Gets a variable with the given name, creating a new one of type UP_BOUND_BY_ONE if it did not exist.
 Variable MILPHelper.getVariable(java.lang.String varName, Bound bound)
          Gets a variable with the indicated bound.
 

Methods in fuzzydl.milp that return types with arguments of type Variable
 java.util.Collection<Variable> ShowVariablesHelper.getVariables()
          Gets the variables to be shown.
 

Methods in fuzzydl.milp with parameters of type Variable
 void ShowVariablesHelper.addVariable(Variable var, java.lang.String nameToShow)
          Add a variable to shown, showing it with a given name.
 double Expression.getConstantTerm(Variable var)
          Given a variable, gets its coefficient in the expression.
 java.lang.String ShowVariablesHelper.getName(Variable var)
          Gets the name of a variable.
 boolean ShowVariablesHelper.showVariable(Variable var)
          Shows the value of a variable.
 

Constructors in fuzzydl.milp with parameters of type Variable
Term(double coeff, Variable var)