-
Hi,
I'm trying to run some Prolog code in your nice Java implementation which uses the "is" predicate. I'm using the API, the Java classes for the predicate seem to be there but it's saying "Expected '.' at 42 : line,char(1,42)" (that's where "is" starts). Can you help me? Thanks!
Michael.
2009-10-11 16:11:39 UTC by m_zeising
-
This patch removes unneeded imports of the java.lang package from the Java source files. As by the Java Language Specification this package is always imported automatically. The patch will reduce the compile time and the download size and will increase code readability.
2009-03-10 12:28:25 UTC by javaprog
-
grholst committed patchset 86 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 442 files.
2008-06-11 06:48:55 UTC by grholst
-
grholst committed patchset 85 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 1 files.
2008-06-11 06:09:29 UTC by grholst
-
grholst committed patchset 84 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 4 files.
2008-06-11 06:05:20 UTC by grholst
-
The following does not compile on JLog 1.3.6 (represents a null terminal):
s --> [].
This code change to jDCG.makeDCGBaseCompoundTerm in jDCG.java add support for a Null List in the DCG:
250c250,257
< if (rt instanceof jListPair)
---
> if (rt instanceof jNullList)
> {jUnify un;
>
> terms.addTerm(un = new jUnify());
>
> pr.addElement(new...
2008-02-13 07:51:09 UTC by grholst
-
grholst committed patchset 83 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 1 files.
2007-09-13 05:41:35 UTC by grholst
-
grholst committed patchset 82 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 1 files.
2007-09-13 04:08:49 UTC by grholst
-
grholst committed patchset 81 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 1 files.
2007-09-13 03:59:53 UTC by grholst
-
grholst committed patchset 80 of module jlog to the JLog/JScriptLog - Prolog in Java* CVS repository, changing 2 files.
2007-09-11 06:05:16 UTC by grholst