-
Notifications
You must be signed in to change notification settings - Fork 60
Runtime moduli #134
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
Runtime moduli #134
Conversation
@@ -1,17 +1,62 @@ | |||
use crate::UInt; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR looks good aside from the use of the 2015 edition module style (i.e. mod.rs
)
We've adopted the 2018 edition module style, where this file would be modular.rs.
Unfortunately I don't think they ever added a lint for mixed module styles.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this what you mean?:
https://rust-lang.github.io/rust-clippy/master/index.html#mod_module_files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh ho, went looking for that the other day and didn't find it... weird
Will fix it up retroactively |
This PR extends #130. It adds residues for moduli decided at run-time.