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
clash-prelude-hedgehog
E.g., genSigned can generate results outside of its given range:
genSigned
clash-compiler/clash-prelude-hedgehog/src/Clash/Hedgehog/Sized/Signed.hs
Lines 28 to 34 in 690fbea
I think this is misleading at best. We probably want to inspect the given range and generate its extreme values.
The text was updated successfully, but these errors were encountered:
Yes, that seems reasonable. Do you want to make a PR or should I, it's just a case of changing
minBound ~~> Range.lowerBound range maxBound ~~> Range.upperBound range
Sorry, something went wrong.
Go for it
We've released v1.6.3, which includes a fix for this issue.
Successfully merging a pull request may close this issue.
E.g.,
genSigned
can generate results outside of its given range:clash-compiler/clash-prelude-hedgehog/src/Clash/Hedgehog/Sized/Signed.hs
Lines 28 to 34 in 690fbea
I think this is misleading at best. We probably want to inspect the given range and generate its extreme values.
The text was updated successfully, but these errors were encountered: