I have a problem with defining procedures in prolog. I have two source files and want to consult prolog engine with both of them. This can be done by invoking prolog as swipl -g “['1.pl','2.pl'].

Both of the files are generated by another program written in another programming language and i can't predict the exact content of the files beforehand.

The problem is that in one of the files there is always a rule

predicate1(X):-predicate2(X).

But,sometimes the rule

predicate2(something):-body

does not exist in both of the files and i get a error "predicate2" is undefined, when executing some queries for predicate1.

If i include the line

:- dynamic(predicate2/2). 

into one of the files it only helps if predicate/2 is not defined in another file (otherwise i get something like "are you really sure you want to redefine the predicate2/2?". And here i don't want to redefine something to save the data from another file.

So,i have no idea how to make the predicate just "defined". I need a solution for SWI-prolog or SICStus prolog. (unfortunately the versions do not have a section for defining predicates,like visual prolog)

Thank you.

link|improve this question

What did you try? – Basile Starynkevitch Dec 31 '11 at 9:14
A possible way is to include something like predicate2(blablabla..). in both files,but i don't like it,because sometimes there are queries of the type predicate2(X),and the set for X includes "blablabla.." – iensen Dec 31 '11 at 9:17
is there a special command for this? I didn't find something useful in the documentation – iensen Dec 31 '11 at 9:18
feedback

1 Answer

up vote 1 down vote accepted

In SWI Prolog you can avoid the error. Change the system behaviour using the ISO builtin

:- set_prolog_flag(unknown, Choice).

The Choice is one of (fail,warning,error).

So your command line will be:

swipl -g “set_prolog_flag(unknown,fail),['1.pl','2.pl']."

Another possibility: define a fake procedure

swipl -g “assert(predicate2(_):-fail),['1.pl','2.pl']."

HTH

link|improve this answer
Thank you! It works both for sicstus and swi-prolog. – iensen Dec 31 '11 at 12:20
feedback

Your Answer

 
or
required, but never shown

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