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
Cryptol silently does the wrong thing if you write a polynomial literal with an exponent that's too big to fit in an Int. For example:
Int
Cryptol> :t <|x^^18446744073709551616|> <| 1 |> : {n} (n >= 1, fin n) => [n]
This appears to be caused by an unsafe use of fromInteger (#637).
fromInteger
The text was updated successfully, but these errors were encountered:
Be more careful about using fromInteger in the parser.
a787ccd
Fixes #712
a95fab2
Successfully merging a pull request may close this issue.
Cryptol silently does the wrong thing if you write a polynomial literal with an exponent that's too big to fit in an
Int
. For example:This appears to be caused by an unsafe use of
fromInteger
(#637).The text was updated successfully, but these errors were encountered: