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? 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
(Thanks to @amkCha for pointing this out).
There appears to be some issues with the handling of negative values in json traces. Minimal test:
json
(module m1) (defcolumns (X :byte@prove) Y) (defconstraint c1 () (eq! X Y))
With this trace:
{ "m1": { "X": [1,255,-1], "Y": [1,255,-1] } }
And then this command:
corset check --trace test.json test.lisp
And no failure is reported. Furthermore, with this command:
corset check -eeeeN --trace test.json test.lisp
Then, it crashes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(Thanks to @amkCha for pointing this out).
There appears to be some issues with the handling of negative values in
json
traces. Minimal test:With this trace:
And then this command:
And no failure is reported. Furthermore, with this command:
Then, it crashes.
The text was updated successfully, but these errors were encountered: