pxfm 0.1.28

Fast and accurate math
Documentation
/*
 * // Copyright (c) Radzivon Bartoshyk 7/2025. All rights reserved.
 * //
 * // Redistribution and use in source and binary forms, with or without modification,
 * // are permitted provided that the following conditions are met:
 * //
 * // 1.  Redistributions of source code must retain the above copyright notice, this
 * // list of conditions and the following disclaimer.
 * //
 * // 2.  Redistributions in binary form must reproduce the above copyright notice,
 * // this list of conditions and the following disclaimer in the documentation
 * // and/or other materials provided with the distribution.
 * //
 * // 3.  Neither the name of the copyright holder nor the names of its
 * // contributors may be used to endorse or promote products derived from
 * // this software without specific prior written permission.
 * //
 * // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 * // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
#![deny(unreachable_pub)]
mod alpha0;
mod alpha1;
mod bessel_exp;
mod beta0;
mod beta1;
mod i0;
mod i0e;
mod i0ef;
mod i0f;
mod i1;
mod i1e;
mod i1ef;
mod i1f;
mod i2;
mod i2f;
mod j0;
mod j0_coeffs_remez;
mod j0_coeffs_taylor;
mod j0f;
mod j0f_coeffs;
mod j1;
mod j1_coeffs;
mod j1_coeffs_taylor;
mod j1f;
mod j1f_coeffs;
mod jincpi;
mod jincpif;
mod k0;
mod k0e;
mod k0ef;
mod k0f;
mod k1;
mod k1e;
mod k1ef;
mod k1f;
mod k2f;
mod trigo_bessel;
mod y0;
mod y0_coeffs;
mod y0_coeffs_taylor;
mod y0f;
mod y0f_coeffs;
mod y1;
mod y1_coeffs;
mod y1_coeffs_taylor;
mod y1f;
mod y1f_coeffs;

pub(crate) use bessel_exp::i0_exp;
pub use i0::f_i0;
pub use i0e::f_i0e;
pub use i0ef::f_i0ef;
pub use i0f::f_i0f;
pub use i1::f_i1;
pub use i1e::f_i1e;
pub use i1ef::f_i1ef;
pub use i1f::f_i1f;
pub use i2::f_i2;
pub use i2f::f_i2f;
pub use j0::f_j0;
pub use j0f::f_j0f;
pub use j1::f_j1;
pub use j1f::f_j1f;
pub use jincpi::f_jincpi;
pub use jincpif::f_jincpif;
pub use k0::f_k0;
pub use k0e::f_k0e;
pub use k0ef::f_k0ef;
pub use k0f::f_k0f;
pub use k1::f_k1;
pub use k1e::f_k1e;
pub use k1ef::f_k1ef;
pub use k1f::f_k1f;
pub use k2f::f_k2f;
pub use y0::f_y0;
pub use y0f::f_y0f;
pub use y1::f_y1;
pub use y1f::f_y1f;