malachite icon indicating copy to clipboard operation
malachite copied to clipboard

An arbitrary-precision arithmetic library for Rust.

Results 12 malachite issues
Sort by recently updated
recently updated
newest added

docs.rs build of docs for new version failed. I tried reading the log, it seems that it couldn't find embed-doc-image dependency, I don't understand why because that crate is available...

Is there a function in malachite that is similar to [`rug::Integer::is_probably_prime`](https://docs.rs/rug/1.24.0/rug/struct.Integer.html#method.is_probably_prime)? If not, how would we implement it?

I've seen you have used this in example code when you wrote a twos_complement_limbs_count function, however I don't see any mention of platform module in the docs or Limb type....

Hi, is there a way to convert Natural to primitive integer, like u64 without adding malachite_base as dependency? I've looked at malachite::natural::conversion::primitive_int_from_natural module, but there doesn't seem to be any...

I think it would be useful for Natural and Integer to implement [FromPyObject](https://docs.rs/pyo3/latest/pyo3/conversion/trait.FromPyObject.html) and [ToPyObject](https://docs.rs/pyo3/latest/pyo3/conversion/trait.ToPyObject.html) for easier integration with Python using PyO3. Obviously, not many people need these implementations so...

What is the reasoning behind not having add sub mul div implementations on Rational for primitive types?

Most functions do not document how they use their `Seed` internally. On one hand, these are irrelevant implementation details, but on the other hand, if they use `Seed::next`, the relationship...

Under the README tab of https://crates.io/crates/malachite-nz the second line is a link with label "docs.rs" that leads to https://docs.rs/malachite-base/latest/malachite_nz/ (which does not exist). The automatic doc link in the crates.io...

The crates.io pages for all the subcrates recommend against using them in favour of the main `malachite` crate. Given this, it seems a little strange that (unless I've missed something)...

I know it is porting algorithms from FLINT, GMP, and MPFR, but within FLINT is the Arb ball arithmetic library: https://dl.acm.org/doi/10.1145/2576802.2576828 Is Malachite designed for interval analysis algorithms, or is...