Examples of sgn()


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

    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());
    }
    return cache(intExpr, ret);
  }
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.