You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.decl node(x: number)
.decl link(x: number, y: number, z: number)
.output link
node(1).
node(2).
node(3).
link(x, y, z) :- node(x), node(y), node(z), x < y, y < z.
Run souffle -texplain test.dl and enter the command explain link(1, 2, 3).
This derivation tree is incorrect because the premises in the top-right corner do not match up with the premises in the definition of link; moreover, the 1 < 1 premise is simply not true.
P.S. Thanks for all your work on Soufflé — the tool and papers are amazing! :)
The text was updated successfully, but these errors were encountered:
Steps to reproduce
test.dl
with the following content:souffle -texplain test.dl
and enter the commandexplain link(1, 2, 3)
.Expected output
Actual output
This derivation tree is incorrect because the premises in the top-right corner do not match up with the premises in the definition of
link
; moreover, the1 < 1
premise is simply not true.P.S. Thanks for all your work on Soufflé — the tool and papers are amazing! :)
The text was updated successfully, but these errors were encountered: