passagemath-flint 10.6.1rc10__cp312-cp312-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-312-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-312-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-312-x86_64-linux-gnu.so +0 -0
- sage/graphs/chrompoly.pyx +555 -0
- sage/graphs/matchpoly.cpython-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-x86_64-linux-gnu.so +0 -0
- sage/matrix/change_ring.pyx +43 -0
- sage/matrix/matrix_complex_ball_dense.cpython-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-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-312-x86_64-linux-gnu.so +0 -0
- sage/rings/factorint_flint.pyx +99 -0
- sage/rings/fraction_field_FpT.cpython-312-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-312-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-312-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-312-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-312-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-312-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/hilbert.pyx +602 -0
- sage/rings/polynomial/polynomial_complex_arb.cpython-312-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-312-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-312-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_number_field.pyx +345 -0
- sage/rings/polynomial/polynomial_rational_flint.cpython-312-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-312-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-312-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-312-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-312-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-312-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-312-x86_64-linux-gnu.so +0 -0
- sage/rings/real_interval_absolute.pyx +1073 -0
- sage/rings/real_mpfi.cpython-312-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-312-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,237 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/arb_poly.h
|
4
|
+
|
5
|
+
################################################################################
|
6
|
+
# This file is auto-generated by the script
|
7
|
+
# SAGE_ROOT/src/sage_setup/autogen/flint_autogen.py.
|
8
|
+
# From the commit 3e2c3a3e091106a25ca9c6fba28e02f2cbcd654a
|
9
|
+
# Do not modify by hand! Fix and rerun the script instead.
|
10
|
+
################################################################################
|
11
|
+
|
12
|
+
from libc.stdio cimport FILE
|
13
|
+
from sage.libs.gmp.types cimport *
|
14
|
+
from sage.libs.mpfr.types cimport *
|
15
|
+
from sage.libs.flint.types cimport *
|
16
|
+
|
17
|
+
cdef extern from "flint_wrap.h":
|
18
|
+
void arb_poly_init(arb_poly_t poly) noexcept
|
19
|
+
void arb_poly_clear(arb_poly_t poly) noexcept
|
20
|
+
void arb_poly_fit_length(arb_poly_t poly, slong len) noexcept
|
21
|
+
void _arb_poly_set_length(arb_poly_t poly, slong len) noexcept
|
22
|
+
void _arb_poly_normalise(arb_poly_t poly) noexcept
|
23
|
+
slong arb_poly_allocated_bytes(const arb_poly_t x) noexcept
|
24
|
+
slong arb_poly_length(const arb_poly_t poly) noexcept
|
25
|
+
slong arb_poly_degree(const arb_poly_t poly) noexcept
|
26
|
+
bint arb_poly_is_zero(const arb_poly_t poly) noexcept
|
27
|
+
bint arb_poly_is_one(const arb_poly_t poly) noexcept
|
28
|
+
bint arb_poly_is_x(const arb_poly_t poly) noexcept
|
29
|
+
void arb_poly_zero(arb_poly_t poly) noexcept
|
30
|
+
void arb_poly_one(arb_poly_t poly) noexcept
|
31
|
+
void arb_poly_set(arb_poly_t dest, const arb_poly_t src) noexcept
|
32
|
+
void arb_poly_set_round(arb_poly_t dest, const arb_poly_t src, slong prec) noexcept
|
33
|
+
void arb_poly_set_trunc(arb_poly_t dest, const arb_poly_t src, slong n) noexcept
|
34
|
+
void arb_poly_set_trunc_round(arb_poly_t dest, const arb_poly_t src, slong n, slong prec) noexcept
|
35
|
+
void arb_poly_set_coeff_si(arb_poly_t poly, slong n, slong c) noexcept
|
36
|
+
void arb_poly_set_coeff_arb(arb_poly_t poly, slong n, const arb_t c) noexcept
|
37
|
+
void arb_poly_get_coeff_arb(arb_t v, const arb_poly_t poly, slong n) noexcept
|
38
|
+
void _arb_poly_shift_right(arb_ptr res, arb_srcptr poly, slong len, slong n) noexcept
|
39
|
+
void arb_poly_shift_right(arb_poly_t res, const arb_poly_t poly, slong n) noexcept
|
40
|
+
void _arb_poly_shift_left(arb_ptr res, arb_srcptr poly, slong len, slong n) noexcept
|
41
|
+
void arb_poly_shift_left(arb_poly_t res, const arb_poly_t poly, slong n) noexcept
|
42
|
+
void arb_poly_truncate(arb_poly_t poly, slong n) noexcept
|
43
|
+
slong arb_poly_valuation(const arb_poly_t poly) noexcept
|
44
|
+
void arb_poly_set_fmpz_poly(arb_poly_t poly, const fmpz_poly_t src, slong prec) noexcept
|
45
|
+
void arb_poly_set_fmpq_poly(arb_poly_t poly, const fmpq_poly_t src, slong prec) noexcept
|
46
|
+
void arb_poly_set_si(arb_poly_t poly, slong src) noexcept
|
47
|
+
void arb_poly_printd(const arb_poly_t poly, slong digits) noexcept
|
48
|
+
void arb_poly_fprintd(FILE * file, const arb_poly_t poly, slong digits) noexcept
|
49
|
+
void arb_poly_randtest(arb_poly_t poly, flint_rand_t state, slong len, slong prec, slong mag_bits) noexcept
|
50
|
+
bint arb_poly_contains(const arb_poly_t poly1, const arb_poly_t poly2) noexcept
|
51
|
+
bint arb_poly_contains_fmpz_poly(const arb_poly_t poly1, const fmpz_poly_t poly2) noexcept
|
52
|
+
bint arb_poly_contains_fmpq_poly(const arb_poly_t poly1, const fmpq_poly_t poly2) noexcept
|
53
|
+
bint arb_poly_equal(const arb_poly_t A, const arb_poly_t B) noexcept
|
54
|
+
bint _arb_poly_overlaps(arb_srcptr poly1, slong len1, arb_srcptr poly2, slong len2) noexcept
|
55
|
+
bint arb_poly_overlaps(const arb_poly_t poly1, const arb_poly_t poly2) noexcept
|
56
|
+
int arb_poly_get_unique_fmpz_poly(fmpz_poly_t z, const arb_poly_t x) noexcept
|
57
|
+
void _arb_poly_majorant(arb_ptr res, arb_srcptr poly, slong len, slong prec) noexcept
|
58
|
+
void arb_poly_majorant(arb_poly_t res, const arb_poly_t poly, slong prec) noexcept
|
59
|
+
void _arb_poly_add(arb_ptr C, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong prec) noexcept
|
60
|
+
void arb_poly_add(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong prec) noexcept
|
61
|
+
void arb_poly_add_si(arb_poly_t C, const arb_poly_t A, slong B, slong prec) noexcept
|
62
|
+
void _arb_poly_sub(arb_ptr C, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong prec) noexcept
|
63
|
+
void arb_poly_sub(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong prec) noexcept
|
64
|
+
void arb_poly_add_series(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong len, slong prec) noexcept
|
65
|
+
void arb_poly_sub_series(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong len, slong prec) noexcept
|
66
|
+
void arb_poly_neg(arb_poly_t C, const arb_poly_t A) noexcept
|
67
|
+
void arb_poly_scalar_mul_2exp_si(arb_poly_t C, const arb_poly_t A, slong c) noexcept
|
68
|
+
void arb_poly_scalar_mul(arb_poly_t C, const arb_poly_t A, const arb_t c, slong prec) noexcept
|
69
|
+
void arb_poly_scalar_div(arb_poly_t C, const arb_poly_t A, const arb_t c, slong prec) noexcept
|
70
|
+
void _arb_poly_mullow_classical(arb_ptr C, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong n, slong prec) noexcept
|
71
|
+
void _arb_poly_mullow_block(arb_ptr C, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong n, slong prec) noexcept
|
72
|
+
void _arb_poly_mullow(arb_ptr C, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong n, slong prec) noexcept
|
73
|
+
void arb_poly_mullow_classical(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec) noexcept
|
74
|
+
void arb_poly_mullow_ztrunc(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec) noexcept
|
75
|
+
void arb_poly_mullow_block(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec) noexcept
|
76
|
+
void arb_poly_mullow(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong n, slong prec) noexcept
|
77
|
+
void _arb_poly_mul(arb_ptr C, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong prec) noexcept
|
78
|
+
void arb_poly_mul(arb_poly_t C, const arb_poly_t A, const arb_poly_t B, slong prec) noexcept
|
79
|
+
void _arb_poly_inv_series(arb_ptr Q, arb_srcptr A, slong Alen, slong len, slong prec) noexcept
|
80
|
+
void arb_poly_inv_series(arb_poly_t Q, const arb_poly_t A, slong n, slong prec) noexcept
|
81
|
+
void _arb_poly_div_series(arb_ptr Q, arb_srcptr A, slong Alen, arb_srcptr B, slong Blen, slong n, slong prec) noexcept
|
82
|
+
void arb_poly_div_series(arb_poly_t Q, const arb_poly_t A, const arb_poly_t B, slong n, slong prec) noexcept
|
83
|
+
void _arb_poly_div(arb_ptr Q, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong prec) noexcept
|
84
|
+
void _arb_poly_rem(arb_ptr R, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong prec) noexcept
|
85
|
+
void _arb_poly_divrem(arb_ptr Q, arb_ptr R, arb_srcptr A, slong lenA, arb_srcptr B, slong lenB, slong prec) noexcept
|
86
|
+
int arb_poly_divrem(arb_poly_t Q, arb_poly_t R, const arb_poly_t A, const arb_poly_t B, slong prec) noexcept
|
87
|
+
void _arb_poly_div_root(arb_ptr Q, arb_t R, arb_srcptr A, slong len, const arb_t c, slong prec) noexcept
|
88
|
+
void _arb_poly_taylor_shift(arb_ptr g, const arb_t c, slong n, slong prec) noexcept
|
89
|
+
void arb_poly_taylor_shift(arb_poly_t g, const arb_poly_t f, const arb_t c, slong prec) noexcept
|
90
|
+
void _arb_poly_compose(arb_ptr res, arb_srcptr poly1, slong len1, arb_srcptr poly2, slong len2, slong prec) noexcept
|
91
|
+
void arb_poly_compose(arb_poly_t res, const arb_poly_t poly1, const arb_poly_t poly2, slong prec) noexcept
|
92
|
+
void _arb_poly_compose_series(arb_ptr res, arb_srcptr poly1, slong len1, arb_srcptr poly2, slong len2, slong n, slong prec) noexcept
|
93
|
+
void arb_poly_compose_series(arb_poly_t res, const arb_poly_t poly1, const arb_poly_t poly2, slong n, slong prec) noexcept
|
94
|
+
void _arb_poly_revert_series(arb_ptr h, arb_srcptr f, slong flen, slong n, slong prec) noexcept
|
95
|
+
void arb_poly_revert_series(arb_poly_t h, const arb_poly_t f, slong n, slong prec) noexcept
|
96
|
+
void _arb_poly_evaluate_horner(arb_t y, arb_srcptr f, slong len, const arb_t x, slong prec) noexcept
|
97
|
+
void arb_poly_evaluate_horner(arb_t y, const arb_poly_t f, const arb_t x, slong prec) noexcept
|
98
|
+
void _arb_poly_evaluate_rectangular(arb_t y, arb_srcptr f, slong len, const arb_t x, slong prec) noexcept
|
99
|
+
void arb_poly_evaluate_rectangular(arb_t y, const arb_poly_t f, const arb_t x, slong prec) noexcept
|
100
|
+
void _arb_poly_evaluate(arb_t y, arb_srcptr f, slong len, const arb_t x, slong prec) noexcept
|
101
|
+
void arb_poly_evaluate(arb_t y, const arb_poly_t f, const arb_t x, slong prec) noexcept
|
102
|
+
void _arb_poly_evaluate_acb_horner(acb_t y, arb_srcptr f, slong len, const acb_t x, slong prec) noexcept
|
103
|
+
void arb_poly_evaluate_acb_horner(acb_t y, const arb_poly_t f, const acb_t x, slong prec) noexcept
|
104
|
+
void _arb_poly_evaluate_acb_rectangular(acb_t y, arb_srcptr f, slong len, const acb_t x, slong prec) noexcept
|
105
|
+
void arb_poly_evaluate_acb_rectangular(acb_t y, const arb_poly_t f, const acb_t x, slong prec) noexcept
|
106
|
+
void _arb_poly_evaluate_acb(acb_t y, arb_srcptr f, slong len, const acb_t x, slong prec) noexcept
|
107
|
+
void arb_poly_evaluate_acb(acb_t y, const arb_poly_t f, const acb_t x, slong prec) noexcept
|
108
|
+
void _arb_poly_evaluate2_horner(arb_t y, arb_t z, arb_srcptr f, slong len, const arb_t x, slong prec) noexcept
|
109
|
+
void arb_poly_evaluate2_horner(arb_t y, arb_t z, const arb_poly_t f, const arb_t x, slong prec) noexcept
|
110
|
+
void _arb_poly_evaluate2_rectangular(arb_t y, arb_t z, arb_srcptr f, slong len, const arb_t x, slong prec) noexcept
|
111
|
+
void arb_poly_evaluate2_rectangular(arb_t y, arb_t z, const arb_poly_t f, const arb_t x, slong prec) noexcept
|
112
|
+
void _arb_poly_evaluate2(arb_t y, arb_t z, arb_srcptr f, slong len, const arb_t x, slong prec) noexcept
|
113
|
+
void arb_poly_evaluate2(arb_t y, arb_t z, const arb_poly_t f, const arb_t x, slong prec) noexcept
|
114
|
+
void _arb_poly_evaluate2_acb_horner(acb_t y, acb_t z, arb_srcptr f, slong len, const acb_t x, slong prec) noexcept
|
115
|
+
void arb_poly_evaluate2_acb_horner(acb_t y, acb_t z, const arb_poly_t f, const acb_t x, slong prec) noexcept
|
116
|
+
void _arb_poly_evaluate2_acb_rectangular(acb_t y, acb_t z, arb_srcptr f, slong len, const acb_t x, slong prec) noexcept
|
117
|
+
void arb_poly_evaluate2_acb_rectangular(acb_t y, acb_t z, const arb_poly_t f, const acb_t x, slong prec) noexcept
|
118
|
+
void _arb_poly_evaluate2_acb(acb_t y, acb_t z, arb_srcptr f, slong len, const acb_t x, slong prec) noexcept
|
119
|
+
void arb_poly_evaluate2_acb(acb_t y, acb_t z, const arb_poly_t f, const acb_t x, slong prec) noexcept
|
120
|
+
void _arb_poly_product_roots(arb_ptr poly, arb_srcptr xs, slong n, slong prec) noexcept
|
121
|
+
void arb_poly_product_roots(arb_poly_t poly, arb_srcptr xs, slong n, slong prec) noexcept
|
122
|
+
void _arb_poly_product_roots_complex(arb_ptr poly, arb_srcptr r, slong rn, acb_srcptr c, slong cn, slong prec) noexcept
|
123
|
+
void arb_poly_product_roots_complex(arb_poly_t poly, arb_srcptr r, slong rn, acb_srcptr c, slong cn, slong prec) noexcept
|
124
|
+
arb_ptr * _arb_poly_tree_alloc(slong len) noexcept
|
125
|
+
void _arb_poly_tree_free(arb_ptr * tree, slong len) noexcept
|
126
|
+
void _arb_poly_tree_build(arb_ptr * tree, arb_srcptr roots, slong len, slong prec) noexcept
|
127
|
+
void _arb_poly_evaluate_vec_iter(arb_ptr ys, arb_srcptr poly, slong plen, arb_srcptr xs, slong n, slong prec) noexcept
|
128
|
+
void arb_poly_evaluate_vec_iter(arb_ptr ys, const arb_poly_t poly, arb_srcptr xs, slong n, slong prec) noexcept
|
129
|
+
void _arb_poly_evaluate_vec_fast_precomp(arb_ptr vs, arb_srcptr poly, slong plen, arb_ptr * tree, slong len, slong prec) noexcept
|
130
|
+
void _arb_poly_evaluate_vec_fast(arb_ptr ys, arb_srcptr poly, slong plen, arb_srcptr xs, slong n, slong prec) noexcept
|
131
|
+
void arb_poly_evaluate_vec_fast(arb_ptr ys, const arb_poly_t poly, arb_srcptr xs, slong n, slong prec) noexcept
|
132
|
+
void _arb_poly_interpolate_newton(arb_ptr poly, arb_srcptr xs, arb_srcptr ys, slong n, slong prec) noexcept
|
133
|
+
void arb_poly_interpolate_newton(arb_poly_t poly, arb_srcptr xs, arb_srcptr ys, slong n, slong prec) noexcept
|
134
|
+
void _arb_poly_interpolate_barycentric(arb_ptr poly, arb_srcptr xs, arb_srcptr ys, slong n, slong prec) noexcept
|
135
|
+
void arb_poly_interpolate_barycentric(arb_poly_t poly, arb_srcptr xs, arb_srcptr ys, slong n, slong prec) noexcept
|
136
|
+
void _arb_poly_interpolation_weights(arb_ptr w, arb_ptr * tree, slong len, slong prec) noexcept
|
137
|
+
void _arb_poly_interpolate_fast_precomp(arb_ptr poly, arb_srcptr ys, arb_ptr * tree, arb_srcptr weights, slong len, slong prec) noexcept
|
138
|
+
void _arb_poly_interpolate_fast(arb_ptr poly, arb_srcptr xs, arb_srcptr ys, slong len, slong prec) noexcept
|
139
|
+
void arb_poly_interpolate_fast(arb_poly_t poly, arb_srcptr xs, arb_srcptr ys, slong n, slong prec) noexcept
|
140
|
+
void _arb_poly_derivative(arb_ptr res, arb_srcptr poly, slong len, slong prec) noexcept
|
141
|
+
void arb_poly_derivative(arb_poly_t res, const arb_poly_t poly, slong prec) noexcept
|
142
|
+
void _arb_poly_nth_derivative(arb_ptr res, arb_srcptr poly, ulong n, slong len, slong prec) noexcept
|
143
|
+
void arb_poly_nth_derivative(arb_poly_t res, const arb_poly_t poly, ulong n, slong prec) noexcept
|
144
|
+
void _arb_poly_integral(arb_ptr res, arb_srcptr poly, slong len, slong prec) noexcept
|
145
|
+
void arb_poly_integral(arb_poly_t res, const arb_poly_t poly, slong prec) noexcept
|
146
|
+
void _arb_poly_borel_transform(arb_ptr res, arb_srcptr poly, slong len, slong prec) noexcept
|
147
|
+
void arb_poly_borel_transform(arb_poly_t res, const arb_poly_t poly, slong prec) noexcept
|
148
|
+
void _arb_poly_inv_borel_transform(arb_ptr res, arb_srcptr poly, slong len, slong prec) noexcept
|
149
|
+
void arb_poly_inv_borel_transform(arb_poly_t res, const arb_poly_t poly, slong prec) noexcept
|
150
|
+
void _arb_poly_binomial_transform_basecase(arb_ptr b, arb_srcptr a, slong alen, slong len, slong prec) noexcept
|
151
|
+
void arb_poly_binomial_transform_basecase(arb_poly_t b, const arb_poly_t a, slong len, slong prec) noexcept
|
152
|
+
void _arb_poly_binomial_transform_convolution(arb_ptr b, arb_srcptr a, slong alen, slong len, slong prec) noexcept
|
153
|
+
void arb_poly_binomial_transform_convolution(arb_poly_t b, const arb_poly_t a, slong len, slong prec) noexcept
|
154
|
+
void _arb_poly_binomial_transform(arb_ptr b, arb_srcptr a, slong alen, slong len, slong prec) noexcept
|
155
|
+
void arb_poly_binomial_transform(arb_poly_t b, const arb_poly_t a, slong len, slong prec) noexcept
|
156
|
+
void _arb_poly_graeffe_transform(arb_ptr b, arb_srcptr a, slong len, slong prec) noexcept
|
157
|
+
void arb_poly_graeffe_transform(arb_poly_t b, const arb_poly_t a, slong prec) noexcept
|
158
|
+
void _arb_poly_pow_ui_trunc_binexp(arb_ptr res, arb_srcptr f, slong flen, ulong exp, slong len, slong prec) noexcept
|
159
|
+
void arb_poly_pow_ui_trunc_binexp(arb_poly_t res, const arb_poly_t poly, ulong exp, slong len, slong prec) noexcept
|
160
|
+
void _arb_poly_pow_ui(arb_ptr res, arb_srcptr f, slong flen, ulong exp, slong prec) noexcept
|
161
|
+
void arb_poly_pow_ui(arb_poly_t res, const arb_poly_t poly, ulong exp, slong prec) noexcept
|
162
|
+
void _arb_poly_pow_series(arb_ptr h, arb_srcptr f, slong flen, arb_srcptr g, slong glen, slong len, slong prec) noexcept
|
163
|
+
void arb_poly_pow_series(arb_poly_t h, const arb_poly_t f, const arb_poly_t g, slong len, slong prec) noexcept
|
164
|
+
void _arb_poly_pow_arb_series(arb_ptr h, arb_srcptr f, slong flen, const arb_t g, slong len, slong prec) noexcept
|
165
|
+
void arb_poly_pow_arb_series(arb_poly_t h, const arb_poly_t f, const arb_t g, slong len, slong prec) noexcept
|
166
|
+
void _arb_poly_sqrt_series(arb_ptr g, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
167
|
+
void arb_poly_sqrt_series(arb_poly_t g, const arb_poly_t h, slong n, slong prec) noexcept
|
168
|
+
void _arb_poly_rsqrt_series(arb_ptr g, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
169
|
+
void arb_poly_rsqrt_series(arb_poly_t g, const arb_poly_t h, slong n, slong prec) noexcept
|
170
|
+
void _arb_poly_log_series(arb_ptr res, arb_srcptr f, slong flen, slong n, slong prec) noexcept
|
171
|
+
void arb_poly_log_series(arb_poly_t res, const arb_poly_t f, slong n, slong prec) noexcept
|
172
|
+
void _arb_poly_log1p_series(arb_ptr res, arb_srcptr f, slong flen, slong n, slong prec) noexcept
|
173
|
+
void arb_poly_log1p_series(arb_poly_t res, const arb_poly_t f, slong n, slong prec) noexcept
|
174
|
+
void _arb_poly_atan_series(arb_ptr res, arb_srcptr f, slong flen, slong n, slong prec) noexcept
|
175
|
+
void arb_poly_atan_series(arb_poly_t res, const arb_poly_t f, slong n, slong prec) noexcept
|
176
|
+
void _arb_poly_asin_series(arb_ptr res, arb_srcptr f, slong flen, slong n, slong prec) noexcept
|
177
|
+
void arb_poly_asin_series(arb_poly_t res, const arb_poly_t f, slong n, slong prec) noexcept
|
178
|
+
void _arb_poly_acos_series(arb_ptr res, arb_srcptr f, slong flen, slong n, slong prec) noexcept
|
179
|
+
void arb_poly_acos_series(arb_poly_t res, const arb_poly_t f, slong n, slong prec) noexcept
|
180
|
+
void _arb_poly_exp_series_basecase(arb_ptr f, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
181
|
+
void arb_poly_exp_series_basecase(arb_poly_t f, const arb_poly_t h, slong n, slong prec) noexcept
|
182
|
+
void _arb_poly_exp_series(arb_ptr f, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
183
|
+
void arb_poly_exp_series(arb_poly_t f, const arb_poly_t h, slong n, slong prec) noexcept
|
184
|
+
void _arb_poly_sin_cos_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
185
|
+
void arb_poly_sin_cos_series(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
186
|
+
void _arb_poly_sin_series(arb_ptr s, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
187
|
+
void arb_poly_sin_series(arb_poly_t s, const arb_poly_t h, slong n, slong prec) noexcept
|
188
|
+
void _arb_poly_cos_series(arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
189
|
+
void arb_poly_cos_series(arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
190
|
+
void _arb_poly_tan_series(arb_ptr g, arb_srcptr h, slong hlen, slong len, slong prec) noexcept
|
191
|
+
void arb_poly_tan_series(arb_poly_t g, const arb_poly_t h, slong n, slong prec) noexcept
|
192
|
+
void _arb_poly_sin_cos_pi_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
193
|
+
void arb_poly_sin_cos_pi_series(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
194
|
+
void _arb_poly_sin_pi_series(arb_ptr s, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
195
|
+
void arb_poly_sin_pi_series(arb_poly_t s, const arb_poly_t h, slong n, slong prec) noexcept
|
196
|
+
void _arb_poly_cos_pi_series(arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
197
|
+
void arb_poly_cos_pi_series(arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
198
|
+
void _arb_poly_cot_pi_series(arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
199
|
+
void arb_poly_cot_pi_series(arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
200
|
+
void _arb_poly_sinh_cosh_series_basecase(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
201
|
+
void arb_poly_sinh_cosh_series_basecase(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
202
|
+
void _arb_poly_sinh_cosh_series_exponential(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
203
|
+
void arb_poly_sinh_cosh_series_exponential(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
204
|
+
void _arb_poly_sinh_cosh_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
205
|
+
void arb_poly_sinh_cosh_series(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
206
|
+
void _arb_poly_sinh_series(arb_ptr s, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
207
|
+
void arb_poly_sinh_series(arb_poly_t s, const arb_poly_t h, slong n, slong prec) noexcept
|
208
|
+
void _arb_poly_cosh_series(arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
209
|
+
void arb_poly_cosh_series(arb_poly_t c, const arb_poly_t h, slong n, slong prec) noexcept
|
210
|
+
void _arb_poly_sinc_series(arb_ptr s, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
211
|
+
void arb_poly_sinc_series(arb_poly_t s, const arb_poly_t h, slong n, slong prec) noexcept
|
212
|
+
void _arb_poly_sinc_pi_series(arb_ptr s, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
213
|
+
void arb_poly_sinc_pi_series(arb_poly_t s, const arb_poly_t h, slong n, slong prec) noexcept
|
214
|
+
void _arb_poly_lambertw_series(arb_ptr res, arb_srcptr z, slong zlen, int flags, slong len, slong prec) noexcept
|
215
|
+
void arb_poly_lambertw_series(arb_poly_t res, const arb_poly_t z, int flags, slong len, slong prec) noexcept
|
216
|
+
void _arb_poly_gamma_series(arb_ptr res, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
217
|
+
void arb_poly_gamma_series(arb_poly_t res, const arb_poly_t h, slong n, slong prec) noexcept
|
218
|
+
void _arb_poly_rgamma_series(arb_ptr res, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
219
|
+
void arb_poly_rgamma_series(arb_poly_t res, const arb_poly_t h, slong n, slong prec) noexcept
|
220
|
+
void _arb_poly_lgamma_series(arb_ptr res, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
221
|
+
void arb_poly_lgamma_series(arb_poly_t res, const arb_poly_t h, slong n, slong prec) noexcept
|
222
|
+
void _arb_poly_digamma_series(arb_ptr res, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
223
|
+
void arb_poly_digamma_series(arb_poly_t res, const arb_poly_t h, slong n, slong prec) noexcept
|
224
|
+
void _arb_poly_rising_ui_series(arb_ptr res, arb_srcptr f, slong flen, ulong r, slong trunc, slong prec) noexcept
|
225
|
+
void arb_poly_rising_ui_series(arb_poly_t res, const arb_poly_t f, ulong r, slong trunc, slong prec) noexcept
|
226
|
+
void arb_poly_zeta_series(arb_poly_t res, const arb_poly_t s, const arb_t a, int deflate, slong n, slong prec) noexcept
|
227
|
+
void _arb_poly_riemann_siegel_theta_series(arb_ptr res, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
228
|
+
void arb_poly_riemann_siegel_theta_series(arb_poly_t res, const arb_poly_t h, slong n, slong prec) noexcept
|
229
|
+
void _arb_poly_riemann_siegel_z_series(arb_ptr res, arb_srcptr h, slong hlen, slong n, slong prec) noexcept
|
230
|
+
void arb_poly_riemann_siegel_z_series(arb_poly_t res, const arb_poly_t h, slong n, slong prec) noexcept
|
231
|
+
void _arb_poly_root_bound_fujiwara(mag_t bound, arb_srcptr poly, slong len) noexcept
|
232
|
+
void arb_poly_root_bound_fujiwara(mag_t bound, arb_poly_t poly) noexcept
|
233
|
+
void _arb_poly_newton_convergence_factor(arf_t convergence_factor, arb_srcptr poly, slong len, const arb_t convergence_interval, slong prec) noexcept
|
234
|
+
int _arb_poly_newton_step(arb_t xnew, arb_srcptr poly, slong len, const arb_t x, const arb_t convergence_interval, const arf_t convergence_factor, slong prec) noexcept
|
235
|
+
void _arb_poly_newton_refine_root(arb_t r, arb_srcptr poly, slong len, const arb_t start, const arb_t convergence_interval, const arf_t convergence_factor, slong eval_extra_prec, slong prec) noexcept
|
236
|
+
void _arb_poly_swinnerton_dyer_ui(arb_ptr poly, ulong n, slong trunc, slong prec) noexcept
|
237
|
+
void arb_poly_swinnerton_dyer_ui(arb_poly_t poly, ulong n, slong prec) noexcept
|
sage/libs/flint/arf.pxd
ADDED
@@ -0,0 +1,167 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/arf.h
|
4
|
+
|
5
|
+
################################################################################
|
6
|
+
# This file is auto-generated by the script
|
7
|
+
# SAGE_ROOT/src/sage_setup/autogen/flint_autogen.py.
|
8
|
+
# From the commit 3e2c3a3e091106a25ca9c6fba28e02f2cbcd654a
|
9
|
+
# Do not modify by hand! Fix and rerun the script instead.
|
10
|
+
################################################################################
|
11
|
+
|
12
|
+
from libc.stdio cimport FILE
|
13
|
+
from sage.libs.gmp.types cimport *
|
14
|
+
from sage.libs.mpfr.types cimport *
|
15
|
+
from sage.libs.flint.types cimport *
|
16
|
+
|
17
|
+
cdef extern from "flint_wrap.h":
|
18
|
+
void arf_init(arf_t x) noexcept
|
19
|
+
void arf_clear(arf_t x) noexcept
|
20
|
+
slong arf_allocated_bytes(const arf_t x) noexcept
|
21
|
+
void arf_zero(arf_t res) noexcept
|
22
|
+
void arf_one(arf_t res) noexcept
|
23
|
+
void arf_pos_inf(arf_t res) noexcept
|
24
|
+
void arf_neg_inf(arf_t res) noexcept
|
25
|
+
void arf_nan(arf_t res) noexcept
|
26
|
+
bint arf_is_zero(const arf_t x) noexcept
|
27
|
+
bint arf_is_one(const arf_t x) noexcept
|
28
|
+
bint arf_is_pos_inf(const arf_t x) noexcept
|
29
|
+
bint arf_is_neg_inf(const arf_t x) noexcept
|
30
|
+
bint arf_is_nan(const arf_t x) noexcept
|
31
|
+
bint arf_is_inf(const arf_t x) noexcept
|
32
|
+
bint arf_is_normal(const arf_t x) noexcept
|
33
|
+
bint arf_is_special(const arf_t x) noexcept
|
34
|
+
bint arf_is_finite(const arf_t x) noexcept
|
35
|
+
void arf_set(arf_t res, const arf_t x) noexcept
|
36
|
+
void arf_set_mpz(arf_t res, const mpz_t x) noexcept
|
37
|
+
void arf_set_fmpz(arf_t res, const fmpz_t x) noexcept
|
38
|
+
void arf_set_ui(arf_t res, ulong x) noexcept
|
39
|
+
void arf_set_si(arf_t res, slong x) noexcept
|
40
|
+
void arf_set_mpfr(arf_t res, const mpfr_t x) noexcept
|
41
|
+
void arf_set_d(arf_t res, double x) noexcept
|
42
|
+
void arf_swap(arf_t x, arf_t y) noexcept
|
43
|
+
void arf_init_set_ui(arf_t res, ulong x) noexcept
|
44
|
+
void arf_init_set_si(arf_t res, slong x) noexcept
|
45
|
+
int arf_set_round(arf_t res, const arf_t x, slong prec, arf_rnd_t rnd) noexcept
|
46
|
+
int arf_set_round_si(arf_t res, slong x, slong prec, arf_rnd_t rnd) noexcept
|
47
|
+
int arf_set_round_ui(arf_t res, ulong x, slong prec, arf_rnd_t rnd) noexcept
|
48
|
+
int arf_set_round_mpz(arf_t res, const mpz_t x, slong prec, arf_rnd_t rnd) noexcept
|
49
|
+
int arf_set_round_fmpz(arf_t res, const fmpz_t x, slong prec, arf_rnd_t rnd) noexcept
|
50
|
+
void arf_set_si_2exp_si(arf_t res, slong m, slong e) noexcept
|
51
|
+
void arf_set_ui_2exp_si(arf_t res, ulong m, slong e) noexcept
|
52
|
+
void arf_set_fmpz_2exp(arf_t res, const fmpz_t m, const fmpz_t e) noexcept
|
53
|
+
int arf_set_round_fmpz_2exp(arf_t res, const fmpz_t x, const fmpz_t e, slong prec, arf_rnd_t rnd) noexcept
|
54
|
+
void arf_get_fmpz_2exp(fmpz_t m, fmpz_t e, const arf_t x) noexcept
|
55
|
+
void arf_frexp(arf_t m, fmpz_t e, const arf_t x) noexcept
|
56
|
+
double arf_get_d(const arf_t x, arf_rnd_t rnd) noexcept
|
57
|
+
int arf_get_mpfr(mpfr_t res, const arf_t x, mpfr_rnd_t rnd) noexcept
|
58
|
+
int arf_get_fmpz(fmpz_t res, const arf_t x, arf_rnd_t rnd) noexcept
|
59
|
+
slong arf_get_si(const arf_t x, arf_rnd_t rnd) noexcept
|
60
|
+
int arf_get_fmpz_fixed_fmpz(fmpz_t res, const arf_t x, const fmpz_t e) noexcept
|
61
|
+
int arf_get_fmpz_fixed_si(fmpz_t res, const arf_t x, slong e) noexcept
|
62
|
+
void arf_floor(arf_t res, const arf_t x) noexcept
|
63
|
+
void arf_ceil(arf_t res, const arf_t x) noexcept
|
64
|
+
void arf_get_fmpq(fmpq_t res, const arf_t x) noexcept
|
65
|
+
bint arf_equal(const arf_t x, const arf_t y) noexcept
|
66
|
+
bint arf_equal_si(const arf_t x, slong y) noexcept
|
67
|
+
bint arf_equal_ui(const arf_t x, ulong y) noexcept
|
68
|
+
bint arf_equal_d(const arf_t x, double y) noexcept
|
69
|
+
int arf_cmp(const arf_t x, const arf_t y) noexcept
|
70
|
+
int arf_cmp_si(const arf_t x, slong y) noexcept
|
71
|
+
int arf_cmp_ui(const arf_t x, ulong y) noexcept
|
72
|
+
int arf_cmp_d(const arf_t x, double y) noexcept
|
73
|
+
int arf_cmpabs(const arf_t x, const arf_t y) noexcept
|
74
|
+
int arf_cmpabs_ui(const arf_t x, ulong y) noexcept
|
75
|
+
int arf_cmpabs_d(const arf_t x, double y) noexcept
|
76
|
+
int arf_cmpabs_mag(const arf_t x, const mag_t y) noexcept
|
77
|
+
int arf_cmp_2exp_si(const arf_t x, slong e) noexcept
|
78
|
+
int arf_cmpabs_2exp_si(const arf_t x, slong e) noexcept
|
79
|
+
int arf_sgn(const arf_t x) noexcept
|
80
|
+
void arf_min(arf_t res, const arf_t a, const arf_t b) noexcept
|
81
|
+
void arf_max(arf_t res, const arf_t a, const arf_t b) noexcept
|
82
|
+
slong arf_bits(const arf_t x) noexcept
|
83
|
+
bint arf_is_int(const arf_t x) noexcept
|
84
|
+
bint arf_is_int_2exp_si(const arf_t x, slong e) noexcept
|
85
|
+
void arf_abs_bound_lt_2exp_fmpz(fmpz_t res, const arf_t x) noexcept
|
86
|
+
void arf_abs_bound_le_2exp_fmpz(fmpz_t res, const arf_t x) noexcept
|
87
|
+
slong arf_abs_bound_lt_2exp_si(const arf_t x) noexcept
|
88
|
+
void arf_get_mag(mag_t res, const arf_t x) noexcept
|
89
|
+
void arf_get_mag_lower(mag_t res, const arf_t x) noexcept
|
90
|
+
void arf_set_mag(arf_t res, const mag_t x) noexcept
|
91
|
+
void mag_init_set_arf(mag_t res, const arf_t x) noexcept
|
92
|
+
void mag_fast_init_set_arf(mag_t res, const arf_t x) noexcept
|
93
|
+
void arf_mag_set_ulp(mag_t res, const arf_t x, slong prec) noexcept
|
94
|
+
void arf_mag_add_ulp(mag_t res, const mag_t x, const arf_t y, slong prec) noexcept
|
95
|
+
void arf_mag_fast_add_ulp(mag_t res, const mag_t x, const arf_t y, slong prec) noexcept
|
96
|
+
void arf_init_set_shallow(arf_t z, const arf_t x) noexcept
|
97
|
+
void arf_init_set_mag_shallow(arf_t z, const mag_t x) noexcept
|
98
|
+
void arf_init_neg_shallow(arf_t z, const arf_t x) noexcept
|
99
|
+
void arf_init_neg_mag_shallow(arf_t z, const mag_t x) noexcept
|
100
|
+
void arf_randtest(arf_t res, flint_rand_t state, slong bits, slong mag_bits) noexcept
|
101
|
+
void arf_randtest_not_zero(arf_t res, flint_rand_t state, slong bits, slong mag_bits) noexcept
|
102
|
+
void arf_randtest_special(arf_t res, flint_rand_t state, slong bits, slong mag_bits) noexcept
|
103
|
+
void arf_urandom(arf_t res, flint_rand_t state, slong bits, arf_rnd_t rnd) noexcept
|
104
|
+
void arf_debug(const arf_t x) noexcept
|
105
|
+
void arf_print(const arf_t x) noexcept
|
106
|
+
void arf_printd(const arf_t x, slong d) noexcept
|
107
|
+
char * arf_get_str(const arf_t x, slong d) noexcept
|
108
|
+
void arf_fprint(FILE * file, const arf_t x) noexcept
|
109
|
+
void arf_fprintd(FILE * file, const arf_t y, slong d) noexcept
|
110
|
+
char * arf_dump_str(const arf_t x) noexcept
|
111
|
+
int arf_load_str(arf_t x, const char * str) noexcept
|
112
|
+
int arf_dump_file(FILE * stream, const arf_t x) noexcept
|
113
|
+
int arf_load_file(arf_t x, FILE * stream) noexcept
|
114
|
+
void arf_abs(arf_t res, const arf_t x) noexcept
|
115
|
+
void arf_neg(arf_t res, const arf_t x) noexcept
|
116
|
+
int arf_neg_round(arf_t res, const arf_t x, slong prec, arf_rnd_t rnd) noexcept
|
117
|
+
int arf_add(arf_t res, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
118
|
+
int arf_add_si(arf_t res, const arf_t x, slong y, slong prec, arf_rnd_t rnd) noexcept
|
119
|
+
int arf_add_ui(arf_t res, const arf_t x, ulong y, slong prec, arf_rnd_t rnd) noexcept
|
120
|
+
int arf_add_fmpz(arf_t res, const arf_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
121
|
+
int arf_add_fmpz_2exp(arf_t res, const arf_t x, const fmpz_t y, const fmpz_t e, slong prec, arf_rnd_t rnd) noexcept
|
122
|
+
int arf_sub(arf_t res, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
123
|
+
int arf_sub_si(arf_t res, const arf_t x, slong y, slong prec, arf_rnd_t rnd) noexcept
|
124
|
+
int arf_sub_ui(arf_t res, const arf_t x, ulong y, slong prec, arf_rnd_t rnd) noexcept
|
125
|
+
int arf_sub_fmpz(arf_t res, const arf_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
126
|
+
void arf_mul_2exp_si(arf_t res, const arf_t x, slong e) noexcept
|
127
|
+
void arf_mul_2exp_fmpz(arf_t res, const arf_t x, const fmpz_t e) noexcept
|
128
|
+
int arf_mul(arf_t res, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
129
|
+
int arf_mul_ui(arf_t res, const arf_t x, ulong y, slong prec, arf_rnd_t rnd) noexcept
|
130
|
+
int arf_mul_si(arf_t res, const arf_t x, slong y, slong prec, arf_rnd_t rnd) noexcept
|
131
|
+
int arf_mul_mpz(arf_t res, const arf_t x, const mpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
132
|
+
int arf_mul_fmpz(arf_t res, const arf_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
133
|
+
int arf_addmul(arf_t z, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
134
|
+
int arf_addmul_ui(arf_t z, const arf_t x, ulong y, slong prec, arf_rnd_t rnd) noexcept
|
135
|
+
int arf_addmul_si(arf_t z, const arf_t x, slong y, slong prec, arf_rnd_t rnd) noexcept
|
136
|
+
int arf_addmul_mpz(arf_t z, const arf_t x, const mpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
137
|
+
int arf_addmul_fmpz(arf_t z, const arf_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
138
|
+
int arf_submul(arf_t z, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
139
|
+
int arf_submul_ui(arf_t z, const arf_t x, ulong y, slong prec, arf_rnd_t rnd) noexcept
|
140
|
+
int arf_submul_si(arf_t z, const arf_t x, slong y, slong prec, arf_rnd_t rnd) noexcept
|
141
|
+
int arf_submul_mpz(arf_t z, const arf_t x, const mpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
142
|
+
int arf_submul_fmpz(arf_t z, const arf_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
143
|
+
int arf_fma(arf_t res, const arf_t x, const arf_t y, const arf_t z, slong prec, arf_rnd_t rnd) noexcept
|
144
|
+
int arf_sosq(arf_t res, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
145
|
+
int arf_sum(arf_t res, arf_srcptr terms, slong len, slong prec, arf_rnd_t rnd) noexcept
|
146
|
+
void arf_approx_dot(arf_t res, const arf_t initial, int subtract, arf_srcptr x, slong xstep, arf_srcptr y, slong ystep, slong len, slong prec, arf_rnd_t rnd) noexcept
|
147
|
+
int arf_div(arf_t res, const arf_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
148
|
+
int arf_div_ui(arf_t res, const arf_t x, ulong y, slong prec, arf_rnd_t rnd) noexcept
|
149
|
+
int arf_ui_div(arf_t res, ulong x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
150
|
+
int arf_div_si(arf_t res, const arf_t x, slong y, slong prec, arf_rnd_t rnd) noexcept
|
151
|
+
int arf_si_div(arf_t res, slong x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
152
|
+
int arf_div_fmpz(arf_t res, const arf_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
153
|
+
int arf_fmpz_div(arf_t res, const fmpz_t x, const arf_t y, slong prec, arf_rnd_t rnd) noexcept
|
154
|
+
int arf_fmpz_div_fmpz(arf_t res, const fmpz_t x, const fmpz_t y, slong prec, arf_rnd_t rnd) noexcept
|
155
|
+
int arf_sqrt(arf_t res, const arf_t x, slong prec, arf_rnd_t rnd) noexcept
|
156
|
+
int arf_sqrt_ui(arf_t res, ulong x, slong prec, arf_rnd_t rnd) noexcept
|
157
|
+
int arf_sqrt_fmpz(arf_t res, const fmpz_t x, slong prec, arf_rnd_t rnd) noexcept
|
158
|
+
int arf_rsqrt(arf_t res, const arf_t x, slong prec, arf_rnd_t rnd) noexcept
|
159
|
+
int arf_root(arf_t res, const arf_t x, ulong k, slong prec, arf_rnd_t rnd) noexcept
|
160
|
+
int arf_complex_mul(arf_t e, arf_t f, const arf_t a, const arf_t b, const arf_t c, const arf_t d, slong prec, arf_rnd_t rnd) noexcept
|
161
|
+
int arf_complex_mul_fallback(arf_t e, arf_t f, const arf_t a, const arf_t b, const arf_t c, const arf_t d, slong prec, arf_rnd_t rnd) noexcept
|
162
|
+
int arf_complex_sqr(arf_t e, arf_t f, const arf_t a, const arf_t b, slong prec, arf_rnd_t rnd) noexcept
|
163
|
+
int _arf_get_integer_mpn(mp_ptr y, mp_srcptr xp, mp_size_t xn, slong exp) noexcept
|
164
|
+
int _arf_set_mpn_fixed(arf_t z, mp_srcptr xp, mp_size_t xn, mp_size_t fixn, int negative, slong prec, arf_rnd_t rnd) noexcept
|
165
|
+
int _arf_set_round_ui(arf_t z, ulong x, int sgnbit, slong prec, arf_rnd_t rnd) noexcept
|
166
|
+
int _arf_set_round_uiui(arf_t z, slong * fix, mp_limb_t hi, mp_limb_t lo, int sgnbit, slong prec, arf_rnd_t rnd) noexcept
|
167
|
+
int _arf_set_round_mpn(arf_t z, slong * exp_shift, mp_srcptr x, mp_size_t xn, int sgnbit, slong prec, arf_rnd_t rnd) noexcept
|
Binary file
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/arith.h
|
4
|
+
|
5
|
+
################################################################################
|
6
|
+
# This file is auto-generated by the script
|
7
|
+
# SAGE_ROOT/src/sage_setup/autogen/flint_autogen.py.
|
8
|
+
# From the commit 3e2c3a3e091106a25ca9c6fba28e02f2cbcd654a
|
9
|
+
# Do not modify by hand! Fix and rerun the script instead.
|
10
|
+
################################################################################
|
11
|
+
|
12
|
+
from libc.stdio cimport FILE
|
13
|
+
from sage.libs.gmp.types cimport *
|
14
|
+
from sage.libs.mpfr.types cimport *
|
15
|
+
from sage.libs.flint.types cimport *
|
16
|
+
|
17
|
+
cdef extern from "flint_wrap.h":
|
18
|
+
void arith_primorial(fmpz_t res, slong n) noexcept
|
19
|
+
void _arith_harmonic_number(fmpz_t num, fmpz_t den, slong n) noexcept
|
20
|
+
void arith_harmonic_number(fmpq_t x, slong n) noexcept
|
21
|
+
void arith_stirling_number_1u(fmpz_t s, ulong n, ulong k) noexcept
|
22
|
+
void arith_stirling_number_1(fmpz_t s, ulong n, ulong k) noexcept
|
23
|
+
void arith_stirling_number_2(fmpz_t s, ulong n, ulong k) noexcept
|
24
|
+
void arith_stirling_number_1u_vec(fmpz * row, ulong n, slong klen) noexcept
|
25
|
+
void arith_stirling_number_1_vec(fmpz * row, ulong n, slong klen) noexcept
|
26
|
+
void arith_stirling_number_2_vec(fmpz * row, ulong n, slong klen) noexcept
|
27
|
+
void arith_stirling_number_1u_vec_next(fmpz * row, const fmpz * prev, slong n, slong klen) noexcept
|
28
|
+
void arith_stirling_number_1_vec_next(fmpz * row, const fmpz * prev, slong n, slong klen) noexcept
|
29
|
+
void arith_stirling_number_2_vec_next(fmpz * row, const fmpz * prev, slong n, slong klen) noexcept
|
30
|
+
void arith_stirling_matrix_1u(fmpz_mat_t mat) noexcept
|
31
|
+
void arith_stirling_matrix_1(fmpz_mat_t mat) noexcept
|
32
|
+
void arith_stirling_matrix_2(fmpz_mat_t mat) noexcept
|
33
|
+
void arith_bell_number(fmpz_t b, ulong n) noexcept
|
34
|
+
void arith_bell_number_dobinski(fmpz_t res, ulong n) noexcept
|
35
|
+
void arith_bell_number_multi_mod(fmpz_t res, ulong n) noexcept
|
36
|
+
void arith_bell_number_vec(fmpz * b, slong n) noexcept
|
37
|
+
void arith_bell_number_vec_recursive(fmpz * b, slong n) noexcept
|
38
|
+
void arith_bell_number_vec_multi_mod(fmpz * b, slong n) noexcept
|
39
|
+
mp_limb_t arith_bell_number_nmod(ulong n, nmod_t mod) noexcept
|
40
|
+
void arith_bell_number_nmod_vec(mp_ptr b, slong n, nmod_t mod) noexcept
|
41
|
+
void arith_bell_number_nmod_vec_recursive(mp_ptr b, slong n, nmod_t mod) noexcept
|
42
|
+
void arith_bell_number_nmod_vec_ogf(mp_ptr b, slong n, nmod_t mod) noexcept
|
43
|
+
int arith_bell_number_nmod_vec_series(mp_ptr b, slong n, nmod_t mod) noexcept
|
44
|
+
double arith_bell_number_size(ulong n) noexcept
|
45
|
+
void _arith_bernoulli_number(fmpz_t num, fmpz_t den, ulong n) noexcept
|
46
|
+
void arith_bernoulli_number(fmpq_t x, ulong n) noexcept
|
47
|
+
void _arith_bernoulli_number_vec(fmpz * num, fmpz * den, slong n) noexcept
|
48
|
+
void arith_bernoulli_number_vec(fmpq * x, slong n) noexcept
|
49
|
+
void arith_bernoulli_number_denom(fmpz_t den, ulong n) noexcept
|
50
|
+
double arith_bernoulli_number_size(ulong n) noexcept
|
51
|
+
void arith_bernoulli_polynomial(fmpq_poly_t poly, ulong n) noexcept
|
52
|
+
void _arith_bernoulli_number_vec_recursive(fmpz * num, fmpz * den, slong n) noexcept
|
53
|
+
void _arith_bernoulli_number_vec_multi_mod(fmpz * num, fmpz * den, slong n) noexcept
|
54
|
+
void arith_euler_number(fmpz_t res, ulong n) noexcept
|
55
|
+
void arith_euler_number_vec(fmpz * res, slong n) noexcept
|
56
|
+
double arith_euler_number_size(ulong n) noexcept
|
57
|
+
void arith_euler_polynomial(fmpq_poly_t poly, ulong n) noexcept
|
58
|
+
void arith_euler_phi(fmpz_t res, const fmpz_t n) noexcept
|
59
|
+
int arith_moebius_mu(const fmpz_t n) noexcept
|
60
|
+
void arith_divisor_sigma(fmpz_t res, ulong k, const fmpz_t n) noexcept
|
61
|
+
void arith_divisors(fmpz_poly_t res, const fmpz_t n) noexcept
|
62
|
+
void arith_ramanujan_tau(fmpz_t res, const fmpz_t n) noexcept
|
63
|
+
void arith_ramanujan_tau_series(fmpz_poly_t res, slong n) noexcept
|
64
|
+
void arith_landau_function_vec(fmpz * res, slong len) noexcept
|
65
|
+
void arith_dedekind_sum_naive(fmpq_t s, const fmpz_t h, const fmpz_t k) noexcept
|
66
|
+
double arith_dedekind_sum_coprime_d(double h, double k) noexcept
|
67
|
+
void arith_dedekind_sum_coprime_large(fmpq_t s, const fmpz_t h, const fmpz_t k) noexcept
|
68
|
+
void arith_dedekind_sum_coprime(fmpq_t s, const fmpz_t h, const fmpz_t k) noexcept
|
69
|
+
void arith_dedekind_sum(fmpq_t s, const fmpz_t h, const fmpz_t k) noexcept
|
70
|
+
void arith_number_of_partitions_vec(fmpz * res, slong len) noexcept
|
71
|
+
void arith_number_of_partitions_nmod_vec(mp_ptr res, slong len, nmod_t mod) noexcept
|
72
|
+
void arith_hrr_expsum_factored(trig_prod_t prod, mp_limb_t k, mp_limb_t n) noexcept
|
73
|
+
void arith_number_of_partitions_mpfr(mpfr_t x, ulong n) noexcept
|
74
|
+
void arith_number_of_partitions(fmpz_t x, ulong n) noexcept
|
75
|
+
void arith_sum_of_squares(fmpz_t r, ulong k, const fmpz_t n) noexcept
|
76
|
+
void arith_sum_of_squares_vec(fmpz * r, ulong k, slong n) noexcept
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
r"""
|
3
|
+
Deprecated module.
|
4
|
+
|
5
|
+
Functions were moved in arith_sage.pyx
|
6
|
+
|
7
|
+
TESTS::
|
8
|
+
|
9
|
+
sage: from sage.libs.flint.arith import bell_number, bernoulli_number, euler_number, stirling_number_1, stirling_number_2, number_of_partitions, dedekind_sum, harmonic_number
|
10
|
+
sage: bell_number(4)
|
11
|
+
doctest:warning
|
12
|
+
...
|
13
|
+
DeprecationWarning:
|
14
|
+
Importing bell_number from here is deprecated; please use "from sage.libs.flint.arith_sage import bell_number" instead.
|
15
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
16
|
+
15
|
17
|
+
sage: bernoulli_number(4)
|
18
|
+
doctest:warning
|
19
|
+
...
|
20
|
+
DeprecationWarning:
|
21
|
+
Importing bernoulli_number from here is deprecated; please use "from sage.libs.flint.arith_sage import bernoulli_number" instead.
|
22
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
23
|
+
-1/30
|
24
|
+
sage: euler_number(4)
|
25
|
+
doctest:warning
|
26
|
+
...
|
27
|
+
DeprecationWarning:
|
28
|
+
Importing euler_number from here is deprecated; please use "from sage.libs.flint.arith_sage import euler_number" instead.
|
29
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
30
|
+
5
|
31
|
+
sage: stirling_number_1(2, 4)
|
32
|
+
doctest:warning
|
33
|
+
...
|
34
|
+
DeprecationWarning:
|
35
|
+
Importing stirling_number_1 from here is deprecated; please use "from sage.libs.flint.arith_sage import stirling_number_1" instead.
|
36
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
37
|
+
0
|
38
|
+
sage: stirling_number_2(2, 4)
|
39
|
+
doctest:warning
|
40
|
+
...
|
41
|
+
DeprecationWarning:
|
42
|
+
Importing stirling_number_2 from here is deprecated; please use "from sage.libs.flint.arith_sage import stirling_number_2" instead.
|
43
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
44
|
+
0
|
45
|
+
sage: number_of_partitions(4)
|
46
|
+
doctest:warning
|
47
|
+
...
|
48
|
+
DeprecationWarning:
|
49
|
+
Importing number_of_partitions from here is deprecated; please use "from sage.libs.flint.arith_sage import number_of_partitions" instead.
|
50
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
51
|
+
5
|
52
|
+
sage: dedekind_sum(4, 5)
|
53
|
+
doctest:warning
|
54
|
+
...
|
55
|
+
DeprecationWarning:
|
56
|
+
Importing dedekind_sum from here is deprecated; please use "from sage.libs.flint.arith_sage import dedekind_sum" instead.
|
57
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
58
|
+
-1/5
|
59
|
+
sage: harmonic_number(4)
|
60
|
+
doctest:warning
|
61
|
+
...
|
62
|
+
DeprecationWarning:
|
63
|
+
Importing harmonic_number from here is deprecated; please use "from sage.libs.flint.arith_sage import harmonic_number" instead.
|
64
|
+
See https://github.com/sagemath/sage/issues/36449 for details.
|
65
|
+
25/12
|
66
|
+
"""
|
67
|
+
|
68
|
+
from sage.misc.lazy_import import LazyImport
|
69
|
+
|
70
|
+
bell_number = LazyImport('sage.libs.flint.arith_sage', 'bell_number', deprecation=36449)
|
71
|
+
bernoulli_number = LazyImport('sage.libs.flint.arith_sage', 'bernoulli_number', deprecation=36449)
|
72
|
+
euler_number = LazyImport('sage.libs.flint.arith_sage', 'euler_number', deprecation=36449)
|
73
|
+
stirling_number_1 = LazyImport('sage.libs.flint.arith_sage', 'stirling_number_1', deprecation=36449)
|
74
|
+
stirling_number_2 = LazyImport('sage.libs.flint.arith_sage', 'stirling_number_2', deprecation=36449)
|
75
|
+
number_of_partitions = LazyImport('sage.libs.flint.arith_sage', 'number_of_partitions', deprecation=36449)
|
76
|
+
dedekind_sum = LazyImport('sage.libs.flint.arith_sage', 'dedekind_sum', deprecation=36449)
|
77
|
+
harmonic_number = LazyImport('sage.libs.flint.arith_sage', 'harmonic_number', deprecation=36449)
|
Binary file
|