I have searched the Internet and stackoverflow.com, but got nothing.

Who can give me a comparison between various Prolog compilers/IDEs such as Visual Prolog and SWI-Prolog?

Thanks in advance!

link|improve this question

1  
You've got two reasonable answers, but "best" questions usually don't get the kind of answers you are after. What do you care about? You mention Visual Prolog: does that mean you want to develop on Windows? – Charles Stewart Dec 20 '10 at 19:15
feedback

5 Answers

If speed is the most important aspect, you should consider GNU-Prolog. I recently developed using Amzi! Prolog with its Eclipse IDE (not to be confused with ECLiPSe programming language). Once the debugging was done, I turned my attention to timing. Porting to SWI-Prolog and GNU-Prolog was fairly straightforward, both on Windows and Linux, since at that point the code was fairly standard "ISO" Prolog. My timings showed Amzi! and SWI were comparable in speed, and GNU-Prolog was significantly faster.

It also turned out the code was spending a large majority of time in one section that was very numeric. While Amzi! and SWI both implement exact integer arithmetic in arbitrary precision, it turned out my requirements were just within the integer limits in 32-bit GNU-Prolog.

Moreover GNU-Prolog was easy to link to a rewrite of that critical section in C. The hybrid code is what I'm using in production.

link|improve this answer
I've found YAP to be faster than GNU most of the time. – JUST MY correct OPINION Dec 20 '10 at 10:44
feedback

You might get a good start by looking at this comparison of Prolog implementations. One barrier for Visual Prolog might be that it's for Win16. Since you haven't made clear what your goals are, what platform you're targeting, what your requirements are, what your experience is, etc. there's not much more information I can provide.


Edited to add:

Wikipedia has a good comparison chart of Prolog implementations. That should assist you in your decision making process.

link|improve this answer
@JUST, thank you very much for your help. My goal is integrating prolog engine into my application in static library. My application is written in C++. – xmllmx Dec 19 '10 at 14:29
2  
What platform? What are your performance needs? – JUST MY correct OPINION Dec 19 '10 at 14:59
@Just, My goal is platform-independent. Performance is important. My application is a real-time game. – xmllmx Dec 20 '10 at 1:32
2  
Those comparisons left out ECLiPSe, and it advertises embed-ability. The Wikipedia Page – frayser Dec 20 '10 at 7:26
1  
Huh. I'd never realized that ECLiPSe was a Prolog. I thought it was its own (constraint) logic language. – JUST MY correct OPINION Dec 20 '10 at 10:05
show 4 more comments
feedback

It's hard to go wrong if you start with SWI-Prolog. Although it is slower than most of the alternatives discussed here, it is extremely robust, has broad library support, has a decent GUI-building system (XPCE), and uses a license that allows its use in proprietary applications.

For better speed, it is a simple matter to convert most non-GUI SWI-Prolog applications to run under YAP Prolog.

link|improve this answer
also, it's actively developed, with 'best of class' techs in vital areas, like garbage collection – chac Jan 25 at 9:44
feedback

There is a performance based analysis of rule engines here: http://sunysb.academia.edu/PaulFodor/Papers/349245/Openrulebench_An_Analysis_of_the_Performance_of_Rule_Engines

Im many tests, YAP seems to be in general the faster one, but XSB is not bad at all. If you are looking for inter-language communication (with Java, C, or others), database access, or tabling (these were my requirements), XSB has an impressive amount of sophisticated libraries. However, I found YAP easier to use (until the present, I am just starting giving XSB a chance :).

link|improve this answer
feedback

I'd recommend Amzil Prolog because of it's GREAT Eclipse IDE Plugin. You'll find it here: Official Site.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.