pxfm/bessel/mod.rs
1/*
2 * // Copyright (c) Radzivon Bartoshyk 7/2025. All rights reserved.
3 * //
4 * // Redistribution and use in source and binary forms, with or without modification,
5 * // are permitted provided that the following conditions are met:
6 * //
7 * // 1. Redistributions of source code must retain the above copyright notice, this
8 * // list of conditions and the following disclaimer.
9 * //
10 * // 2. Redistributions in binary form must reproduce the above copyright notice,
11 * // this list of conditions and the following disclaimer in the documentation
12 * // and/or other materials provided with the distribution.
13 * //
14 * // 3. Neither the name of the copyright holder nor the names of its
15 * // contributors may be used to endorse or promote products derived from
16 * // this software without specific prior written permission.
17 * //
18 * // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 * // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 * // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 * // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29#![deny(unreachable_pub)]
30mod alpha0;
31mod alpha1;
32mod bessel_exp;
33mod beta0;
34mod beta1;
35mod i0;
36mod i0e;
37mod i0ef;
38mod i0f;
39mod i1;
40mod i1e;
41mod i1ef;
42mod i1f;
43mod i2;
44mod i2f;
45mod j0;
46mod j0_coeffs_remez;
47mod j0_coeffs_taylor;
48mod j0f;
49mod j0f_coeffs;
50mod j1;
51mod j1_coeffs;
52mod j1_coeffs_taylor;
53mod j1f;
54mod j1f_coeffs;
55mod jincpi;
56mod jincpif;
57mod k0;
58mod k0e;
59mod k0ef;
60mod k0f;
61mod k1;
62mod k1e;
63mod k1ef;
64mod k1f;
65mod k2f;
66mod trigo_bessel;
67mod y0;
68mod y0_coeffs;
69mod y0_coeffs_taylor;
70mod y0f;
71mod y0f_coeffs;
72mod y1;
73mod y1_coeffs;
74mod y1_coeffs_taylor;
75mod y1f;
76mod y1f_coeffs;
77
78pub(crate) use bessel_exp::i0_exp;
79pub use i0::f_i0;
80pub use i0e::f_i0e;
81pub use i0ef::f_i0ef;
82pub use i0f::f_i0f;
83pub use i1::f_i1;
84pub use i1e::f_i1e;
85pub use i1ef::f_i1ef;
86pub use i1f::f_i1f;
87pub use i2::f_i2;
88pub use i2f::f_i2f;
89pub use j0::f_j0;
90pub use j0f::f_j0f;
91pub use j1::f_j1;
92pub use j1f::f_j1f;
93pub use jincpi::f_jincpi;
94pub use jincpif::f_jincpif;
95pub use k0::f_k0;
96pub use k0e::f_k0e;
97pub use k0ef::f_k0ef;
98pub use k0f::f_k0f;
99pub use k1::f_k1;
100pub use k1e::f_k1e;
101pub use k1ef::f_k1ef;
102pub use k1f::f_k1f;
103pub use k2f::f_k2f;
104pub use y0::f_y0;
105pub use y0f::f_y0f;
106pub use y1::f_y1;
107pub use y1f::f_y1f;