I'm trying to define a predicate inline to pass it to another predicate in Prolog.
% Test if a "product" of graphs G1 and G2 has a "mini-loop" starting from Q
test_property_combined(G1,G2,Q):-
(g12(Q1,Q2) :- combine(G1,G2,Q1,Q2)),
some_property(g12,Q).
(The syntax above is obviously wrong.)
Later on g12 would be invoked by call
% Test if a graph G has a "mini-loop" starting from Q
some_property(G,Q):-
Goal1 =.. [G,Q,C],
Goal2 =.. [G,C,Q],
call(Goal1),
call(Goal2).
The problem persists because i want to test some_property on some kind of an aggregation of previously defined predicates.
% Create a "product" of graphs G1 and G2
combine(G1,G2,(Q1,Q2),(Q3,Q4)):-
Goal1 =.. [G1,Q1,Q3],
Goal2 =.. [G2,Q2,Q4],
call(Goal1),
call(Goal2).
The mentioned predicates and an example of a test query:
% g1 and g2 are graphs
g1(a,b).
g1(b,a).
g2(c,d).
g2(d,c).
?- test_property_combined(g1,g2,(a,c)).
How does one go about doing it?
(=..)/2to emulate higher-order programming. Use call/N instead. It is much more general and permits to uselibrary(lambda)– false Feb 17 at 17:22