We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
eqrel
Hi,
Consider the following program:
.decl ytfh(A:float) .decl bkbi(A:float, B:float) eqrel ytfh(1). bkbi(E, E+1) :- ytfh(E). .output bkbi
I execute with the command souffle -D- --disable-transformers=ExpandEqrelsTransformer example.dl and get the result
souffle -D- --disable-transformers=ExpandEqrelsTransformer example.dl
--------------- bkbi A B =============== 2 2 2 1 1 2 1 1 ===============
But if I execute with provenance souffle -D- -t none --disable-transformers=ExpandEqrelsTransformer example.dl I get empty result
souffle -D- -t none --disable-transformers=ExpandEqrelsTransformer example.dl
--------------- bkbi A B =============== 1 2 ===============
But provenance should not modify the result.
The version of Souffle is 3cd802d
3cd802d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Consider the following program:
I execute with the command
souffle -D- --disable-transformers=ExpandEqrelsTransformer example.dl
and get the result
But if I execute with provenance
souffle -D- -t none --disable-transformers=ExpandEqrelsTransformer example.dl
I get empty result
But provenance should not modify the result.
The version of Souffle is
3cd802d
The text was updated successfully, but these errors were encountered: