Cargo Features

gauss-quad has no features set by default.

[dependencies]
gauss-quad = { version = "0.2.1", features = ["serde", "rayon"] }
serde

Implements the Serialize and Deserialize traits from the serde 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.

Enables rayon