How do I define a rule that the user cannot query? I only want the program itself to call this rule through another rule.
Ex:
rule1():- rule2().
rule2():- 1<5.
?-rule1().
true
?-rule2().
(I don't know what the answer will be, I just want this query to fail!)
Use a Logtalk object to encapsulate your predicates. Only the predicates that you declare public can be called (from outside the object). Prolog modules don't prevent calling any predicate as using explcit qualification bypasses the list of explicitly exported predicates.
A simple example:
After compiling and loading the object above:
If you edit the object code and explicitly declare rule2/1 as private you would get instead the error:
More information and plenty of examples at http://logtalk.org/