@@ -903,6 +903,7 @@ cdef extern from "arb.h":
903903 int arb_contains_nonpositive(const arb_t x)
904904 int arb_contains_positive(const arb_t x)
905905 int arb_contains_nonnegative(const arb_t x)
906+ int arb_contains_int(const arb_t x)
906907 void arb_get_mag_lower(mag_t z, const arb_t x)
907908 void arb_get_mag_lower_nonnegative(mag_t z, const arb_t x)
908909 void arb_get_mag(mag_t z, const arb_t x)
@@ -1168,6 +1169,7 @@ cdef extern from "acb.h":
11681169 int acb_contains_fmpz(const acb_t x, const fmpz_t y)
11691170 int acb_contains(const acb_t x, const acb_t y)
11701171 int acb_get_unique_fmpz(fmpz_t z, const acb_t x)
1172+ int acb_contains_int(const acb_t x)
11711173 void acb_set_ui(acb_t z, ulong c)
11721174 void acb_set_si(acb_t z, long c)
11731175 void acb_set_fmpz(acb_t z, const fmpz_t c)
@@ -1910,6 +1912,7 @@ cdef extern from "acb_mat.h":
19101912cdef extern from " acb_modular.h" :
19111913 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)
19121914 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)
1915+ 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)
19131916 void acb_modular_eta(acb_t r, const acb_t tau, long prec)
19141917 void acb_modular_j(acb_t r, const acb_t tau, long prec)
19151918 void acb_modular_lambda(acb_t r, const acb_t tau, long prec)
@@ -2130,6 +2133,7 @@ cdef extern from "acb_dirichlet.h":
21302133
21312134 void acb_dirichlet_l(acb_t res, const acb_t s, const dirichlet_group_t G, const dirichlet_char_t chi, long prec)
21322135 void acb_dirichlet_hardy_z(acb_ptr res, const acb_t t, const dirichlet_group_t G, const dirichlet_char_t chi, long len , long prec)
2136+ void acb_dirichlet_l_series(acb_poly_t res, const acb_poly_t s, const dirichlet_group_t G, const dirichlet_char_t chi, int deflate, long len , long prec)
21332137
21342138 void acb_dirichlet_stieltjes(acb_t res, const fmpz_t n, const acb_t a, long prec);
21352139
@@ -2138,6 +2142,7 @@ cdef extern from "acb_dirichlet.h":
21382142 void acb_dirichlet_zeta_nzeros(arb_t res, const arb_t t, long prec)
21392143 void acb_dirichlet_backlund_s(arb_t res, const arb_t t, long prec)
21402144 void acb_dirichlet_zeta_zero(acb_t res, const fmpz_t n, long prec)
2145+ void acb_dirichlet_zeta_zeros(acb_ptr res, const fmpz_t n, long len , long prec)
21412146
21422147cdef extern from " acb_elliptic.h" :
21432148 void acb_elliptic_rf(acb_t res, const acb_t x, const acb_t y, const acb_t z, int flags, long prec)
0 commit comments