Tagged Questions
0
votes
0answers
32 views
tuprolog and Definite Clause Grammars
I'm using tuProlog (http://tuprolog.alice.unibo.it/) to run some prolog clauses from inside java. I'm having some problems with Definite Clause Grammars, and I think Stackoverflow might be the right ...
-1
votes
1answer
26 views
I want to use TuProlog in my Android Project
How I can make an Android Project using tuProlog like Api
I have benn trying it but I couldn't
I have this error:
Could not find class 'alice.tuprolog.Theory', referenced from method....
0
votes
2answers
33 views
SWI-Prolog file executing throug Java
I want to run SWI-Prolog from Java file. I want to read text.pl file and write the output in output.txt file. How can I do that?
I'm not pretty sure of what I did here if it is correct or not. I'm ...
0
votes
0answers
20 views
Calling Prolog from Java in SICStus
I want to call a Prolog file from a Java interface. I use SICStus Prolog. I know there is an interface called "jasper" to call Java from Prolog or vise versa. I want the output of the Prolog file to ...
-1
votes
0answers
63 views
Depth search comparatives [closed]
I have a simple query, given a depth search function for a given graph, what would be more efficient, Haskell java or prolog?
I argue that Haskell first because of its recursivity and the fact that ...
2
votes
2answers
121 views
PROLOG with lambda expressions
Is there any Java PROLOG implementation that supports lambda expressions? I know that there are Java implementations of other languages that support lambda expressions, such as LISP and Clojure, but I ...
0
votes
0answers
38 views
Infix expressions with user-defined operators in prolog for java
Context
I used gnu-prolog to create a program. For syntax purposes I defined an operator '::' ...
op(350,xfy,::)
... in order to make infix expressions such as
A=a::b::c
Now I want to ...
0
votes
0answers
179 views
jpl.dll: Can't find dependent libraries
I am using java netbeans and want to use prolog api in it but i keep getting error
Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program Files\swipl\bin\jpl.dll: Can't find dependent ...
3
votes
2answers
319 views
connect between java and swi prolog
I am trying to run swi prolog from java
I am using eclipse and I have inserted jpl.jar into the project (properties->libraries->add external jar) and when I am trying to run a program (it is a sample ...
0
votes
0answers
112 views
Unexpected behavior of the JPL library in multithreaded programs (Interfacing Java and Prolog)
I have been experimenting with the multithreading features of JPL. As far as I understand from the comments in the source code one different Prolog engine is assigned per Java thread.
Apparently there ...
0
votes
0answers
61 views
How to use Prolog in Java using JLog?
I'm trying to use the following libraru in my code: https://sourceforge.net/projects/jlogic/
by writing the following: https://sourceforge.net/projects/jlogic/
jPrologAPI joPA = new ...
1
vote
1answer
164 views
BDD implementations in Java
Anyone has suggestions for BDD (binary decision diagrams) implementations in Java (or one that provides Java bindings)? I found this page online: http://www.mancoosi.org/~abate/avalaible-bdd-libraries ...
0
votes
1answer
92 views
Get JPL output into a string in Java
I'm using Prolog in java through JPL, I have some predicates with the format predicate:
format("Result ~p, ",[X]),
Using JPL in java the output of format goes to the console output in java, how can ...
0
votes
1answer
173 views
Retrieving ERROR and WARNING messages from SWI-Prolog through JPL
I am having some trouble retrieving error and warning messages when using JPL.
For example, attempting to consult a non-existing file directly from SWI-Prolog produces the following output:
1 ?- ...
0
votes
0answers
132 views
Querying predicate in Prolog and java
I want to make a query to use Prolog in java through JPL, I want to call a predicate like this in java:
predicate_test([X,Y,Z]):-
a_predicate(X),
another_predicate(Y).
I make the query in ...
1
vote
2answers
321 views
Querying Prolog variables with JPL
I want to make a query to use Prolog in java through JPL, I read the documentation (http://www.swi-prolog.org/packages/jpl/java_api/getting_started.html)
The prolog predicates are these:
...
1
vote
0answers
130 views
Eclipse XSB InterProlog Setup
I'm trying to set up InterProlog in eclipse.
My path variable already has the path to jdk1.7 and I already have xsb installed. I attached interprolog.jar as an external jar, added the xsb to my path ...
1
vote
2answers
83 views
Finite Domain Solver fd_minimize/2
I need to minimize a predicate in Prolog. Currently I am using GNU Prolog Java.
I have got this fact
army( Territory,X ).
It says that the given Territory has got X army. Now I want to find the ...
3
votes
1answer
276 views
Using JPL (Java + Prolog) in a Java EE web application
I would like to develop a Java EE web application that requires Prolog, via JPL, for certain search related tasks.
The web application will be deployed in the JBoss application server.
The Prolog ...
1
vote
1answer
144 views
Restarting Prolog engine from Java using JPL
In one java application that uses JPL to interact with Prolog, I want to be able to restart the prolog engine with different settings. As an example, I would like to change from SWI to YAP (I ...
1
vote
3answers
201 views
tuProlog unknow behavior
I'm using tuProlog to integrate Prolog with Java, to do so I'v been defined a .pl file wich contains this code:
go:-write('hello world!'),nl.
In my Java File at NetBeans i Have a Main Class that ...
3
votes
4answers
323 views
How can I read and run Prolog code in Java with a simple engine?
I want to run Prolog code using Java.
I found some engines, but the only one that seemed easly to use was w-prolog . However, when I tried to use it I figured out he doesn't support simple things ...
0
votes
2answers
275 views
inference engine based chatbot in java
I want to build a chatbot which can parse through given knowledge to add facts to its knowledge base and use these facts and an inference engine to answer questions. What existing solutions can I use ...
2
votes
4answers
497 views
What language can be recommended for text mining/parsing? [closed]
I'm doing some text mining in web pages. Currently I'm working with Java, but maybe there is more appropriate languages to do what I want.
Example of some things I want to do:
Determine the char ...
0
votes
1answer
260 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
1answer
873 views
Path finding in java / prolog using A*Star
I am supposed to start for example from point 1B to 5D. how am i supposed to reach? anyone can gv me a hint to get start on this?thanks. not asking for codes but the tips/ hints. thanks.
A B C D E
...
-1
votes
1answer
174 views
test case generator using java [closed]
I'm developing an 'Automatic test case generator' using java. The inputs for the java program will be fed by prolog program. If the input is for example an integer 2 then the java program should ...
1
vote
2answers
363 views
JPL for java\prolog
I'm interested in using JPL with java, but an error message is prompting like 'package jpl does not exist' while trying to compile the java program. How do i import jpl to java?
17
votes
2answers
420 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") ...
2
votes
2answers
537 views
how to use prolog in java?
Please, someone help me with an example. I would like to create a simple Prolog program, that adds two numbers together, and the Java program writes it to the console! So the Prolog is adding, and the ...
1
vote
2answers
134 views
Prolog embedding in java help
| have a filter written in prolog which i would like to embed in my web service. I am using JAVA at my back end, I would like the filter to be added here. I am using tomcat as my applicaton server. ...
0
votes
2answers
89 views
How do I write every fact of a certain term to a file?
I'm trying to write my results to a file. I'm doing this with GNU Prolog (or rather, GNU Prolog for Java)
I have a set of facts something(a),something(b),something(c), and I want to write all of them ...
2
votes
1answer
490 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 ...
17
votes
2answers
1k views
Swi prolog in Semantic Web
I would like to listen from people who have real world programming experience in using swi-prolog's semantic library.
Edit: The reason for this question is, among the many people I talked to with ...
0
votes
1answer
133 views
gnuprologjava problem
I am using http://www.gnu.org/software/gnuprologjava/ to perform prolog stuff from Java application.
In this context I am lodaing the following prolog file:
/* ghoul is a prolog fact ...
7
votes
5answers
1k views
How use Prolog from Java?
In the context of a Java/Eclipse application I would like to use Prolog for a particular task. What are the available solutions and tools to do that, and associated pro and cons ?
I can launch an ...
2
votes
2answers
263 views
Unification - Infinity of results
I'm developing (in Java), for fun, an application which uses an unification algorithm.
I have chosen that my unification algorithm returns all the possible unifications. For example, if I try to ...
1
vote
1answer
124 views
tuprolog program - term part not ended with period exception
I'm getting this exception
Exception in thread "main" alice.tuprolog.InvalidTheoryException: The term part is not ended with a period.
at alice.tuprolog.TheoryManager.consult(Unknown Source)
...
0
votes
2answers
393 views
problem in tuprolog
i downloaded the tuprolog and i'm not able to get the result for the following query, while i get answer in PROL ide.. can someone help?
verb(admit-1).
verb(work-4).
nsubjpass(admit-1, patient-2).
...
0
votes
2answers
407 views
fastest bidirectional java prolog implementation
I am trying to use a a java-prolog layer on top of my current agent-based simulation. I am running Mac OS X Snow Leopard and Netbeans 6.9 and tried to use JPL from swi-prolog however I haven't managed ...
0
votes
1answer
153 views
Java/Prolog help - problem trouble shooting
I'm having a pretty rough time trying to make use of interprolog
I have some code, trying to call a prolog command and the problem is the actual loading of my prolog database. Here is the code:
...
0
votes
2answers
1k views
Java help - StringIndexOutOfBoundsException - String index out of range: -1
I'm having trouble with some of my code and I really cant trouble shoot this error.
I'm using Interprolog(Java+Prolog) see here
here is the stacktrace:
Exception in thread "AWT-EventQueue-0" ...
1
vote
3answers
400 views
Interprolog and SWI-Prolog help
I have set up and installed both interprolog and swi prolog on my linux machine following the instructions here :Interprolog with SWI instructions on Linux
I have edited the unixVariables.sh to ...
2
votes
2answers
180 views
Prolog - Access Control?
I am currently using interprolog - which is basically java with a prolog backend, allowing both java and prolog calls from each other respectively.
Now If i had say a frontend GUI coded in java ...
3
votes
1answer
916 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 ...
1
vote
1answer
272 views
Java and Prolog - Interprolog help
I am currently trying to set up interprolog(see http://www.declarativa.com/interprolog/) and i've followed the steps on the site, but now I'm wondering how i can use interprologs classes from my ...
23
votes
12answers
4k views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint ...
1
vote
3answers
563 views
How can I find the index of the first “element” in my string using Java?
I'm working on writing a simple Prolog interpreter in Java.
How can I find the last character index of the first element either the head element or the tail element of a string in "List Syntax"?
...
0
votes
1answer
193 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 ...
4
votes
1answer
4k 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 ...

