Package kodkod.ast.operator

Examples of kodkod.ast.operator.ExprCompOperator


    BooleanValue ret = lookup(compFormula);
    if (ret!=null) return ret;

    final BooleanMatrix left = compFormula.left().accept(this);
    final BooleanMatrix right = compFormula.right().accept(this);
    final ExprCompOperator op = compFormula.op();

    switch(op) {
    case SUBSET  : ret = left.subset(right); break;
    case EQUALS  : ret = left.eq(right); break;
    default :
View Full Code Here

TOP

Related Classes of kodkod.ast.operator.ExprCompOperator

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.