Package com.exigen.ie.constrainer.impl

Examples of com.exigen.ie.constrainer.impl.IntBoolVarImpl$UndoIntBoolVarValue


   *            Variable's symbolic name.
   *
   * @return The added variable.
   */
  public IntBoolVar addIntBoolVar(String name) {
    IntBoolVar var = new IntBoolVarImpl(this, name);
    return addIntBoolVar(var);
  }
View Full Code Here


   * Adds an internal constrained boolean variable to the Constrainer. Used in
   * expressions that create internal variables for their own needs. <br>
   * <b>Note:</b>Constrainer's users should not use this method.
   */
  public IntBoolVar addIntBoolVarInternal(String name) {
    IntBoolVar var = new IntBoolVarImpl(this, name);
    return addIntBoolVarInternal(var);
  }
View Full Code Here

TOP

Related Classes of com.exigen.ie.constrainer.impl.IntBoolVarImpl$UndoIntBoolVarValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.