Package com.exigen.ie.constrainer.impl

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


   * @param exp IntExp that must be equal to IntExpConst's value.
   * @return  <code> ConstraintConst(exp == const)</code>
   */
  final public Constraint equals(IntExp exp) // this == exp
  {
    return new ConstraintExpEqualsValue(exp,_const);
  }
View Full Code Here


  /**
   * @return <code> ConstraintConst(exp == const - value)</code>
   */
  final public Constraint equals(IntExp exp, int value) // _const == exp + value
  {
    return new ConstraintExpEqualsValue(exp,_const - value);
  }
View Full Code Here

TOP

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

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.