Package net.sf.kpex.prolog

Examples of net.sf.kpex.prolog.Conj


      t = curr;
    }
    else if (n instanceof CommaToken)
    {
      Term other = getTerm();
      t = new Conj(curr, getConjCont(other));
    }
    if (null == t)
    {
      throw new ParserException("'.'", "bad body element", n);
    }
View Full Code Here


    }
    else if (n instanceof CommaToken)
    {
      Term b = getTerm();
      Term bs = getConjCont(b);
      C = toClause(new Conj(h, bs), dict);
    }
    else
    {
      throw new ParserException("':-' or '.' or ','", "bad body element", n);
    }
View Full Code Here

TOP

Related Classes of net.sf.kpex.prolog.Conj

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.