We are going to create a rule newrule(X) :- w,x,y,z(X).
The body of a rule is a tuple, a construct in the form (w,x,y...).
For different body lengths, starting with no body:
assert(goal).
assert(goal:-cond).
assert(goal:-(cond1,cond2)).
The tuple operator is the comma(`,'), as in ','(a,b) == (a,b).
%%%%
%%%% Name: runtime.pl -- Runtime rule insertion.
%%%%
create_a_rule :-
Cond=[w,x,y,z(X)],
Head=newrule(X),
list_to_tuple(Cond,Body),
dynamic(Head),
assert(Head :- Body),
listing(Head).
/*
This is a [l,i,s,t], and this is a (t,u,p,l,e).
Convertng list to tuple:
[] -> undefined
[x] -> (x) == x
[x,y] -> (x,y).
[x,y,z..whatever] = (x,y,z..whatever)
*/
list_to_tuple([],_) :-
ValidDomain='[x|xs]',
Culprit='[]',
Formal=domain_error(ValidDomain, Culprit),
Context=context('list_to_tuple','Cannot create empty tuple!'),
throw(error(Formal,Context)).
list_to_tuple([X],X).
list_to_tuple([H|T],(H,Rest_Tuple)) :-
list_to_tuple(T,Rest_Tuple).
:- create_a_rule.
:- listing(newrule).
--
There are two listings. The first listing results from listing() being called in create_a_rule(). The 2nd listing is from the listing() command at the last source line.
?- [runtime].
:- dynamic newrule/1.
newrule(A) :-
w,
x,
y,
z(A).
:- dynamic newrule/1.
newrule(A) :-
w,
x,
y,
z(A).
% runtime compiled 0.01 sec, 1,448 bytes
true.