ilog.concert
Class IloNumVarType

java.lang.Object
  extended byilog.concert.IloNumVarType
All Implemented Interfaces:
java.io.Serializable

public abstract class IloNumVarType
extends java.lang.Object
implements java.io.Serializable

Objects of this class represent the type of a modeling variable. Three types are defined: Float, Int, and Bool.

See Also:
Serialized Form

Field Summary
static IloNumVarType Bool
          Boolean or, equivalently, binary variable type.
static IloNumVarType Float
          Floating point or, equivalently, continuous variable type.
static IloNumVarType Int
          Integer variable type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Float

public static final IloNumVarType Float
Floating point or, equivalently, continuous variable type.


Int

public static final IloNumVarType Int
Integer variable type.


Bool

public static final IloNumVarType Bool
Boolean or, equivalently, binary variable type.