Hello all.
I have an implementation of Gordon Plotkin’s program reduction algorithm and I would like to use Swi’s tabling to control left-recursion. Briefly, Plotkin’s algorithm reduces a set of clauses by throwing out each clause that is entailed by the rest of the program. In my implementation, entailment is decided by resolution. In practice, that means call/1
.
I would like to apply the algorithm to programs with possible left-recursions, without having to jump through hoops to avoid evaluation “going infinite”. I do that with a depth-bounded meta-interpreter but I was hoping to drop all that (dirty and slow code) and use Swi’s swanky new tabling facilities instead.
Unfortunately, it seems that when I try, some of the algorithm’s results change and clauses are found redundant that previously weren’t.
The following is some output from the implementation. It should be self-explanatory:
% Without tabling - corect reduction
Program clauses:
----------------
m(A,B,C):-m(D,B,C)
m(A,B,C):-m(D,C,B)
Program reduction:
------------------
m(A,B,C):-m(D,C,B)
Redundant clauses:
------------------
m(A,B,C):-m(D,B,C)
% With tabling - incorrect reduction
Program clauses:
----------------
m(A,B,C):-m(D,B,C)
m(A,B,C):-m(D,C,B)
Program reduction:
------------------
Redundant clauses:
------------------
m(A,B,C):-m(D,C,B)
m(A,B,C):-m(D,B,C)
I’ve tried to isolate the effect as much as possible and created a github repository with the bare-bones of the code that implements the algorithm (plus comments) and also some unit tests. Here:
The 20 (unblocked) unit tests in the repository (in program_reduction.plt) all pass without tabling, but 13 fail when tabling is enabled, because too many clauses are found to be redundant. Blocked tests “go infinite” without tabling.
To disable and enable tabling, lines 183 and 189 in the file program_reduction.pl can be commented or uncommented.
I’d appreciate some help to understand what is going on here.
Thanks for the help!
Stassa
Edit: forgot to say: I’m onn version 8.1.26, 64 bits and windows 10.