gkquad 0.0.4

Numerical integration library for Rust
1
2
3
4
5
6
7
8
9
#[cfg(all(feature = "simd", target_feature = "avx"))]
mod avx;
#[cfg(all(feature = "simd", target_feature = "avx"))]
pub use avx::qk;

#[cfg(not(all(feature = "simd", target_feature = "avx")))]
mod naive;
#[cfg(not(all(feature = "simd", target_feature = "avx")))]
pub use naive::qk;