Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android and Prolog

Tags:

android

prolog

I have built an expert system in Prolog. Is there a way I can incorporate the Prolog code into my Android application so that the application takes arguments passes them to the Prolog expert system, and the expert system returns the answer to the Android application?

like image 592
user434885 Avatar asked Nov 25 '10 20:11

user434885


People also ask

Which IDE is best for Prolog?

SPIDER is the new SICStus Prolog IDE, based on Eclipse. The latest update, 0.0. 77, was released September 27, 2022. Installation.

Is Prolog an IDE?

Prolog Development Tools (ProDT) is a Prolog Integrated Development Environment (IDE) aiming to be as rich in functionality as the Eclipse's java IDE, giving the developer a single environment where it can control the development of a Prolog project from code edition, test execution, debugging, and more...

What is the example of Prolog?

Prolog programs have a sequence of clauses. Facts or rules are described by these clauses. Example of facts is dog(rottweiler) and cat(munchkin). They mean that 'rottweiler is a dog' and 'munchkin is a cat'.

Is Prolog a open source software?

Prolog-MPI is an open-source SWI-Prolog extension for distributed computing over the Message Passing Interface. Also there are various concurrent Prolog programming languages.


1 Answers

Try if your prolog code compiles (and runs correctly ) with any of the JVM based prolog compilers: http://www.is-research.de/info/vmlanguages/tag/prolog/

If it does then you're in luck. It will most probably run on Android.

like image 82
Peter Knego Avatar answered Sep 20 '22 11:09

Peter Knego