|
1 | | -from flint.flintlib.arb cimport arb_t, arb_srcptr, arb_ptr |
2 | | -from flint.flintlib.arb_poly cimport arb_poly_t |
3 | | -from flint.flintlib.fmpz cimport fmpz_t, fmpz_struct |
4 | | -from flint.flintlib.types.flint cimport ulong, slong |
5 | | -from flint.flintlib.mag cimport mag_t |
6 | | -from flint.flintlib.fmpq cimport fmpq_t, fmpq_struct |
| 1 | +from flint.flintlib.fmpq cimport fmpq_struct, fmpq_t |
| 2 | +from flint.flintlib.types.arb cimport arb_poly_t, arb_ptr, arb_srcptr, arb_t, mag_t |
| 3 | +from flint.flintlib.types.flint cimport fmpz_struct, slong, ulong |
| 4 | +from flint.flintlib.types.fmpz cimport fmpz_t |
| 5 | + |
| 6 | + |
7 | 7 |
|
8 | 8 | cdef extern from "flint/arb_hypgeom.h": |
9 | | -# from here on is parsed |
10 | 9 | void _arb_hypgeom_rising_coeffs_1(ulong * c, ulong k, slong n) |
11 | 10 | void _arb_hypgeom_rising_coeffs_2(ulong * c, ulong k, slong n) |
12 | 11 | void _arb_hypgeom_rising_coeffs_fmpz(fmpz_struct * c, ulong k, slong n) |
@@ -37,9 +36,9 @@ cdef extern from "flint/arb_hypgeom.h": |
37 | 36 | void arb_hypgeom_1f1(arb_t res, const arb_t a, const arb_t b, const arb_t z, int regularized, slong prec) |
38 | 37 | void arb_hypgeom_1f1_integration(arb_t res, const arb_t a, const arb_t b, const arb_t z, int regularized, slong prec) |
39 | 38 | void arb_hypgeom_u(arb_t res, const arb_t a, const arb_t b, const arb_t z, slong prec) |
40 | | - void arb_hypgeom_u_integration(arb_t res, const arb_t a, const arb_t b, const arb_t z, int regularized, slong prec) |
| 39 | + void arb_hypgeom_u_integration(arb_t res, const arb_t a, const arb_t b, const arb_t z, slong prec) |
41 | 40 | void arb_hypgeom_2f1(arb_t res, const arb_t a, const arb_t b, const arb_t c, const arb_t z, int regularized, slong prec) |
42 | | - void arb_hypgeom_2f1_integration(arb_t res, const arb_t a, const arb_t b, const arb_t z, int regularized, slong prec) |
| 41 | + void arb_hypgeom_2f1_integration(arb_t res, const arb_t a, const arb_t b, const arb_t c, const arb_t z, int regularized, slong prec) |
43 | 42 | void arb_hypgeom_erf(arb_t res, const arb_t z, slong prec) |
44 | 43 | void _arb_hypgeom_erf_series(arb_ptr res, arb_srcptr z, slong zlen, slong len, slong prec) |
45 | 44 | void arb_hypgeom_erf_series(arb_poly_t res, const arb_poly_t z, slong len, slong prec) |
@@ -126,7 +125,7 @@ cdef extern from "flint/arb_hypgeom.h": |
126 | 125 | void arb_hypgeom_legendre_p_ui_zero(arb_t res, arb_t res_prime, ulong n, const arb_t x, slong K, slong prec) |
127 | 126 | void arb_hypgeom_legendre_p_ui_one(arb_t res, arb_t res_prime, ulong n, const arb_t x, slong K, slong prec) |
128 | 127 | void arb_hypgeom_legendre_p_ui_asymp(arb_t res, arb_t res_prime, ulong n, const arb_t x, slong K, slong prec) |
129 | | - void arb_hypgeom_legendre_p_rec(arb_t res, arb_t res_prime, ulong n, const arb_t x, slong prec) |
| 128 | + void arb_hypgeom_legendre_p_ui_rec(arb_t res, arb_t res_prime, ulong n, const arb_t x, slong prec) |
130 | 129 | void arb_hypgeom_legendre_p_ui(arb_t res, arb_t res_prime, ulong n, const arb_t x, slong prec) |
131 | 130 | void arb_hypgeom_legendre_p_ui_root(arb_t res, arb_t weight, ulong n, ulong k, slong prec) |
132 | 131 | void arb_hypgeom_dilog(arb_t res, const arb_t z, slong prec) |
|
0 commit comments