Skip to content

Commit 6b3a711

Browse files
committed
Use flint/ for arb headers
1 parent ddfafbd commit 6b3a711

19 files changed

+19
-19
lines changed

src/flint/flintlib/acb.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from flint.flintlib.fmpz cimport fmpz_t
55
from flint.flintlib.arf cimport arf_t
66
from flint.flintlib.mag cimport mag_t
77

8-
cdef extern from "acb.h":
8+
cdef extern from "flint/acb.h":
99
ctypedef struct acb_struct:
1010
arb_struct real
1111
arb_struct imag

src/flint/flintlib/acb_calc.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from flint.flintlib.acb cimport acb_t, acb_ptr
22
from flint.flintlib.mag cimport mag_t
33

4-
cdef extern from "acb_calc.h":
4+
cdef extern from "flint/acb_calc.h":
55
ctypedef int (*acb_calc_func_t)(acb_ptr out, const acb_t inp, void * param, long order, long prec)
66

77
ctypedef struct acb_calc_integrate_opt_struct:

src/flint/flintlib/acb_dft.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from flint.flintlib.acb cimport acb_ptr, acb_srcptr
22

3-
cdef extern from "acb_dft.h":
3+
cdef extern from "flint/acb_dft.h":
44
void acb_dft(acb_ptr w, acb_srcptr v, long n, long prec)
55
void acb_dft_inverse(acb_ptr w, acb_srcptr v, long n, long prec)

src/flint/flintlib/acb_dirichlet.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ from flint.flintlib.fmpz cimport fmpz_t
66
from flint.flintlib.arb cimport arb_t
77

88

9-
cdef extern from "acb_dirichlet.h":
9+
cdef extern from "flint/acb_dirichlet.h":
1010
void acb_dirichlet_eta(acb_t res, const acb_t s, long prec)
1111
void acb_dirichlet_chi(acb_t res, const dirichlet_group_t G, const dirichlet_char_t chi, ulong n, long prec)
1212

src/flint/flintlib/acb_elliptic.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from flint.flintlib.acb cimport acb_t
22

3-
cdef extern from "acb_elliptic.h":
3+
cdef extern from "flint/acb_elliptic.h":
44
void acb_elliptic_rf(acb_t res, const acb_t x, const acb_t y, const acb_t z, int flags, long prec)
55
void acb_elliptic_rj(acb_t res, const acb_t x, const acb_t y, const acb_t z, const acb_t p, int flags, long prec)
66
void acb_elliptic_rg(acb_t res, const acb_t x, const acb_t y, const acb_t z, int flags, long prec)

src/flint/flintlib/acb_hypgeom.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ from flint.flintlib.acb cimport acb_t, acb_srcptr, acb_ptr
22
from flint.flintlib.acb_poly cimport acb_poly_t, acb_poly_struct
33
from flint.flintlib.mag cimport mag_t
44

5-
cdef extern from "acb_hypgeom.h":
5+
cdef extern from "flint/acb_hypgeom.h":
66
void acb_hypgeom_bessel_j(acb_t res, const acb_t nu, const acb_t z, long prec)
77
void acb_hypgeom_bessel_k(acb_t res, const acb_t nu, const acb_t z, long prec)
88
void acb_hypgeom_bessel_i(acb_t res, const acb_t nu, const acb_t z, long prec)

src/flint/flintlib/acb_mat.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from flint.flintlib.acb_poly cimport acb_poly_t
77
from flint.flintlib.arb cimport arb_t
88
from flint.flintlib.acb cimport acb_ptr, acb_struct, acb_t, acb_srcptr
99

10-
cdef extern from "acb_mat.h":
10+
cdef extern from "flint/acb_mat.h":
1111
ctypedef struct acb_mat_struct:
1212
acb_ptr entries
1313
long r

src/flint/flintlib/acb_modular.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ from flint.flintlib.acb cimport acb_t, acb_ptr
22
from flint.flintlib.acb_poly cimport acb_poly_t
33
from flint.flintlib.fmpz_poly cimport fmpz_poly_t
44

5-
cdef extern from "acb_modular.h":
5+
cdef extern from "flint/acb_modular.h":
66
void acb_modular_theta(acb_t theta1, acb_t theta2, acb_t theta3, acb_t theta4, const acb_t z, const acb_t tau, long prec)
77
void acb_modular_theta_jet(acb_ptr theta1, acb_ptr theta2, acb_ptr theta3, acb_ptr theta4, const acb_t z, const acb_t tau, long len, long prec)
88
void acb_modular_theta_series(acb_poly_t theta1, acb_poly_t theta2, acb_poly_t theta3, acb_poly_t theta4, const acb_poly_t z, const acb_t tau, long len, long prec)

src/flint/flintlib/acb_poly.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ from flint.flintlib.fmpz_poly cimport fmpz_poly_t
66
from flint.flintlib.mag cimport mag_t
77
from flint.flintlib.fmpz cimport fmpz_t
88

9-
cdef extern from "acb_poly.h":
9+
cdef extern from "flint/acb_poly.h":
1010
ctypedef struct acb_poly_struct:
1111
acb_ptr coeffs
1212
long length

src/flint/flintlib/arb.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from flint.flintlib.fmpq cimport fmpq_t
44
from flint.flintlib.arf cimport arf_struct, arf_ptr, arf_t
55
from flint.flintlib.mag cimport mag_struct, mag_ptr, mag_t
66

7-
cdef extern from "arb.h":
7+
cdef extern from "flint/arb.h":
88
ctypedef struct arb_struct:
99
arf_struct mid
1010
mag_struct rad

0 commit comments

Comments
 (0)