Package fasp.datatypes

Examples of fasp.datatypes.NonGroundPredicate


      negOp = NEGATIONOPERATORS.get(negOpSym.getSymbol());
    }
    if(negSym.tryParse(st))
      neg = true;
    try {
      NonGroundPredicate p = new PredicateParser().parse(st);
      return new NonGroundLiteral(p,neg,naf,negOp);
    } catch (ParseException e) {
      throw new ParseException(st,"failed to parse literal: "+e.getMessage());
    }
  }
View Full Code Here

TOP

Related Classes of fasp.datatypes.NonGroundPredicate

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.