UPDATE: Uses statrs instead of our own erf

This adds 2630 bytes to the wasm build and a dependency.
It is ok-ish

The idea is that it will help us greatly with the statistical functions
This commit is contained in:
Nicolás Hatcher
2025-11-20 21:33:25 +01:00
committed by Nicolás Hatcher Andrés
parent 3bb49d1e8f
commit fd34e46689
5 changed files with 24 additions and 56 deletions

View File

@@ -4,7 +4,6 @@ mod bessel_j1_y1;
mod bessel_jn_yn;
mod bessel_k;
mod bessel_util;
mod erf;
#[cfg(test)]
mod test_bessel;
@@ -13,4 +12,3 @@ pub(crate) use bessel_i::bessel_i;
pub(crate) use bessel_jn_yn::jn as bessel_j;
pub(crate) use bessel_jn_yn::yn as bessel_y;
pub(crate) use bessel_k::bessel_k;
pub(crate) use erf::erf;