Package com.exigen.ie.constrainer.impl

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


   * Adds a constrained floating-point variable to the Constrainer, allows
   * trace.
   */
  public FloatVar addFloatVarTrace(double min, double max, String name,
      int trace) {
    FloatVar var = trace != 0 ? new FloatVarImplTrace(this, min, max, name,
        trace) : new FloatVarImpl(this, min, max, name);
    return addFloatVar(var);
  }
View Full Code Here


   * variables for their own needs. <br>
   * <b>Note:</b>Constrainer's users should not use this method.
   */
  public FloatVar addFloatVarTraceInternal(double min, double max,
      String name, int trace) {
    FloatVar var = trace != 0 ? new FloatVarImplTrace(this, min, max, name,
        trace) : new FloatVarImpl(this, min, max, name);
    return addFloatVarInternal(var);
  }
View Full Code Here

TOP

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

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.