-
Notifications
You must be signed in to change notification settings - Fork 188
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
Add apint to README as another alternative #21
Conversation
The ApInt crate is a pure rust implementation for arbitrary fixed bitwidth modulo arithmetics of integers with a focus on correctness and efficiency - especially for smaller bit widths. It features a generic signless `ApInt` as well as signed counterparts `Int` (signed int) and `UInt` (unsigned int) that are thin wrappers around it. The implementation is unfinished in some parts but that should be fixed over time.
Sure, thanks! bors r+ |
21: Add apint to README as another alternative r=cuviper a=Robbepop The ApInt crate is a pure rust implementation for arbitrary fixed bitwidth modulo arithmetics of integers with a focus on correctness and efficiency - especially for smaller bit widths. It features a generic signless `ApInt` as well as signed counterparts `Int` (signed int) and `UInt` (unsigned int) that are thin wrappers around it. The implementation is unfinished in some parts but that should be fixed over time. Link to crate at crates.io: https://crates.io/crates/apint Link to repo at GitHub: https://github.com/robbepop/apint
Build failed |
Thanks for trying to merge! :] I don't understand why bors build (travisCI) failed for this PR. I don't think it is a problem with the PR itself. |
Hmm, especially weird since CI already passed the PR initially -- nevermind the fact that you're not even changing the code... let's try again. bors r+ |
21: Add apint to README as another alternative r=cuviper a=Robbepop The ApInt crate is a pure rust implementation for arbitrary fixed bitwidth modulo arithmetics of integers with a focus on correctness and efficiency - especially for smaller bit widths. It features a generic signless `ApInt` as well as signed counterparts `Int` (signed int) and `UInt` (unsigned int) that are thin wrappers around it. The implementation is unfinished in some parts but that should be fixed over time. Link to crate at crates.io: https://crates.io/crates/apint Link to repo at GitHub: https://github.com/robbepop/apint
Timed out |
Meh, I'll just merge this. But some of those compile times are looking pretty horrible... |
Thanks for merging! :] |
The ApInt crate is a pure rust implementation for arbitrary fixed bitwidth modulo arithmetics of integers with a focus on correctness and efficiency - especially for smaller bit widths. It features a generic signless
ApInt
as well as signed counterpartsInt
(signed int) andUInt
(unsigned int) that are thin wrappers around it. The implementation is unfinished in some parts but that should be fixed over time.Link to crate at crates.io: https://crates.io/crates/apint
Link to repo at GitHub: https://github.com/robbepop/apint