Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b3a711

Browse files
committedSep 6, 2023
Use flint/ for arb headers
1 parent ddfafbd commit 6b3a711

19 files changed

+19
-19
lines changed
 

‎src/flint/flintlib/acb.pxd

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

‎src/flint/flintlib/arb_fmpz_poly.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from flint.flintlib.acb cimport acb_t, acb_ptr
33
from flint.flintlib.fmpz_poly cimport fmpz_poly_t
44
from flint._flint cimport ulong
55

6-
cdef extern from "arb_fmpz_poly.h":
6+
cdef extern from "flint/arb_fmpz_poly.h":
77
void arb_fmpz_poly_evaluate_arb(arb_t res, const fmpz_poly_t poly, const arb_t x, long prec)
88
void arb_fmpz_poly_evaluate_acb(acb_t res, const fmpz_poly_t poly, const acb_t x, long prec)
99
void arb_fmpz_poly_complex_roots(acb_ptr roots, const fmpz_poly_t poly, int flags, long prec)

‎src/flint/flintlib/arb_hypgeom.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from flint.flintlib.arb_poly cimport arb_poly_t
33
from flint.flintlib.fmpz cimport fmpz_t
44
from flint._flint cimport ulong
55

6-
cdef extern from "arb_hypgeom.h":
6+
cdef extern from "flint/arb_hypgeom.h":
77
void arb_hypgeom_pfq(arb_t res, arb_srcptr a, long p, arb_srcptr b, long q, const arb_t z, int regularized, long prec)
88
void arb_hypgeom_0f1(arb_t res, const arb_t a, const arb_t z, int regularized, long prec)
99
void arb_hypgeom_m(arb_t res, const arb_t a, const arb_t b, const arb_t z, int regularized, long prec)

‎src/flint/flintlib/arb_mat.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from flint.flintlib.fmpz cimport fmpz_t
77
from flint.flintlib.arb cimport arb_t
88
from flint.flintlib.arb_poly cimport arb_poly_t
99

10-
cdef extern from "arb_mat.h":
10+
cdef extern from "flint/arb_mat.h":
1111
ctypedef struct arb_mat_struct:
1212
arb_ptr entries
1313
long r

‎src/flint/flintlib/arb_poly.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from flint.flintlib.fmpz_poly cimport fmpz_poly_t
44
from flint.flintlib.fmpq_poly cimport fmpq_poly_t
55
from flint.flintlib.acb cimport acb_t
66

7-
cdef extern from "arb_poly.h":
7+
cdef extern from "flint/arb_poly.h":
88
ctypedef struct arb_poly_struct:
99
arb_ptr coeffs
1010
long length

‎src/flint/flintlib/arf.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from flint._flint cimport mp_limb_t, ulong, flint_rand_t
33
from flint.flintlib.fmpq cimport fmpq_t
44
from flint.flintlib.mag cimport mag_t
55

6-
cdef extern from "arf.h":
6+
cdef extern from "flint/arf.h":
77
ctypedef struct arf_struct:
88
fmpz_struct exp
99
long size

‎src/flint/flintlib/bernoulli.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from flint._flint cimport ulong
22
from flint.flintlib.fmpq cimport fmpq_t
33

4-
cdef extern from "bernoulli.h":
4+
cdef extern from "flint/bernoulli.h":
55
void bernoulli_fmpq_ui(fmpq_t, ulong)
66
void bernoulli_cache_compute(long n)

‎src/flint/flintlib/dirichlet.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from flint._flint cimport ulong
22
from flint.flintlib.nmod_vec cimport nmod_t
33

4-
cdef extern from "dirichlet.h":
4+
cdef extern from "flint/dirichlet.h":
55
ctypedef struct dirichlet_group_struct:
66
ulong q
77
ulong q_even

‎src/flint/flintlib/mag.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from flint._flint cimport ulong, mp_limb_t
22
from flint.flintlib.fmpz cimport fmpz_struct
33

4-
cdef extern from "mag.h":
4+
cdef extern from "flint/mag.h":
55
ctypedef struct mag_struct:
66
fmpz_struct exp
77
mp_limb_t man

‎src/flint/flintlib/partitions.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from flint.flintlib.fmpz cimport fmpz_t
22

3-
cdef extern from "partitions.h":
3+
cdef extern from "flint/partitions.h":
44
void partitions_fmpz_fmpz(fmpz_t, const fmpz_t, int)

0 commit comments

Comments
 (0)
Please sign in to comment.