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
BitVector
Shifting a bit into a 0-length BitVector with (+>>.) or (.<<+) currently fails with an out of range exception.
(+>>.)
(.<<+)
We should either define the operations to keep empty bit vectors unchanged or exclude them from the interface via adding some 1 <= n constraints.
1 <= n
The former would be the way to go in order to stay consistent with (+>>) and (<<+):
(+>>)
(<<+)
clashi> high +>> (Nil :: Vec 0 Bit) Nil clashi> (Nil :: Vec 0 Bit) <<+ low Nil
The text was updated successfully, but these errors were encountered:
We've released v1.8.2, which includes a fix for this issue.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Shifting a bit into a 0-length BitVector with
(+>>.)
or(.<<+)
currently fails with an out of range exception.We should either define the operations to keep empty bit vectors unchanged or exclude them from the interface via adding some
1 <= n
constraints.The former would be the way to go in order to stay consistent with
(+>>)
and(<<+)
:The text was updated successfully, but these errors were encountered: