26 releases
0.4.16 | Sep 5, 2024 |
---|---|
0.4.14 | Jun 22, 2024 |
0.4.5 | Feb 12, 2024 |
0.4.4 | Oct 29, 2023 |
0.2.5 | Jul 18, 2022 |
#478 in Math
86,668 downloads per month
Used in 22 crates
(5 directly)
12MB
236K
SLoC
Rather than using this crate directly, use the
malachite
meta-crate. It re-exports all of this crate's
public members.
In malachite-q
's doctests you will frequently see import paths beginning with
malachite_q::
. When using the malachite
crate, replace this part of the paths with
malachite::
.
The import path of the Rational
type is shortened to malachite::Rational
.
malachite-q
This crate defines
Rational
s. The name of
this crate refers to the mathematical symbol for rational numbers, ℚ.
- There are many functions defined on
Rational
s. These include - The numerators and denominators of
Rational
s are stored asNatural
s, soRational
s with small numerators and denominators can be stored entirely on the stack. - Most arithmetic involving
Rational
s requires (automatically) reducing the numerator and denominator. This is done very efficiently by using the high performance GCD and exact division algorithms implemented byNatural
s.
Demos and benchmarks
This crate comes with a bin
target that can be used for running demos and benchmarks.
- Almost all of the public functions in this crate have an associated demo. Running a demo
shows you a function's behavior on a large number of inputs. For example, to demo
Rational
addition, you can use the following command:
This command uses thecargo run --features bin_build --release -- -l 10000 -m exhaustive -d demo_rational_add
exhaustive
mode, which generates every possible input, generally starting with the simplest input and progressing to more complex ones. Another mode israndom
. The-l
flag specifies how many inputs should be generated. - You can use a similar command to run benchmarks. The following command benchmarks various
addition algorithms:
or GCD implementations of other libraries:cargo run --features bin_build --release -- -l 1000000 -m random -b \ benchmark_rational_add_algorithms -o gcd-bench.gp
This creates a file called gcd-bench.gp. You can use gnuplot to create an SVG from it like so:cargo run --features bin_build --release -- -l 1000000 -m random -b \ benchmark_rational_add_assign_library_comparison -o gcd-bench.gp
gnuplot -e "set terminal svg; l \"gcd-bench.gp\"" > gcd-bench.svg
The list of available demos and benchmarks is not documented anywhere; you must find them by
browsing through
bin_util/demo_and_bench
.
Features
32_bit_limbs
: Sets the type ofLimb
tou32
instead of the default,u64
.random
: This feature provides some functions for randomly generating values. It is off by default to avoid pulling in some extra dependencies.enable_serde
: Enables serialization and deserialization using serde.test_build
: A large proportion of the code in this crate is only used for testing. For a typical user, building this code would result in an unnecessarily long compilation time and an unnecessarily large binary. My solution is to only build this code when thetest_build
feature is enabled. If you want to run unit tests, you must enabletest_build
. However, doctests don't require it, since they only test the public interface. Enabling this feature also enablesrandom
.bin_build
: This feature is used to build the code for demos and benchmarks, which also takes a long time to build. Enabling this feature also enablestest_build
andrandom
.
Malachite is developed by Mikhail Hogrefe. Thanks to b4D8, florian1345, konstin, Rowan Hart, YunWon Jeong, Park Joon-Kyu, Antonio Mamić, OliverNChalk, and shekohex for additional contributions.
Copyright © 2024 Mikhail Hogrefe
Dependencies
~2–12MB
~150K SLoC