Package com.exigen.ie.constrainer.impl

Examples of com.exigen.ie.constrainer.impl.IntVarImpl


   * <b>Note:</b>Constrainer's users should not use this method.
   */
  public IntVar addIntVarTraceInternal(int min, int max, String name,
      int type, int trace) {
    IntVar var = trace != 0 ? new IntVarImplTrace(this, min, max, name,
        type, trace) : new IntVarImpl(this, min, max, name, type);
    return addIntVarInternal(var);
  }
View Full Code Here


   * Adds a constrained integer variable to the Constrainer, allows trace.
   */
  public IntVar addIntVarTrace(int min, int max, String name, int type,
      int trace) {
    IntVar var = trace != 0 ? new IntVarImplTrace(this, min, max, name,
        type, trace) : new IntVarImpl(this, min, max, name, type);
    return addIntVar(var);
  }
View Full Code Here

   * @param type
   *            The {@link Domain} type of the variable being added.
   * @return The added variable.
   */
  public IntVar addIntVar(int min, int max, String name, int type) {
    IntVar var = new IntVarImpl(this, min, max, name, type);
    return addIntVar(var);
  }
View Full Code Here

TOP

Related Classes of com.exigen.ie.constrainer.impl.IntVarImpl

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.