Package com.exigen.ie.constrainer

Examples of com.exigen.ie.constrainer.IntExp.div()


  /**
   * @return this / value
   */
  public javax.constraints.Var divide(int value) {
    IntExp myVar = (IntExp) getImpl();
    return new Var(getProblem(),myVar.div(value));
  }

  /**
   * @return this / var
   */
 
View Full Code Here


  /**
   * @return this / var
   */
  public javax.constraints.Var divide(javax.constraints.Var var) throws Exception {
    IntExp myVar = (IntExp) getImpl();
    return new Var(getProblem(),myVar.div((IntExp)var.getImpl()));
  }

  /**
   * @return -this
   */
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.