Package kodkod.engine.bool

Examples of kodkod.engine.bool.Int.negate()


  public final Int visit(UnaryIntExpression intExpr) {
    Int ret = lookup(intExpr);
    if (ret!=null) return ret;
    final Int child = intExpr.intExpr().accept(this);
    switch(intExpr.op()) {
    case NEG   : ret = child.negate(); break;
    case NOT   : ret = child.not(); break;
    case ABS   : ret = child.abs(); break;
    case SGN   : ret = child.sgn(); break;
    default :
      throw new IllegalArgumentException("Unknown operator: " + intExpr.op());
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.