Package alice.tuprolog

Examples of alice.tuprolog.Term


      throw new IllegalStateException(e);
    }
    if (!info.isSuccess()) {
      throw new IllegalStateException("Failed to call " + goal);
    }
    Term binding;
    try {
      binding = info.getTerm("P");
    } catch (NoSolutionException e) {
      throw new IllegalStateException("Failed to call " + goal, e);
    } catch (UnknownVarException e) {
View Full Code Here

TOP

Related Classes of alice.tuprolog.Term

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.