Bugfix/nicolas bufixes (#491)

* UPDATE: package lock

* FIX: Add function definitions

* FIX: Small fix to get FACT working

* FIX: We only need integer FACT and FACTDOUBLE

* FIX: Make clippy happy
This commit is contained in:
Nicolás Hatcher Andrés
2025-10-30 23:24:47 +01:00
committed by GitHub
parent 7e379e24e7
commit a768bc5974
7 changed files with 35 additions and 114 deletions

View File

@@ -5,7 +5,6 @@ mod bessel_jn_yn;
mod bessel_k;
mod bessel_util;
mod erf;
mod gamma;
#[cfg(test)]
mod test_bessel;
@@ -15,4 +14,3 @@ 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;
pub use gamma::{fact, fact_double};