Uses of Class
fuzzydl.milp.Bound

Packages that use Bound
fuzzydl.milp   
 

Uses of Bound in fuzzydl.milp
 

Subclasses of Bound in fuzzydl.milp
 class BinaryBound
          Bound for a binary variable in {0,1}.
 class FreeBound
          Bound for a real variable.
 class IntBound
          Bound for an integer variable with an upper bound.
 class UpperBound
          Upper bound for a real variable.
 

Fields in fuzzydl.milp declared as Bound
static Bound MILPHelper.BINARY_VARIABLE
          Gets a bound for a binary variable.
static Bound MILPHelper.FREE_VARIABLE
          Gets a bound for an unrestricted real variable.
static Bound MILPHelper.UP_BOUND_BY_ONE
          Gets an upper bound equal to 1.
 

Methods in fuzzydl.milp that return Bound
 Bound Variable.getBound()
          Gets the type of the variable.
static Bound MILPHelper.INT_VARIABLE(int k1)
          Gets an integer bound with value k1.
 

Methods in fuzzydl.milp with parameters of type Bound
 Variable MILPHelper.getNewVariable(Bound bound)
          Gets a new variable with the indicated bound.
 Variable MILPHelper.getVariable(java.lang.String varName, Bound bound)
          Gets a variable with the indicated bound.
 void Variable.setBound(Bound bound)
          Gets the name of the variable.
 

Constructors in fuzzydl.milp with parameters of type Bound
Variable(java.lang.String name, Bound bound)
          Constructor.