Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
229 views

Exception thrown when trying to use JPL and YAP Prolog in OS X

I am trying to use JPL for the interaction of Java programs and YAP Prolog. In my java file, this line is throwing an exception: Query query = new Query("consult", new Term[] { new Atom("test.pl") ...
3
votes
1answer
642 views

How do I wire up my Java UI to a JPL Prolog application?

I'm writing an application in Java using JPL provided by SWI-Prolog to call Prolog from Java. I'm using Eclipse as the IDE. I don't know how to start this example I found online: Here the java ...
3
votes
1answer
3k views

How to use JPL (bidirectional Java/Prolog interface) on windows?

I'm interested in embedding a Prolog interpreter in Java. One option is using JPL, but the download links on the JPL site are broken, and the installation page mentions a jpl.zip that I can't find. I ...
2
votes
2answers
419 views

How to solve “Symbol lookup error” by using JPL on Ubuntu11.04?

I'm coding a program in Java and I would like to connect to Prolog. Thus, I decided to use JPL. It is perfectly to use JPL on Windows Vista. Later, I have to change the OS platform to be Ubuntu 11.04. ...
2
votes
1answer
258 views

How can I use a GUI debugger on the Prolog code that runs inside a Java app through JPL?

I'm developing a Java+Prolog application through the JPL bridge. The main application is in Java and it calls the Prolog code using Query.oneSolution("doPrologStuff(here)") I tried running the GUI ...
1
vote
1answer
60 views

accessing prolog list term

I've been using jpl for calling prolog from java. I'm using the following code in java to get the value of X from prolog. String t4 = "myNumber(X)"; Query q4 = new Query(t4); System.out.println( ...
1
vote
0answers
166 views

Using SWI-Prolog with Eclipse and Java (and JUNG): Should I use ProDT, PDT, or both?

I want to use SWI-Prolog, Eclipse, and Java together and I have two interrelated related issues: I don't know if I should use ProDT, PDT or both in combination. PDT says that it includes a ...
0
votes
1answer
32 views

How to fix 'configure: error: cannot find java include files'?

To install jpl(A Java Interface to Prolog),when I type 'make', it shows checking symlink for /etc/alternatives/javac... /usr/bin/gcj-wrapper-4.4 configure: error: cannot find java include files ...
0
votes
1answer
63 views

Showing console output of a third party JNI library in an eclipse plugin

I am using JPL, a JNI library for interacting with Prolog from Java. In my application it is important to see the output that the Prolog engine generates (for example: when loading Prolog files, ...
0
votes
1answer
77 views

How to handle prolog lists in java

I'm using jpl to connect java and prolog. I am trying to handle prolog lists in java. My prolog code when executed returns a list like the following L = [38, '(60)', '48^10', '36^6^58'] Now i'm ...
0
votes
0answers
61 views

Handling prolog output in java

Following is my prolog code!myNumber(2). myNumber([3]). And my java part contains! import java.util.Hashtable; import jpl.*; public class Family { public static void main( String argv[] ) ...
0
votes
0answers
96 views

Problems with SWI Prolog launching a Java Swing application using JPL

I am giving a try to JPL to see if I can use it to integrate Java and SWI Prolog. When I tested some of the JPL examples that come with SWI - particularly the ones that interact with Swing - I got ...
0
votes
1answer
135 views

Calling the listing function in jpl

I was wondering whether anyone had managed to use the 'listing.' command in JPL to examine the contents of the Prolog knowledgebase? JPL requires you construct queries and will return solutions based ...