Examples of acyclic()


Examples of kodkod.ast.Relation.acyclic()

    if (ret!=null) return ret;
 
    final Relation r = (Relation)pred.relation().accept(this);
    switch(pred.name()) {
    case ACYCLIC : 
      ret = (r==pred.relation()) ? pred : r.acyclic();
      break;
    case FUNCTION :
      final RelationPredicate.Function fp = (RelationPredicate.Function) pred;
      final Expression domain = fp.domain().accept(this);
      final Expression range = fp.range().accept(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.