I have logtalk rule to add to the prolog DB :
add(IF, THEN) :- new_uid(U), assertz(cond(IF, 0, U)), assertz(act(U) :- THEN).
it seems to work ok.. i.e. it splits the rule to TWO separate facts (which later I interpret).
?- rules::add(greet(X),write([hi,X])).
true
?- listing(cond).
:- dynamic cond/3.
cond(greet(_), 0, 1).
true.
?- listing(act).
:- dynamic act/1.
act(1) :-
write([hi, _]).
true.
but as you see I lose the connection/unification of the variable X becomes "_" i.e. I want to to store a Variable and interpret it later i.e. late binding.. how do I do that ?
I assume that your definition of the object
rules
is something like:This allows us to reproduce the results your report:
The problem here is that you are asserting two separated clauses but clause variables are local to the clause.
A possible solution is to make that variable explicit. For example, by modifying your code to something like:
You would then use queries such as: