vote up 1 vote down star

I would like to switch from SWI-Prolog to Prova - but it seems to be harder than expected:

Predicates like succ() are not available and operations like Var1+Var2>Var3 do not work (obviously it has to be Var3<Var1+Var2 to be valid).

Is there documentation available describing the differences between Prolog dialects?

flag

1 Answer

vote up 0 vote down

The only "Prolog dialects comparison" article I could find is this ACM article. Unfortunately, it is not free. And I'm unsure whether it includes a comparison with Prova.

If Prova is a Java way of doing Prolog, it'll be adjusted to the OO environment of the imperative Java language. It seems to present you with a subset of Prolog, but the syntax is indeed clearly different. The upside is that you can mix "Prolog" with "Java".

You may also look up information about Mandarax, which is Prova compatible to a large extend, but you're probably already aware of that.

link|flag
I doubt that this article from 1987 covers the Java-based Prova... As far as I know Prova is built on Mandarax. – shink Oct 24 at 12:48
Yes, Prova is a Mandarax implementation for managing derivation rules in Java in a Prologish way. I didn't check the date, sorry. I'm afraid there isn't much available then. – Abel Oct 24 at 19:50

Your Answer

Get an OpenID
or

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