-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect result with range()
?
#2182
Comments
The issue might come from a bug in the computation of unsigned souffle/src/include/souffle/utility/EvaluatorUtil.h Lines 44 to 47 in 7174f14
Since Then this code is called with souffle/src/include/souffle/utility/EvaluatorUtil.h Lines 26 to 32 in 7174f14
Since In your example, replace |
Hi guys,
Consider the following program:
If I run this program in interpreter mode, I get:
If I now add a rule
c__(a) :- b_u(a), !b_u(a).
, the result in the relationg__
should not change. But if I run the following program:I get an empty result in
g__
:I am using the latest souffle revision: 1be0bf8
The text was updated successfully, but these errors were encountered: