Cargo Features
gauss-quad has no features set by default.
[dependencies]
gauss-quad = { version = "0.2.2", features = ["serde", "rayon"] }
- serde
-
Implements the
Serialize
andDeserialize
traits from theserde
crate for the quadrature rule structs.Enables serde
- rayon
-
Enables a parallel version of the
integrate
function on the quadrature rule structs. Can speed up integration if evaluating the integrand is expensive (takes ≫100 µs).Enables rayon