passagemath-flint 10.6.1rc10__cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- passagemath_flint-10.6.1rc10.dist-info/METADATA +122 -0
- passagemath_flint-10.6.1rc10.dist-info/RECORD +361 -0
- passagemath_flint-10.6.1rc10.dist-info/WHEEL +6 -0
- passagemath_flint-10.6.1rc10.dist-info/top_level.txt +2 -0
- passagemath_flint.libs/libflint-aecb9cc5.so.21.0.0 +0 -0
- passagemath_flint.libs/libgf2x-a4cdec90.so.3.0.0 +0 -0
- passagemath_flint.libs/libgfortran-8f1e9814.so.5.0.0 +0 -0
- passagemath_flint.libs/libgmp-6e109695.so.10.5.0 +0 -0
- passagemath_flint.libs/libgsl-cda90e79.so.28.0.0 +0 -0
- passagemath_flint.libs/libmpfi-e3c25853.so.0.0.0 +0 -0
- passagemath_flint.libs/libmpfr-82690d50.so.6.2.1 +0 -0
- passagemath_flint.libs/libntl-74e7d9a3.so.44.0.1 +0 -0
- passagemath_flint.libs/libopenblasp-r0-6dcb67f9.3.29.so +0 -0
- passagemath_flint.libs/libquadmath-828275a7.so.0.0.0 +0 -0
- sage/all__sagemath_flint.py +29 -0
- sage/combinat/all__sagemath_flint.py +1 -0
- sage/combinat/posets/all__sagemath_flint.py +1 -0
- sage/combinat/posets/hasse_cython_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/combinat/posets/hasse_cython_flint.pyx +194 -0
- sage/data_structures/all__sagemath_flint.py +1 -0
- sage/data_structures/bounded_integer_sequences.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/data_structures/bounded_integer_sequences.pxd +62 -0
- sage/data_structures/bounded_integer_sequences.pyx +1418 -0
- sage/graphs/all__sagemath_flint.py +1 -0
- sage/graphs/chrompoly.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/graphs/chrompoly.pyx +555 -0
- sage/graphs/matchpoly.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/graphs/matchpoly.pyx +412 -0
- sage/libs/all__sagemath_flint.py +17 -0
- sage/libs/arb/__init__.py +1 -0
- sage/libs/arb/acb.pxd +154 -0
- sage/libs/arb/acb_calc.pxd +9 -0
- sage/libs/arb/acb_elliptic.pxd +25 -0
- sage/libs/arb/acb_hypgeom.pxd +74 -0
- sage/libs/arb/acb_mat.pxd +62 -0
- sage/libs/arb/acb_modular.pxd +17 -0
- sage/libs/arb/acb_poly.pxd +216 -0
- sage/libs/arb/arb.pxd +240 -0
- sage/libs/arb/arb_fmpz_poly.pxd +21 -0
- sage/libs/arb/arb_hypgeom.pxd +83 -0
- sage/libs/arb/arb_wrap.h +34 -0
- sage/libs/arb/arf.pxd +131 -0
- sage/libs/arb/arith.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/arb/arith.pyx +87 -0
- sage/libs/arb/bernoulli.pxd +6 -0
- sage/libs/arb/mag.pxd +77 -0
- sage/libs/arb/types.pxd +37 -0
- sage/libs/flint/__init__.py +1 -0
- sage/libs/flint/acb.pxd +270 -0
- sage/libs/flint/acb_calc.pxd +22 -0
- sage/libs/flint/acb_dft.pxd +51 -0
- sage/libs/flint/acb_dirichlet.pxd +112 -0
- sage/libs/flint/acb_elliptic.pxd +42 -0
- sage/libs/flint/acb_hypgeom.pxd +169 -0
- sage/libs/flint/acb_macros.pxd +9 -0
- sage/libs/flint/acb_mat.pxd +136 -0
- sage/libs/flint/acb_mat_macros.pxd +10 -0
- sage/libs/flint/acb_modular.pxd +62 -0
- sage/libs/flint/acb_poly.pxd +251 -0
- sage/libs/flint/acb_poly_macros.pxd +8 -0
- sage/libs/flint/acb_theta.pxd +124 -0
- sage/libs/flint/acf.pxd +32 -0
- sage/libs/flint/aprcl.pxd +84 -0
- sage/libs/flint/arb.pxd +382 -0
- sage/libs/flint/arb_calc.pxd +31 -0
- sage/libs/flint/arb_fmpz_poly.pxd +34 -0
- sage/libs/flint/arb_fpwrap.pxd +215 -0
- sage/libs/flint/arb_hypgeom.pxd +147 -0
- sage/libs/flint/arb_macros.pxd +9 -0
- sage/libs/flint/arb_mat.pxd +140 -0
- sage/libs/flint/arb_mat_macros.pxd +10 -0
- sage/libs/flint/arb_poly.pxd +237 -0
- sage/libs/flint/arf.pxd +167 -0
- sage/libs/flint/arith.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/arith.pxd +76 -0
- sage/libs/flint/arith.pyx +77 -0
- sage/libs/flint/arith_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/arith_sage.pyx +308 -0
- sage/libs/flint/bernoulli.pxd +28 -0
- sage/libs/flint/bool_mat.pxd +52 -0
- sage/libs/flint/ca.pxd +203 -0
- sage/libs/flint/ca_ext.pxd +34 -0
- sage/libs/flint/ca_field.pxd +32 -0
- sage/libs/flint/ca_mat.pxd +117 -0
- sage/libs/flint/ca_poly.pxd +104 -0
- sage/libs/flint/ca_vec.pxd +46 -0
- sage/libs/flint/calcium.pxd +27 -0
- sage/libs/flint/d_mat.pxd +39 -0
- sage/libs/flint/d_vec.pxd +32 -0
- sage/libs/flint/dirichlet.pxd +57 -0
- sage/libs/flint/dlog.pxd +53 -0
- sage/libs/flint/double_extras.pxd +24 -0
- sage/libs/flint/double_interval.pxd +36 -0
- sage/libs/flint/fexpr.pxd +104 -0
- sage/libs/flint/fexpr_builtin.pxd +20 -0
- sage/libs/flint/fft.pxd +66 -0
- sage/libs/flint/flint.pxd +36 -0
- sage/libs/flint/flint_ntl_wrap.h +35 -0
- sage/libs/flint/flint_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/flint_sage.pyx +163 -0
- sage/libs/flint/flint_wrap.h +190 -0
- sage/libs/flint/fmpq.pxd +137 -0
- sage/libs/flint/fmpq_mat.pxd +105 -0
- sage/libs/flint/fmpq_mat_macros.pxd +10 -0
- sage/libs/flint/fmpq_mpoly.pxd +165 -0
- sage/libs/flint/fmpq_mpoly_factor.pxd +30 -0
- sage/libs/flint/fmpq_poly.pxd +241 -0
- sage/libs/flint/fmpq_poly_macros.pxd +9 -0
- sage/libs/flint/fmpq_poly_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/fmpq_poly_sage.pxd +31 -0
- sage/libs/flint/fmpq_poly_sage.pyx +48 -0
- sage/libs/flint/fmpq_vec.pxd +27 -0
- sage/libs/flint/fmpz.pxd +256 -0
- sage/libs/flint/fmpz_extras.pxd +32 -0
- sage/libs/flint/fmpz_factor.pxd +42 -0
- sage/libs/flint/fmpz_factor_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/fmpz_factor_sage.pxd +4 -0
- sage/libs/flint/fmpz_factor_sage.pyx +29 -0
- sage/libs/flint/fmpz_lll.pxd +49 -0
- sage/libs/flint/fmpz_macros.pxd +8 -0
- sage/libs/flint/fmpz_mat.pxd +184 -0
- sage/libs/flint/fmpz_mat_macros.pxd +10 -0
- sage/libs/flint/fmpz_mod.pxd +46 -0
- sage/libs/flint/fmpz_mod_mat.pxd +71 -0
- sage/libs/flint/fmpz_mod_mpoly.pxd +161 -0
- sage/libs/flint/fmpz_mod_mpoly_factor.pxd +28 -0
- sage/libs/flint/fmpz_mod_poly.pxd +249 -0
- sage/libs/flint/fmpz_mod_poly_factor.pxd +46 -0
- sage/libs/flint/fmpz_mod_vec.pxd +27 -0
- sage/libs/flint/fmpz_mpoly.pxd +224 -0
- sage/libs/flint/fmpz_mpoly_factor.pxd +29 -0
- sage/libs/flint/fmpz_mpoly_q.pxd +57 -0
- sage/libs/flint/fmpz_poly.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/fmpz_poly.pxd +407 -0
- sage/libs/flint/fmpz_poly.pyx +19 -0
- sage/libs/flint/fmpz_poly_factor.pxd +33 -0
- sage/libs/flint/fmpz_poly_macros.pxd +8 -0
- sage/libs/flint/fmpz_poly_mat.pxd +71 -0
- sage/libs/flint/fmpz_poly_q.pxd +55 -0
- sage/libs/flint/fmpz_poly_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/fmpz_poly_sage.pxd +20 -0
- sage/libs/flint/fmpz_poly_sage.pyx +500 -0
- sage/libs/flint/fmpz_vec.pxd +80 -0
- sage/libs/flint/fmpzi.pxd +52 -0
- sage/libs/flint/fq.pxd +97 -0
- sage/libs/flint/fq_default.pxd +84 -0
- sage/libs/flint/fq_default_mat.pxd +70 -0
- sage/libs/flint/fq_default_poly.pxd +97 -0
- sage/libs/flint/fq_default_poly_factor.pxd +39 -0
- sage/libs/flint/fq_embed.pxd +28 -0
- sage/libs/flint/fq_mat.pxd +83 -0
- sage/libs/flint/fq_nmod.pxd +95 -0
- sage/libs/flint/fq_nmod_embed.pxd +28 -0
- sage/libs/flint/fq_nmod_mat.pxd +83 -0
- sage/libs/flint/fq_nmod_mpoly.pxd +130 -0
- sage/libs/flint/fq_nmod_mpoly_factor.pxd +28 -0
- sage/libs/flint/fq_nmod_poly.pxd +202 -0
- sage/libs/flint/fq_nmod_poly_factor.pxd +47 -0
- sage/libs/flint/fq_nmod_vec.pxd +33 -0
- sage/libs/flint/fq_poly.pxd +204 -0
- sage/libs/flint/fq_poly_factor.pxd +47 -0
- sage/libs/flint/fq_vec.pxd +33 -0
- sage/libs/flint/fq_zech.pxd +99 -0
- sage/libs/flint/fq_zech_embed.pxd +28 -0
- sage/libs/flint/fq_zech_mat.pxd +78 -0
- sage/libs/flint/fq_zech_poly.pxd +198 -0
- sage/libs/flint/fq_zech_poly_factor.pxd +47 -0
- sage/libs/flint/fq_zech_vec.pxd +33 -0
- sage/libs/flint/gr.pxd +174 -0
- sage/libs/flint/gr_generic.pxd +215 -0
- sage/libs/flint/gr_mat.pxd +161 -0
- sage/libs/flint/gr_mpoly.pxd +68 -0
- sage/libs/flint/gr_poly.pxd +276 -0
- sage/libs/flint/gr_special.pxd +237 -0
- sage/libs/flint/gr_vec.pxd +120 -0
- sage/libs/flint/hypgeom.pxd +24 -0
- sage/libs/flint/long_extras.pxd +23 -0
- sage/libs/flint/mag.pxd +131 -0
- sage/libs/flint/mag_macros.pxd +8 -0
- sage/libs/flint/mpf_mat.pxd +36 -0
- sage/libs/flint/mpf_vec.pxd +34 -0
- sage/libs/flint/mpfr_mat.pxd +27 -0
- sage/libs/flint/mpfr_vec.pxd +25 -0
- sage/libs/flint/mpn_extras.pxd +41 -0
- sage/libs/flint/mpoly.pxd +72 -0
- sage/libs/flint/nf.pxd +19 -0
- sage/libs/flint/nf_elem.pxd +74 -0
- sage/libs/flint/nmod.pxd +35 -0
- sage/libs/flint/nmod_mat.pxd +104 -0
- sage/libs/flint/nmod_mpoly.pxd +144 -0
- sage/libs/flint/nmod_mpoly_factor.pxd +28 -0
- sage/libs/flint/nmod_poly.pxd +339 -0
- sage/libs/flint/nmod_poly_factor.pxd +44 -0
- sage/libs/flint/nmod_poly_linkage.pxi +710 -0
- sage/libs/flint/nmod_poly_mat.pxd +76 -0
- sage/libs/flint/nmod_vec.pxd +40 -0
- sage/libs/flint/ntl_interface.pxd +17 -0
- sage/libs/flint/padic.pxd +93 -0
- sage/libs/flint/padic_mat.pxd +64 -0
- sage/libs/flint/padic_poly.pxd +88 -0
- sage/libs/flint/partitions.pxd +23 -0
- sage/libs/flint/perm.pxd +26 -0
- sage/libs/flint/profiler.pxd +24 -0
- sage/libs/flint/qadic.pxd +77 -0
- sage/libs/flint/qfb.pxd +44 -0
- sage/libs/flint/qqbar.pxd +172 -0
- sage/libs/flint/qsieve.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/qsieve.pxd +41 -0
- sage/libs/flint/qsieve.pyx +21 -0
- sage/libs/flint/qsieve_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/qsieve_sage.pyx +67 -0
- sage/libs/flint/thread_pool.pxd +25 -0
- sage/libs/flint/types.pxd +2076 -0
- sage/libs/flint/ulong_extras.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/ulong_extras.pxd +141 -0
- sage/libs/flint/ulong_extras.pyx +21 -0
- sage/libs/flint/ulong_extras_sage.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/libs/flint/ulong_extras_sage.pyx +21 -0
- sage/matrix/all__sagemath_flint.py +1 -0
- sage/matrix/change_ring.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/change_ring.pyx +43 -0
- sage/matrix/matrix_complex_ball_dense.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_complex_ball_dense.pxd +14 -0
- sage/matrix/matrix_complex_ball_dense.pyx +973 -0
- sage/matrix/matrix_cyclo_dense.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_cyclo_dense.pxd +16 -0
- sage/matrix/matrix_cyclo_dense.pyx +1761 -0
- sage/matrix/matrix_integer_dense.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_integer_dense.pxd +32 -0
- sage/matrix/matrix_integer_dense.pyx +5801 -0
- sage/matrix/matrix_integer_dense_hnf.py +1294 -0
- sage/matrix/matrix_integer_dense_saturation.py +346 -0
- sage/matrix/matrix_integer_sparse.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_integer_sparse.pxd +9 -0
- sage/matrix/matrix_integer_sparse.pyx +1090 -0
- sage/matrix/matrix_rational_dense.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_rational_dense.pxd +23 -0
- sage/matrix/matrix_rational_dense.pyx +2995 -0
- sage/matrix/matrix_rational_sparse.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_rational_sparse.pxd +11 -0
- sage/matrix/matrix_rational_sparse.pyx +789 -0
- sage/matrix/misc_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/matrix/misc_flint.pyx +109 -0
- sage/modular/all__sagemath_flint.py +1 -0
- sage/modular/modform/all__sagemath_flint.py +1 -0
- sage/modular/modform/eis_series_cython.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/modular/modform/eis_series_cython.pyx +226 -0
- sage/modular/modsym/all__sagemath_flint.py +1 -0
- sage/modular/modsym/apply.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/modular/modsym/apply.pxd +6 -0
- sage/modular/modsym/apply.pyx +113 -0
- sage/modular/modsym/heilbronn.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/modular/modsym/heilbronn.pyx +966 -0
- sage/modular/pollack_stevens/all__sagemath_flint.py +1 -0
- sage/modular/pollack_stevens/dist.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/modular/pollack_stevens/dist.pxd +38 -0
- sage/modular/pollack_stevens/dist.pyx +1439 -0
- sage/quivers/algebra.py +691 -0
- sage/quivers/algebra_elements.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/quivers/algebra_elements.pxd +97 -0
- sage/quivers/algebra_elements.pxi +1324 -0
- sage/quivers/algebra_elements.pyx +1424 -0
- sage/quivers/all.py +1 -0
- sage/quivers/ar_quiver.py +917 -0
- sage/quivers/homspace.py +640 -0
- sage/quivers/morphism.py +1282 -0
- sage/quivers/path_semigroup.py +1155 -0
- sage/quivers/paths.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/quivers/paths.pxd +13 -0
- sage/quivers/paths.pyx +809 -0
- sage/quivers/representation.py +2975 -0
- sage/rings/all__sagemath_flint.py +37 -0
- sage/rings/cif.py +4 -0
- sage/rings/complex_arb.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/complex_arb.pxd +29 -0
- sage/rings/complex_arb.pyx +5176 -0
- sage/rings/complex_interval.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/complex_interval.pxd +30 -0
- sage/rings/complex_interval.pyx +2475 -0
- sage/rings/complex_interval_field.py +711 -0
- sage/rings/convert/all.py +1 -0
- sage/rings/convert/mpfi.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/convert/mpfi.pxd +6 -0
- sage/rings/convert/mpfi.pyx +576 -0
- sage/rings/factorint_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/factorint_flint.pyx +99 -0
- sage/rings/fraction_field_FpT.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/fraction_field_FpT.pxd +28 -0
- sage/rings/fraction_field_FpT.pyx +2043 -0
- sage/rings/imaginary_unit.py +5 -0
- sage/rings/monomials.py +73 -0
- sage/rings/number_field/S_unit_solver.py +2870 -0
- sage/rings/number_field/all__sagemath_flint.py +7 -0
- sage/rings/number_field/bdd_height.py +664 -0
- sage/rings/number_field/class_group.py +762 -0
- sage/rings/number_field/galois_group.py +1307 -0
- sage/rings/number_field/homset.py +612 -0
- sage/rings/number_field/maps.py +687 -0
- sage/rings/number_field/morphism.py +272 -0
- sage/rings/number_field/number_field.py +12820 -0
- sage/rings/number_field/number_field_element.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/number_field/number_field_element.pxd +59 -0
- sage/rings/number_field/number_field_element.pyx +5735 -0
- sage/rings/number_field/number_field_element_quadratic.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/number_field/number_field_element_quadratic.pxd +34 -0
- sage/rings/number_field/number_field_element_quadratic.pyx +3185 -0
- sage/rings/number_field/number_field_ideal_rel.py +925 -0
- sage/rings/number_field/number_field_morphisms.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/number_field/number_field_morphisms.pyx +781 -0
- sage/rings/number_field/number_field_rel.py +2734 -0
- sage/rings/number_field/order.py +2981 -0
- sage/rings/number_field/order_ideal.py +804 -0
- sage/rings/number_field/selmer_group.py +715 -0
- sage/rings/number_field/small_primes_of_degree_one.py +242 -0
- sage/rings/number_field/splitting_field.py +606 -0
- sage/rings/number_field/structure.py +380 -0
- sage/rings/number_field/unit_group.py +721 -0
- sage/rings/padics/all__sagemath_flint.py +3 -0
- sage/rings/polynomial/all__sagemath_flint.py +1 -0
- sage/rings/polynomial/complex_roots.py +312 -0
- sage/rings/polynomial/evaluation_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/evaluation_flint.pxd +7 -0
- sage/rings/polynomial/evaluation_flint.pyx +68 -0
- sage/rings/polynomial/hilbert.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/hilbert.pyx +602 -0
- sage/rings/polynomial/polynomial_complex_arb.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_complex_arb.pxd +7 -0
- sage/rings/polynomial/polynomial_complex_arb.pyx +963 -0
- sage/rings/polynomial/polynomial_integer_dense_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_integer_dense_flint.pxd +13 -0
- sage/rings/polynomial/polynomial_integer_dense_flint.pyx +1881 -0
- sage/rings/polynomial/polynomial_number_field.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_number_field.pyx +345 -0
- sage/rings/polynomial/polynomial_rational_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_rational_flint.pxd +20 -0
- sage/rings/polynomial/polynomial_rational_flint.pyx +2598 -0
- sage/rings/polynomial/polynomial_zmod_flint.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_zmod_flint.pxd +20 -0
- sage/rings/polynomial/polynomial_zmod_flint.pyx +1063 -0
- sage/rings/polynomial/real_roots.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/real_roots.pxd +81 -0
- sage/rings/polynomial/real_roots.pyx +4704 -0
- sage/rings/polynomial/refine_root.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/refine_root.pyx +142 -0
- sage/rings/polynomial/weil/all.py +4 -0
- sage/rings/polynomial/weil/power_sums.h +46 -0
- sage/rings/polynomial/weil/weil_polynomials.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/weil/weil_polynomials.pyx +596 -0
- sage/rings/qqbar.py +9025 -0
- sage/rings/real_arb.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/real_arb.pxd +21 -0
- sage/rings/real_arb.pyx +4065 -0
- sage/rings/real_interval_absolute.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/real_interval_absolute.pyx +1073 -0
- sage/rings/real_mpfi.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/rings/real_mpfi.pyx +5428 -0
- sage/schemes/all__sagemath_flint.py +1 -0
- sage/schemes/elliptic_curves/all__sagemath_flint.py +1 -0
- sage/schemes/elliptic_curves/descent_two_isogeny.cpython-311-x86_64-linux-gnu.so +0 -0
- sage/schemes/elliptic_curves/descent_two_isogeny.pyx +1387 -0
- sage/schemes/elliptic_curves/descent_two_isogeny_pari.pxd +5 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# Deprecated header file; use sage/libs/flint/acb_mat.pxd instead
|
3
|
+
# See https://github.com/sagemath/sage/pull/36449
|
4
|
+
|
5
|
+
from sage.libs.flint.types cimport acb_mat_struct, acb_mat_t
|
6
|
+
|
7
|
+
from sage.libs.flint.acb_mat cimport (
|
8
|
+
acb_mat_nrows,
|
9
|
+
acb_mat_ncols,
|
10
|
+
acb_mat_entry,
|
11
|
+
acb_mat_init,
|
12
|
+
acb_mat_clear,
|
13
|
+
acb_mat_allocated_bytes,
|
14
|
+
acb_mat_set,
|
15
|
+
acb_mat_printd,
|
16
|
+
acb_mat_equal,
|
17
|
+
acb_mat_overlaps,
|
18
|
+
acb_mat_contains,
|
19
|
+
acb_mat_eq,
|
20
|
+
acb_mat_ne,
|
21
|
+
acb_mat_is_real,
|
22
|
+
acb_mat_is_empty,
|
23
|
+
acb_mat_is_square,
|
24
|
+
acb_mat_zero,
|
25
|
+
acb_mat_one,
|
26
|
+
acb_mat_transpose,
|
27
|
+
acb_mat_frobenius_norm,
|
28
|
+
acb_mat_neg,
|
29
|
+
acb_mat_add,
|
30
|
+
acb_mat_sub,
|
31
|
+
acb_mat_mul,
|
32
|
+
acb_mat_mul_classical,
|
33
|
+
acb_mat_mul_threaded,
|
34
|
+
acb_mat_mul_entrywise,
|
35
|
+
acb_mat_sqr,
|
36
|
+
acb_mat_pow_ui,
|
37
|
+
acb_mat_scalar_mul_2exp_si,
|
38
|
+
acb_mat_scalar_addmul_si,
|
39
|
+
acb_mat_scalar_addmul_acb,
|
40
|
+
acb_mat_scalar_mul_si,
|
41
|
+
acb_mat_scalar_mul_acb,
|
42
|
+
acb_mat_scalar_div_si,
|
43
|
+
acb_mat_scalar_div_acb,
|
44
|
+
acb_mat_lu,
|
45
|
+
acb_mat_solve_lu_precomp,
|
46
|
+
acb_mat_solve,
|
47
|
+
acb_mat_inv,
|
48
|
+
acb_mat_det,
|
49
|
+
acb_mat_charpoly,
|
50
|
+
acb_mat_exp_taylor_sum,
|
51
|
+
acb_mat_exp,
|
52
|
+
acb_mat_trace,
|
53
|
+
acb_mat_get_mid,
|
54
|
+
acb_mat_add_error_mag,
|
55
|
+
acb_mat_approx_eig_qr,
|
56
|
+
acb_mat_eig_global_enclosure,
|
57
|
+
acb_mat_eig_enclosure_rump,
|
58
|
+
acb_mat_eig_simple_rump,
|
59
|
+
acb_mat_eig_simple_vdhoeven_mourrain,
|
60
|
+
acb_mat_eig_simple,
|
61
|
+
acb_mat_eig_multiple_rump,
|
62
|
+
acb_mat_eig_multiple)
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# Deprecated header file; use sage/libs/flint/acb_modular.pxd instead
|
3
|
+
# See https://github.com/sagemath/sage/pull/36449
|
4
|
+
|
5
|
+
from sage.libs.flint.acb_modular cimport (
|
6
|
+
acb_modular_theta,
|
7
|
+
acb_modular_j,
|
8
|
+
acb_modular_eta,
|
9
|
+
acb_modular_lambda,
|
10
|
+
acb_modular_delta,
|
11
|
+
acb_modular_eisenstein,
|
12
|
+
acb_modular_elliptic_p,
|
13
|
+
acb_modular_elliptic_p_zpx,
|
14
|
+
acb_modular_elliptic_k,
|
15
|
+
acb_modular_elliptic_k_cpx,
|
16
|
+
acb_modular_elliptic_e,
|
17
|
+
acb_modular_hilbert_class_poly)
|
@@ -0,0 +1,216 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# Deprecated header file; use sage/libs/flint/acb_poly.pxd instead
|
3
|
+
# See https://github.com/sagemath/sage/pull/36449
|
4
|
+
|
5
|
+
from sage.libs.flint.types cimport acb_poly_struct, acb_poly_t
|
6
|
+
|
7
|
+
from sage.libs.flint.acb_poly cimport (
|
8
|
+
acb_poly_init,
|
9
|
+
acb_poly_clear,
|
10
|
+
acb_poly_fit_length,
|
11
|
+
_acb_poly_set_length,
|
12
|
+
_acb_poly_normalise,
|
13
|
+
acb_poly_swap,
|
14
|
+
acb_poly_length,
|
15
|
+
acb_poly_degree,
|
16
|
+
acb_poly_is_zero,
|
17
|
+
acb_poly_is_one,
|
18
|
+
acb_poly_is_x,
|
19
|
+
acb_poly_zero,
|
20
|
+
acb_poly_one,
|
21
|
+
acb_poly_set,
|
22
|
+
acb_poly_set_round,
|
23
|
+
acb_poly_set_coeff_si,
|
24
|
+
acb_poly_set_coeff_acb,
|
25
|
+
acb_poly_get_coeff_acb,
|
26
|
+
acb_poly_get_coeff_ptr,
|
27
|
+
_acb_poly_shift_right,
|
28
|
+
acb_poly_shift_right,
|
29
|
+
_acb_poly_shift_left,
|
30
|
+
acb_poly_shift_left,
|
31
|
+
acb_poly_truncate,
|
32
|
+
acb_poly_printd,
|
33
|
+
acb_poly_fprintd,
|
34
|
+
acb_poly_randtest,
|
35
|
+
acb_poly_equal,
|
36
|
+
acb_poly_contains,
|
37
|
+
acb_poly_contains_fmpz_poly,
|
38
|
+
acb_poly_contains_fmpq_poly,
|
39
|
+
_acb_poly_overlaps,
|
40
|
+
acb_poly_overlaps,
|
41
|
+
acb_poly_get_unique_fmpz_poly,
|
42
|
+
acb_poly_is_real,
|
43
|
+
acb_poly_set_fmpz_poly,
|
44
|
+
acb_poly_set2_fmpz_poly,
|
45
|
+
acb_poly_set_arb_poly,
|
46
|
+
acb_poly_set2_arb_poly,
|
47
|
+
acb_poly_set_fmpq_poly,
|
48
|
+
acb_poly_set2_fmpq_poly,
|
49
|
+
acb_poly_set_acb,
|
50
|
+
acb_poly_set_si,
|
51
|
+
_acb_poly_majorant,
|
52
|
+
acb_poly_majorant,
|
53
|
+
_acb_poly_add,
|
54
|
+
acb_poly_add,
|
55
|
+
acb_poly_add_si,
|
56
|
+
_acb_poly_sub,
|
57
|
+
acb_poly_sub,
|
58
|
+
acb_poly_neg,
|
59
|
+
acb_poly_scalar_mul_2exp_si,
|
60
|
+
acb_poly_scalar_mul,
|
61
|
+
acb_poly_scalar_div,
|
62
|
+
_acb_poly_mullow_classical,
|
63
|
+
_acb_poly_mullow_transpose,
|
64
|
+
_acb_poly_mullow_transpose_gauss,
|
65
|
+
_acb_poly_mullow,
|
66
|
+
acb_poly_mullow_classical,
|
67
|
+
acb_poly_mullow_transpose,
|
68
|
+
acb_poly_mullow_transpose_gauss,
|
69
|
+
acb_poly_mullow,
|
70
|
+
_acb_poly_mul,
|
71
|
+
acb_poly_mul,
|
72
|
+
_acb_poly_inv_series,
|
73
|
+
acb_poly_inv_series,
|
74
|
+
_acb_poly_div_series,
|
75
|
+
acb_poly_div_series,
|
76
|
+
_acb_poly_div,
|
77
|
+
_acb_poly_rem,
|
78
|
+
_acb_poly_divrem,
|
79
|
+
acb_poly_divrem,
|
80
|
+
_acb_poly_div_root,
|
81
|
+
_acb_poly_taylor_shift,
|
82
|
+
acb_poly_taylor_shift,
|
83
|
+
_acb_poly_compose,
|
84
|
+
acb_poly_compose,
|
85
|
+
_acb_poly_compose_series,
|
86
|
+
acb_poly_compose_series,
|
87
|
+
_acb_poly_revert_series,
|
88
|
+
acb_poly_revert_series,
|
89
|
+
_acb_poly_evaluate_horner,
|
90
|
+
acb_poly_evaluate_horner,
|
91
|
+
_acb_poly_evaluate_rectangular,
|
92
|
+
acb_poly_evaluate_rectangular,
|
93
|
+
_acb_poly_evaluate,
|
94
|
+
acb_poly_evaluate,
|
95
|
+
_acb_poly_evaluate2_horner,
|
96
|
+
acb_poly_evaluate2_horner,
|
97
|
+
_acb_poly_evaluate2_rectangular,
|
98
|
+
acb_poly_evaluate2_rectangular,
|
99
|
+
_acb_poly_evaluate2,
|
100
|
+
acb_poly_evaluate2,
|
101
|
+
_acb_poly_product_roots,
|
102
|
+
acb_poly_product_roots,
|
103
|
+
_acb_poly_tree_alloc,
|
104
|
+
_acb_poly_tree_free,
|
105
|
+
_acb_poly_tree_build,
|
106
|
+
_acb_poly_evaluate_vec_iter,
|
107
|
+
acb_poly_evaluate_vec_iter,
|
108
|
+
_acb_poly_evaluate_vec_fast_precomp,
|
109
|
+
_acb_poly_evaluate_vec_fast,
|
110
|
+
acb_poly_evaluate_vec_fast,
|
111
|
+
_acb_poly_interpolate_newton,
|
112
|
+
acb_poly_interpolate_newton,
|
113
|
+
_acb_poly_interpolate_barycentric,
|
114
|
+
acb_poly_interpolate_barycentric,
|
115
|
+
_acb_poly_interpolation_weights,
|
116
|
+
_acb_poly_interpolate_fast_precomp,
|
117
|
+
_acb_poly_interpolate_fast,
|
118
|
+
acb_poly_interpolate_fast,
|
119
|
+
_acb_poly_derivative,
|
120
|
+
acb_poly_derivative,
|
121
|
+
_acb_poly_integral,
|
122
|
+
acb_poly_integral,
|
123
|
+
_acb_poly_pow_ui_trunc_binexp,
|
124
|
+
acb_poly_pow_ui_trunc_binexp,
|
125
|
+
_acb_poly_pow_ui,
|
126
|
+
acb_poly_pow_ui,
|
127
|
+
_acb_poly_pow_series,
|
128
|
+
acb_poly_pow_series,
|
129
|
+
_acb_poly_pow_acb_series,
|
130
|
+
acb_poly_pow_acb_series,
|
131
|
+
_acb_poly_sqrt_series,
|
132
|
+
acb_poly_sqrt_series,
|
133
|
+
_acb_poly_rsqrt_series,
|
134
|
+
acb_poly_rsqrt_series,
|
135
|
+
_acb_poly_log_series,
|
136
|
+
acb_poly_log_series,
|
137
|
+
_acb_poly_atan_series,
|
138
|
+
acb_poly_atan_series,
|
139
|
+
_acb_poly_exp_series_basecase,
|
140
|
+
acb_poly_exp_series_basecase,
|
141
|
+
_acb_poly_exp_series,
|
142
|
+
acb_poly_exp_series,
|
143
|
+
_acb_poly_sin_cos_series,
|
144
|
+
acb_poly_sin_cos_series,
|
145
|
+
_acb_poly_sin_series,
|
146
|
+
acb_poly_sin_series,
|
147
|
+
_acb_poly_cos_series,
|
148
|
+
acb_poly_cos_series,
|
149
|
+
_acb_poly_tan_series,
|
150
|
+
acb_poly_tan_series,
|
151
|
+
_acb_poly_sin_cos_pi_series,
|
152
|
+
acb_poly_sin_cos_pi_series,
|
153
|
+
_acb_poly_sin_pi_series,
|
154
|
+
acb_poly_sin_pi_series,
|
155
|
+
_acb_poly_cos_pi_series,
|
156
|
+
acb_poly_cos_pi_series,
|
157
|
+
_acb_poly_cot_pi_series,
|
158
|
+
acb_poly_cot_pi_series,
|
159
|
+
_acb_poly_sinh_cosh_series_basecase,
|
160
|
+
acb_poly_sinh_cosh_series_basecase,
|
161
|
+
_acb_poly_sinh_cosh_series_exponential,
|
162
|
+
acb_poly_sinh_cosh_series_exponential,
|
163
|
+
_acb_poly_sinh_cosh_series,
|
164
|
+
acb_poly_sinh_cosh_series,
|
165
|
+
_acb_poly_sinh_series,
|
166
|
+
acb_poly_sinh_series,
|
167
|
+
_acb_poly_cosh_series,
|
168
|
+
acb_poly_cosh_series,
|
169
|
+
_acb_poly_sinc_series,
|
170
|
+
acb_poly_sinc_series,
|
171
|
+
_acb_poly_lambertw_series,
|
172
|
+
acb_poly_lambertw_series,
|
173
|
+
_acb_poly_gamma_series,
|
174
|
+
acb_poly_gamma_series,
|
175
|
+
_acb_poly_rgamma_series,
|
176
|
+
acb_poly_rgamma_series,
|
177
|
+
_acb_poly_lgamma_series,
|
178
|
+
acb_poly_lgamma_series,
|
179
|
+
_acb_poly_digamma_series,
|
180
|
+
acb_poly_digamma_series,
|
181
|
+
_acb_poly_rising_ui_series,
|
182
|
+
acb_poly_rising_ui_series,
|
183
|
+
_acb_poly_powsum_series_naive,
|
184
|
+
_acb_poly_powsum_series_naive_threaded,
|
185
|
+
_acb_poly_powsum_one_series_sieved,
|
186
|
+
_acb_poly_zeta_em_choose_param,
|
187
|
+
_acb_poly_zeta_em_bound1,
|
188
|
+
_acb_poly_zeta_em_bound,
|
189
|
+
_acb_poly_zeta_em_tail_naive,
|
190
|
+
_acb_poly_zeta_em_tail_bsplit,
|
191
|
+
_acb_poly_zeta_em_sum,
|
192
|
+
_acb_poly_zeta_cpx_series,
|
193
|
+
_acb_poly_zeta_series,
|
194
|
+
acb_poly_zeta_series,
|
195
|
+
_acb_poly_polylog_cpx_small,
|
196
|
+
_acb_poly_polylog_cpx_zeta,
|
197
|
+
_acb_poly_polylog_cpx,
|
198
|
+
_acb_poly_polylog_series,
|
199
|
+
acb_poly_polylog_series,
|
200
|
+
_acb_poly_erf_series,
|
201
|
+
acb_poly_erf_series,
|
202
|
+
_acb_poly_agm1_series,
|
203
|
+
acb_poly_agm1_series,
|
204
|
+
_acb_poly_elliptic_k_series,
|
205
|
+
acb_poly_elliptic_k_series,
|
206
|
+
_acb_poly_elliptic_p_series,
|
207
|
+
acb_poly_elliptic_p_series,
|
208
|
+
_acb_poly_root_bound_fujiwara,
|
209
|
+
acb_poly_root_bound_fujiwara,
|
210
|
+
_acb_poly_root_inclusion,
|
211
|
+
_acb_poly_validate_roots,
|
212
|
+
_acb_poly_refine_roots_durand_kerner,
|
213
|
+
_acb_poly_find_roots,
|
214
|
+
acb_poly_find_roots,
|
215
|
+
_acb_poly_validate_real_roots,
|
216
|
+
acb_poly_validate_real_roots)
|
sage/libs/arb/arb.pxd
ADDED
@@ -0,0 +1,240 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# Deprecated header file; use sage/libs/flint/arb.pxd instead
|
3
|
+
# See https://github.com/sagemath/sage/pull/36449
|
4
|
+
|
5
|
+
from sage.libs.flint.types cimport arb_struct, arb_t, arb_ptr, arb_srcptr
|
6
|
+
|
7
|
+
from sage.libs.flint.arb cimport (
|
8
|
+
arb_midref,
|
9
|
+
arb_radref,
|
10
|
+
arb_init,
|
11
|
+
arb_clear,
|
12
|
+
arb_swap,
|
13
|
+
arb_set,
|
14
|
+
arb_set_arf,
|
15
|
+
arb_set_si,
|
16
|
+
arb_set_ui,
|
17
|
+
arb_set_fmpz,
|
18
|
+
arb_set_fmpz_2exp,
|
19
|
+
arb_set_round,
|
20
|
+
arb_set_round_fmpz,
|
21
|
+
arb_set_round_fmpz_2exp,
|
22
|
+
arb_set_fmpq,
|
23
|
+
arb_set_str,
|
24
|
+
arb_get_str,
|
25
|
+
arb_zero,
|
26
|
+
arb_one,
|
27
|
+
arb_dump_str,
|
28
|
+
arb_pos_inf,
|
29
|
+
arb_neg_inf,
|
30
|
+
arb_zero_pm_inf,
|
31
|
+
arb_indeterminate,
|
32
|
+
arb_print,
|
33
|
+
arb_printd,
|
34
|
+
arb_printn,
|
35
|
+
arb_load_str,
|
36
|
+
arb_randtest,
|
37
|
+
arb_randtest_exact,
|
38
|
+
arb_randtest_precise,
|
39
|
+
arb_randtest_wide,
|
40
|
+
arb_randtest_special,
|
41
|
+
arb_get_rand_fmpq,
|
42
|
+
arb_add_error_arf,
|
43
|
+
arb_add_error_2exp_si,
|
44
|
+
arb_add_error_2exp_fmpz,
|
45
|
+
arb_add_error,
|
46
|
+
arb_union,
|
47
|
+
arb_get_abs_ubound_arf,
|
48
|
+
arb_get_abs_lbound_arf,
|
49
|
+
arb_get_mag,
|
50
|
+
arb_get_mag_lower,
|
51
|
+
arb_get_mag_lower_nonnegative,
|
52
|
+
arb_get_interval_fmpz_2exp,
|
53
|
+
arb_set_interval_arf,
|
54
|
+
arb_set_interval_mpfr,
|
55
|
+
arb_get_interval_arf,
|
56
|
+
arb_get_interval_mpfr,
|
57
|
+
arb_rel_error_bits,
|
58
|
+
arb_rel_accuracy_bits,
|
59
|
+
arb_bits,
|
60
|
+
arb_trim,
|
61
|
+
arb_get_unique_fmpz,
|
62
|
+
arb_floor,
|
63
|
+
arb_ceil,
|
64
|
+
arb_get_fmpz_mid_rad_10exp,
|
65
|
+
arb_is_zero,
|
66
|
+
arb_is_nonzero,
|
67
|
+
arb_is_one,
|
68
|
+
arb_is_finite,
|
69
|
+
arb_is_exact,
|
70
|
+
arb_is_int,
|
71
|
+
arb_equal,
|
72
|
+
arb_is_positive,
|
73
|
+
arb_is_nonnegative,
|
74
|
+
arb_is_negative,
|
75
|
+
arb_is_nonpositive,
|
76
|
+
arb_overlaps,
|
77
|
+
arb_contains_arf,
|
78
|
+
arb_contains_fmpq,
|
79
|
+
arb_contains_fmpz,
|
80
|
+
arb_contains_si,
|
81
|
+
arb_contains_mpfr,
|
82
|
+
arb_contains,
|
83
|
+
arb_contains_zero,
|
84
|
+
arb_contains_negative,
|
85
|
+
arb_contains_nonpositive,
|
86
|
+
arb_contains_positive,
|
87
|
+
arb_contains_nonnegative,
|
88
|
+
arb_contains_int,
|
89
|
+
arb_eq,
|
90
|
+
arb_ne,
|
91
|
+
arb_le,
|
92
|
+
arb_ge,
|
93
|
+
arb_lt,
|
94
|
+
arb_gt,
|
95
|
+
arb_neg,
|
96
|
+
arb_neg_round,
|
97
|
+
arb_abs,
|
98
|
+
arb_min,
|
99
|
+
arb_max,
|
100
|
+
arb_add,
|
101
|
+
arb_add_arf,
|
102
|
+
arb_add_ui,
|
103
|
+
arb_add_si,
|
104
|
+
arb_add_fmpz,
|
105
|
+
arb_add_fmpz_2exp,
|
106
|
+
arb_sub,
|
107
|
+
arb_sub_arf,
|
108
|
+
arb_sub_ui,
|
109
|
+
arb_sub_si,
|
110
|
+
arb_sub_fmpz,
|
111
|
+
arb_mul,
|
112
|
+
arb_mul_arf,
|
113
|
+
arb_mul_si,
|
114
|
+
arb_mul_ui,
|
115
|
+
arb_mul_fmpz,
|
116
|
+
arb_mul_2exp_si,
|
117
|
+
arb_mul_2exp_fmpz,
|
118
|
+
arb_addmul,
|
119
|
+
arb_addmul_arf,
|
120
|
+
arb_addmul_si,
|
121
|
+
arb_addmul_ui,
|
122
|
+
arb_addmul_fmpz,
|
123
|
+
arb_submul,
|
124
|
+
arb_submul_arf,
|
125
|
+
arb_submul_si,
|
126
|
+
arb_submul_ui,
|
127
|
+
arb_submul_fmpz,
|
128
|
+
arb_inv,
|
129
|
+
arb_div,
|
130
|
+
arb_div_arf,
|
131
|
+
arb_div_si,
|
132
|
+
arb_div_ui,
|
133
|
+
arb_div_fmpz,
|
134
|
+
arb_fmpz_div_fmpz,
|
135
|
+
arb_ui_div,
|
136
|
+
arb_div_2expm1_ui,
|
137
|
+
arb_sqrt,
|
138
|
+
arb_sqrt_arf,
|
139
|
+
arb_sqrt_fmpz,
|
140
|
+
arb_sqrt_ui,
|
141
|
+
arb_sqrtpos,
|
142
|
+
arb_hypot,
|
143
|
+
arb_rsqrt,
|
144
|
+
arb_rsqrt_ui,
|
145
|
+
arb_sqrt1pm1,
|
146
|
+
arb_root,
|
147
|
+
arb_pow_fmpz_binexp,
|
148
|
+
arb_pow_fmpz,
|
149
|
+
arb_pow_ui,
|
150
|
+
arb_ui_pow_ui,
|
151
|
+
arb_si_pow_ui,
|
152
|
+
arb_pow_fmpq,
|
153
|
+
arb_pow,
|
154
|
+
arb_log_ui,
|
155
|
+
arb_log_fmpz,
|
156
|
+
arb_log_arf,
|
157
|
+
arb_log,
|
158
|
+
arb_log_ui_from_prev,
|
159
|
+
arb_log1p,
|
160
|
+
arb_exp,
|
161
|
+
arb_expm1,
|
162
|
+
arb_sin,
|
163
|
+
arb_cos,
|
164
|
+
arb_sin_cos,
|
165
|
+
arb_sin_pi,
|
166
|
+
arb_cos_pi,
|
167
|
+
arb_sin_cos_pi,
|
168
|
+
arb_tan,
|
169
|
+
arb_cot,
|
170
|
+
arb_sin_cos_pi_fmpq,
|
171
|
+
arb_sin_pi_fmpq,
|
172
|
+
arb_cos_pi_fmpq,
|
173
|
+
arb_tan_pi,
|
174
|
+
arb_cot_pi,
|
175
|
+
arb_sec,
|
176
|
+
arb_csc,
|
177
|
+
arb_atan_arf,
|
178
|
+
arb_atan,
|
179
|
+
arb_atan2,
|
180
|
+
arb_asin,
|
181
|
+
arb_acos,
|
182
|
+
arb_sinh,
|
183
|
+
arb_cosh,
|
184
|
+
arb_sinh_cosh,
|
185
|
+
arb_tanh,
|
186
|
+
arb_coth,
|
187
|
+
arb_sech,
|
188
|
+
arb_csch,
|
189
|
+
arb_asinh,
|
190
|
+
arb_acosh,
|
191
|
+
arb_atanh,
|
192
|
+
arb_const_pi,
|
193
|
+
arb_const_sqrt_pi,
|
194
|
+
arb_const_log_sqrt2pi,
|
195
|
+
arb_const_log2,
|
196
|
+
arb_const_log10,
|
197
|
+
arb_const_euler,
|
198
|
+
arb_const_catalan,
|
199
|
+
arb_const_e,
|
200
|
+
arb_const_khinchin,
|
201
|
+
arb_const_glaisher,
|
202
|
+
arb_const_apery,
|
203
|
+
arb_lambertw,
|
204
|
+
arb_rising_ui,
|
205
|
+
arb_rising,
|
206
|
+
arb_rising_fmpq_ui,
|
207
|
+
arb_fac_ui,
|
208
|
+
arb_bin_ui,
|
209
|
+
arb_bin_uiui,
|
210
|
+
arb_gamma,
|
211
|
+
arb_gamma_fmpq,
|
212
|
+
arb_gamma_fmpz,
|
213
|
+
arb_lgamma,
|
214
|
+
arb_rgamma,
|
215
|
+
arb_digamma,
|
216
|
+
arb_zeta_ui_vec_borwein,
|
217
|
+
arb_zeta_ui_asymp,
|
218
|
+
arb_zeta_ui_euler_product,
|
219
|
+
arb_zeta_ui_bernoulli,
|
220
|
+
arb_zeta_ui_borwein_bsplit,
|
221
|
+
arb_zeta_ui_vec,
|
222
|
+
arb_zeta_ui_vec_even,
|
223
|
+
arb_zeta_ui_vec_odd,
|
224
|
+
arb_zeta_ui,
|
225
|
+
arb_zeta,
|
226
|
+
arb_hurwitz_zeta,
|
227
|
+
arb_bernoulli_ui,
|
228
|
+
arb_bernoulli_ui_zeta,
|
229
|
+
arb_polylog,
|
230
|
+
arb_polylog_si,
|
231
|
+
arb_fib_fmpz,
|
232
|
+
arb_fib_ui,
|
233
|
+
arb_agm,
|
234
|
+
arb_chebyshev_t_ui,
|
235
|
+
arb_chebyshev_u_ui,
|
236
|
+
arb_chebyshev_t2_ui,
|
237
|
+
arb_chebyshev_u2_ui,
|
238
|
+
arb_bell_fmpz,
|
239
|
+
arb_bell_ui,
|
240
|
+
arb_doublefac_ui)
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# Deprecated header file; use sage/libs/flint/arb_fmpz_poly.pxd instead
|
3
|
+
# See https://github.com/sagemath/sage/pull/36449
|
4
|
+
|
5
|
+
from sage.libs.flint.arb_fmpz_poly cimport (
|
6
|
+
_arb_fmpz_poly_evaluate_arb_horner,
|
7
|
+
arb_fmpz_poly_evaluate_arb_horner,
|
8
|
+
_arb_fmpz_poly_evaluate_arb_rectangular,
|
9
|
+
arb_fmpz_poly_evaluate_arb_rectangular,
|
10
|
+
_arb_fmpz_poly_evaluate_arb,
|
11
|
+
arb_fmpz_poly_evaluate_arb,
|
12
|
+
_arb_fmpz_poly_evaluate_acb_horner,
|
13
|
+
arb_fmpz_poly_evaluate_acb_horner,
|
14
|
+
_arb_fmpz_poly_evaluate_acb_rectangular,
|
15
|
+
arb_fmpz_poly_evaluate_acb_rectangular,
|
16
|
+
_arb_fmpz_poly_evaluate_acb,
|
17
|
+
arb_fmpz_poly_evaluate_acb,
|
18
|
+
arb_fmpz_poly_deflation,
|
19
|
+
arb_fmpz_poly_deflate,
|
20
|
+
arb_fmpz_poly_complex_roots,
|
21
|
+
arb_fmpz_poly_gauss_period_minpoly)
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# Deprecated header file; use sage/libs/flint/arb_hypgeom.pxd instead
|
3
|
+
# See https://github.com/sagemath/sage/pull/36449
|
4
|
+
|
5
|
+
from sage.libs.flint.arb_hypgeom cimport (
|
6
|
+
arb_hypgeom_pfq,
|
7
|
+
arb_hypgeom_0f1,
|
8
|
+
arb_hypgeom_m,
|
9
|
+
arb_hypgeom_1f1,
|
10
|
+
arb_hypgeom_u,
|
11
|
+
arb_hypgeom_2f1,
|
12
|
+
arb_hypgeom_erf,
|
13
|
+
_arb_hypgeom_erf_series,
|
14
|
+
arb_hypgeom_erf_series,
|
15
|
+
arb_hypgeom_erfc,
|
16
|
+
_arb_hypgeom_erfc_series,
|
17
|
+
arb_hypgeom_erfc_series,
|
18
|
+
arb_hypgeom_erfi,
|
19
|
+
_arb_hypgeom_erfi_series,
|
20
|
+
arb_hypgeom_erfi_series,
|
21
|
+
arb_hypgeom_fresnel,
|
22
|
+
_arb_hypgeom_fresnel_series,
|
23
|
+
arb_hypgeom_fresnel_series,
|
24
|
+
arb_hypgeom_gamma_upper,
|
25
|
+
_arb_hypgeom_gamma_upper_series,
|
26
|
+
arb_hypgeom_gamma_upper_series,
|
27
|
+
arb_hypgeom_gamma_lower,
|
28
|
+
_arb_hypgeom_gamma_lower_series,
|
29
|
+
arb_hypgeom_gamma_lower_series,
|
30
|
+
arb_hypgeom_beta_lower,
|
31
|
+
_arb_hypgeom_beta_lower_series,
|
32
|
+
arb_hypgeom_beta_lower_series,
|
33
|
+
arb_hypgeom_expint,
|
34
|
+
arb_hypgeom_ei,
|
35
|
+
_arb_hypgeom_ei_series,
|
36
|
+
arb_hypgeom_ei_series,
|
37
|
+
arb_hypgeom_si,
|
38
|
+
_arb_hypgeom_si_series,
|
39
|
+
arb_hypgeom_si_series,
|
40
|
+
arb_hypgeom_ci,
|
41
|
+
_arb_hypgeom_ci_series,
|
42
|
+
arb_hypgeom_ci_series,
|
43
|
+
arb_hypgeom_shi,
|
44
|
+
_arb_hypgeom_shi_series,
|
45
|
+
arb_hypgeom_shi_series,
|
46
|
+
arb_hypgeom_chi,
|
47
|
+
_arb_hypgeom_chi_series,
|
48
|
+
arb_hypgeom_chi_series,
|
49
|
+
arb_hypgeom_li,
|
50
|
+
_arb_hypgeom_li_series,
|
51
|
+
arb_hypgeom_li_series,
|
52
|
+
arb_hypgeom_bessel_j,
|
53
|
+
arb_hypgeom_bessel_y,
|
54
|
+
arb_hypgeom_bessel_jy,
|
55
|
+
arb_hypgeom_bessel_i,
|
56
|
+
arb_hypgeom_bessel_i_scaled,
|
57
|
+
arb_hypgeom_bessel_k,
|
58
|
+
arb_hypgeom_bessel_k_scaled,
|
59
|
+
arb_hypgeom_airy,
|
60
|
+
arb_hypgeom_airy_jet,
|
61
|
+
_arb_hypgeom_airy_series,
|
62
|
+
arb_hypgeom_airy_series,
|
63
|
+
arb_hypgeom_airy_zero,
|
64
|
+
arb_hypgeom_coulomb,
|
65
|
+
arb_hypgeom_coulomb_jet,
|
66
|
+
_arb_hypgeom_coulomb_series,
|
67
|
+
arb_hypgeom_coulomb_series,
|
68
|
+
arb_hypgeom_chebyshev_t,
|
69
|
+
arb_hypgeom_chebyshev_u,
|
70
|
+
arb_hypgeom_jacobi_p,
|
71
|
+
arb_hypgeom_gegenbauer_c,
|
72
|
+
arb_hypgeom_laguerre_l,
|
73
|
+
arb_hypgeom_hermite_h,
|
74
|
+
arb_hypgeom_legendre_p,
|
75
|
+
arb_hypgeom_legendre_q,
|
76
|
+
arb_hypgeom_legendre_p_ui_deriv_bound,
|
77
|
+
arb_hypgeom_legendre_p_ui_zero,
|
78
|
+
arb_hypgeom_legendre_p_ui_one,
|
79
|
+
arb_hypgeom_legendre_p_ui_asymp,
|
80
|
+
arb_hypgeom_legendre_p_ui,
|
81
|
+
arb_hypgeom_legendre_p_ui_root,
|
82
|
+
arb_hypgeom_dilog,
|
83
|
+
arb_hypgeom_central_bin_ui)
|
sage/libs/arb/arb_wrap.h
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
/* sage_setup: distribution = sagemath-flint
|
2
|
+
*/
|
3
|
+
#ifndef SAGE_ARB_WRAP_H
|
4
|
+
#define SAGE_ARB_WRAP_H
|
5
|
+
/*
|
6
|
+
* Similar to flint_wrap.h but specifically for wrapping the headers supplied
|
7
|
+
* by arb, most of which rely on flint's ulong and slong defines.
|
8
|
+
*/
|
9
|
+
|
10
|
+
#include <mpfr.h>
|
11
|
+
|
12
|
+
#undef ulong
|
13
|
+
#undef slong
|
14
|
+
|
15
|
+
#define ulong mp_limb_t
|
16
|
+
#define slong mp_limb_signed_t
|
17
|
+
|
18
|
+
#include <flint/acb.h>
|
19
|
+
#include <flint/acb_calc.h>
|
20
|
+
#include <flint/acb_elliptic.h>
|
21
|
+
#include <flint/acb_hypgeom.h>
|
22
|
+
#include <flint/acb_mat.h>
|
23
|
+
#include <flint/acb_modular.h>
|
24
|
+
#include <flint/acb_poly.h>
|
25
|
+
#include <flint/arb.h>
|
26
|
+
#include <flint/arb_fmpz_poly.h>
|
27
|
+
#include <flint/arb_hypgeom.h>
|
28
|
+
#include <flint/arf.h>
|
29
|
+
#include <flint/bernoulli.h>
|
30
|
+
#include <flint/mag.h>
|
31
|
+
|
32
|
+
#undef ulong
|
33
|
+
#undef slong
|
34
|
+
#endif
|