passagemath-flint 10.6.1rc10__cp313-cp313-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-313-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-313-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-313-x86_64-linux-gnu.so +0 -0
- sage/graphs/chrompoly.pyx +555 -0
- sage/graphs/matchpoly.cpython-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-x86_64-linux-gnu.so +0 -0
- sage/matrix/change_ring.pyx +43 -0
- sage/matrix/matrix_complex_ball_dense.cpython-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-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-313-x86_64-linux-gnu.so +0 -0
- sage/rings/factorint_flint.pyx +99 -0
- sage/rings/fraction_field_FpT.cpython-313-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-313-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-313-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-313-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-313-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-313-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/hilbert.pyx +602 -0
- sage/rings/polynomial/polynomial_complex_arb.cpython-313-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-313-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-313-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_number_field.pyx +345 -0
- sage/rings/polynomial/polynomial_rational_flint.cpython-313-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-313-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-313-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-313-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-313-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-313-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-313-x86_64-linux-gnu.so +0 -0
- sage/rings/real_interval_absolute.pyx +1073 -0
- sage/rings/real_mpfi.cpython-313-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-313-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,76 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/nmod_poly_mat.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 nmod_poly_mat_init(nmod_poly_mat_t mat, slong rows, slong cols, mp_limb_t n) noexcept
|
19
|
+
void nmod_poly_mat_init_set(nmod_poly_mat_t mat, const nmod_poly_mat_t src) noexcept
|
20
|
+
void nmod_poly_mat_clear(nmod_poly_mat_t mat) noexcept
|
21
|
+
void nmod_poly_mat_set_trunc(nmod_poly_mat_t res, const nmod_poly_mat_t pmat, long len) noexcept
|
22
|
+
void nmod_poly_mat_truncate(nmod_poly_mat_t pmat, long len) noexcept
|
23
|
+
void nmod_poly_mat_shift_left(nmod_poly_mat_t res, const nmod_poly_mat_t pmat, slong k) noexcept
|
24
|
+
void nmod_poly_mat_shift_right(nmod_poly_mat_t res, const nmod_poly_mat_t pmat, slong k) noexcept
|
25
|
+
slong nmod_poly_mat_nrows(const nmod_poly_mat_t mat) noexcept
|
26
|
+
slong nmod_poly_mat_ncols(const nmod_poly_mat_t mat) noexcept
|
27
|
+
mp_limb_t nmod_poly_mat_modulus(const nmod_poly_mat_t mat) noexcept
|
28
|
+
nmod_poly_struct * nmod_poly_mat_entry(const nmod_poly_mat_t mat, slong i, slong j) noexcept
|
29
|
+
void nmod_poly_mat_set(nmod_poly_mat_t mat1, const nmod_poly_mat_t mat2) noexcept
|
30
|
+
void nmod_poly_mat_set_nmod_mat(nmod_poly_mat_t pmat, const nmod_mat_t cmat) noexcept
|
31
|
+
void nmod_poly_mat_swap(nmod_poly_mat_t mat1, nmod_poly_mat_t mat2) noexcept
|
32
|
+
void nmod_poly_mat_swap_entrywise(nmod_poly_mat_t mat1, nmod_poly_mat_t mat2) noexcept
|
33
|
+
void nmod_poly_mat_print(const nmod_poly_mat_t mat, const char * x) noexcept
|
34
|
+
void nmod_poly_mat_randtest(nmod_poly_mat_t mat, flint_rand_t state, slong len) noexcept
|
35
|
+
void nmod_poly_mat_randtest_sparse(nmod_poly_mat_t A, flint_rand_t state, slong len, float density) noexcept
|
36
|
+
void nmod_poly_mat_zero(nmod_poly_mat_t mat) noexcept
|
37
|
+
void nmod_poly_mat_one(nmod_poly_mat_t mat) noexcept
|
38
|
+
bint nmod_poly_mat_equal(const nmod_poly_mat_t mat1, const nmod_poly_mat_t mat2) noexcept
|
39
|
+
bint nmod_poly_mat_equal_nmod_mat(const nmod_poly_mat_t pmat, const nmod_mat_t cmat) noexcept
|
40
|
+
bint nmod_poly_mat_is_zero(const nmod_poly_mat_t mat) noexcept
|
41
|
+
bint nmod_poly_mat_is_one(const nmod_poly_mat_t mat) noexcept
|
42
|
+
bint nmod_poly_mat_is_empty(const nmod_poly_mat_t mat) noexcept
|
43
|
+
bint nmod_poly_mat_is_square(const nmod_poly_mat_t mat) noexcept
|
44
|
+
void nmod_poly_mat_get_coeff_mat(nmod_mat_t coeff, const nmod_poly_mat_t pmat, slong deg) noexcept
|
45
|
+
void nmod_poly_mat_set_coeff_mat(nmod_poly_mat_t pmat, const nmod_mat_t coeff, slong deg) noexcept
|
46
|
+
slong nmod_poly_mat_max_length(const nmod_poly_mat_t A) noexcept
|
47
|
+
slong nmod_poly_mat_degree(const nmod_poly_mat_t pmat) noexcept
|
48
|
+
void nmod_poly_mat_evaluate_nmod(nmod_mat_t B, const nmod_poly_mat_t A, mp_limb_t x) noexcept
|
49
|
+
void nmod_poly_mat_scalar_mul_nmod_poly(nmod_poly_mat_t B, const nmod_poly_mat_t A, const nmod_poly_t c) noexcept
|
50
|
+
void nmod_poly_mat_scalar_mul_nmod(nmod_poly_mat_t B, const nmod_poly_mat_t A, mp_limb_t c) noexcept
|
51
|
+
void nmod_poly_mat_add(nmod_poly_mat_t C, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
52
|
+
void nmod_poly_mat_sub(nmod_poly_mat_t C, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
53
|
+
void nmod_poly_mat_neg(nmod_poly_mat_t B, const nmod_poly_mat_t A) noexcept
|
54
|
+
void nmod_poly_mat_mul(nmod_poly_mat_t C, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
55
|
+
void nmod_poly_mat_mul_classical(nmod_poly_mat_t C, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
56
|
+
void nmod_poly_mat_mul_KS(nmod_poly_mat_t C, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
57
|
+
void nmod_poly_mat_mul_interpolate(nmod_poly_mat_t C, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
58
|
+
void nmod_poly_mat_sqr(nmod_poly_mat_t B, const nmod_poly_mat_t A) noexcept
|
59
|
+
void nmod_poly_mat_sqr_classical(nmod_poly_mat_t B, const nmod_poly_mat_t A) noexcept
|
60
|
+
void nmod_poly_mat_sqr_KS(nmod_poly_mat_t B, const nmod_poly_mat_t A) noexcept
|
61
|
+
void nmod_poly_mat_sqr_interpolate(nmod_poly_mat_t B, const nmod_poly_mat_t A) noexcept
|
62
|
+
void nmod_poly_mat_pow(nmod_poly_mat_t B, const nmod_poly_mat_t A, ulong exp) noexcept
|
63
|
+
slong nmod_poly_mat_find_pivot_any(const nmod_poly_mat_t mat, slong start_row, slong end_row, slong c) noexcept
|
64
|
+
slong nmod_poly_mat_find_pivot_partial(const nmod_poly_mat_t mat, slong start_row, slong end_row, slong c) noexcept
|
65
|
+
slong nmod_poly_mat_fflu(nmod_poly_mat_t B, nmod_poly_t den, slong * perm, const nmod_poly_mat_t A, int rank_check) noexcept
|
66
|
+
slong nmod_poly_mat_rref(nmod_poly_mat_t B, nmod_poly_t den, const nmod_poly_mat_t A) noexcept
|
67
|
+
void nmod_poly_mat_trace(nmod_poly_t trace, const nmod_poly_mat_t mat) noexcept
|
68
|
+
void nmod_poly_mat_det(nmod_poly_t det, const nmod_poly_mat_t A) noexcept
|
69
|
+
void nmod_poly_mat_det_fflu(nmod_poly_t det, const nmod_poly_mat_t A) noexcept
|
70
|
+
void nmod_poly_mat_det_interpolate(nmod_poly_t det, const nmod_poly_mat_t A) noexcept
|
71
|
+
slong nmod_poly_mat_rank(const nmod_poly_mat_t A) noexcept
|
72
|
+
int nmod_poly_mat_inv(nmod_poly_mat_t Ainv, nmod_poly_t den, const nmod_poly_mat_t A) noexcept
|
73
|
+
slong nmod_poly_mat_nullspace(nmod_poly_mat_t res, const nmod_poly_mat_t mat) noexcept
|
74
|
+
int nmod_poly_mat_solve(nmod_poly_mat_t X, nmod_poly_t den, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
75
|
+
int nmod_poly_mat_solve_fflu(nmod_poly_mat_t X, nmod_poly_t den, const nmod_poly_mat_t A, const nmod_poly_mat_t B) noexcept
|
76
|
+
void nmod_poly_mat_solve_fflu_precomp(nmod_poly_mat_t X, const slong * perm, const nmod_poly_mat_t FFLU, const nmod_poly_mat_t B) noexcept
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/nmod_vec.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
|
+
mp_ptr _nmod_vec_init(slong len) noexcept
|
19
|
+
void _nmod_vec_clear(mp_ptr vec) noexcept
|
20
|
+
void _nmod_vec_randtest(mp_ptr vec, flint_rand_t state, slong len, nmod_t mod) noexcept
|
21
|
+
void _nmod_vec_set(mp_ptr res, mp_srcptr vec, slong len) noexcept
|
22
|
+
void _nmod_vec_zero(mp_ptr vec, slong len) noexcept
|
23
|
+
void _nmod_vec_swap(mp_ptr a, mp_ptr b, slong length) noexcept
|
24
|
+
void _nmod_vec_reduce(mp_ptr res, mp_srcptr vec, slong len, nmod_t mod) noexcept
|
25
|
+
flint_bitcnt_t _nmod_vec_max_bits(mp_srcptr vec, slong len) noexcept
|
26
|
+
bint _nmod_vec_equal(mp_srcptr vec, mp_srcptr vec2, slong len) noexcept
|
27
|
+
void _nmod_vec_print_pretty(mp_srcptr vec, slong len, nmod_t mod) noexcept
|
28
|
+
int _nmod_vec_fprint_pretty(FILE * file, mp_srcptr vec, slong len, nmod_t mod) noexcept
|
29
|
+
int _nmod_vec_print(mp_srcptr vec, slong len, nmod_t mod) noexcept
|
30
|
+
int _nmod_vec_fprint(FILE * f, mp_srcptr vec, slong len, nmod_t mod) noexcept
|
31
|
+
void _nmod_vec_add(mp_ptr res, mp_srcptr vec1, mp_srcptr vec2, slong len, nmod_t mod) noexcept
|
32
|
+
void _nmod_vec_sub(mp_ptr res, mp_srcptr vec1, mp_srcptr vec2, slong len, nmod_t mod) noexcept
|
33
|
+
void _nmod_vec_neg(mp_ptr res, mp_srcptr vec, slong len, nmod_t mod) noexcept
|
34
|
+
void _nmod_vec_scalar_mul_nmod(mp_ptr res, mp_srcptr vec, slong len, mp_limb_t c, nmod_t mod) noexcept
|
35
|
+
void _nmod_vec_scalar_mul_nmod_shoup(mp_ptr res, mp_srcptr vec, slong len, mp_limb_t c, nmod_t mod) noexcept
|
36
|
+
void _nmod_vec_scalar_addmul_nmod(mp_ptr res, mp_srcptr vec, slong len, mp_limb_t c, nmod_t mod) noexcept
|
37
|
+
int _nmod_vec_dot_bound_limbs(slong len, nmod_t mod) noexcept
|
38
|
+
mp_limb_t _nmod_vec_dot(mp_srcptr vec1, mp_srcptr vec2, slong len, nmod_t mod, int nlimbs) noexcept
|
39
|
+
mp_limb_t _nmod_vec_dot_rev(mp_srcptr vec1, mp_srcptr vec2, slong len, nmod_t mod, int nlimbs) noexcept
|
40
|
+
mp_limb_t _nmod_vec_dot_ptr(mp_srcptr vec1, const mp_ptr * vec2, slong offset, slong len, nmod_t mod, int nlimbs) noexcept
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: language = c++
|
3
|
+
# distutils: libraries = flint
|
4
|
+
# distutils: depends = flint/NTL-interface.h
|
5
|
+
|
6
|
+
from sage.libs.flint.types cimport fmpz_t, fmpz_poly_t
|
7
|
+
|
8
|
+
from sage.libs.ntl.ZZ cimport ZZ_c
|
9
|
+
from sage.libs.ntl.ZZX cimport ZZX_c
|
10
|
+
|
11
|
+
# flint/NTL-interface.h
|
12
|
+
cdef extern from "flint_ntl_wrap.h":
|
13
|
+
void fmpz_poly_get_ZZX(ZZX_c output, fmpz_poly_t poly)
|
14
|
+
void fmpz_poly_set_ZZX(fmpz_poly_t output, ZZX_c poly)
|
15
|
+
|
16
|
+
void fmpz_get_ZZ(ZZ_c output, fmpz_t f)
|
17
|
+
void fmpz_set_ZZ(fmpz_t output, ZZ_c z)
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/padic.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
|
+
fmpz * padic_unit(const padic_t op) noexcept
|
19
|
+
slong padic_val(const padic_t op) noexcept
|
20
|
+
slong padic_get_val(const padic_t op) noexcept
|
21
|
+
slong padic_prec(const padic_t op) noexcept
|
22
|
+
slong padic_get_prec(const padic_t op) noexcept
|
23
|
+
void padic_ctx_init(padic_ctx_t ctx, const fmpz_t p, slong min, slong max, padic_print_mode mode) noexcept
|
24
|
+
void padic_ctx_clear(padic_ctx_t ctx) noexcept
|
25
|
+
int _padic_ctx_pow_ui(fmpz_t rop, ulong e, const padic_ctx_t ctx) noexcept
|
26
|
+
void padic_init(padic_t rop) noexcept
|
27
|
+
void padic_init2(padic_t rop, slong N) noexcept
|
28
|
+
void padic_clear(padic_t rop) noexcept
|
29
|
+
void _padic_canonicalise(padic_t rop, const padic_ctx_t ctx) noexcept
|
30
|
+
void _padic_reduce(padic_t rop, const padic_ctx_t ctx) noexcept
|
31
|
+
void padic_reduce(padic_t rop, const padic_ctx_t ctx) noexcept
|
32
|
+
void padic_randtest(padic_t rop, flint_rand_t state, const padic_ctx_t ctx) noexcept
|
33
|
+
void padic_randtest_not_zero(padic_t rop, flint_rand_t state, const padic_ctx_t ctx) noexcept
|
34
|
+
void padic_randtest_int(padic_t rop, flint_rand_t state, const padic_ctx_t ctx) noexcept
|
35
|
+
void padic_set(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
36
|
+
void padic_set_si(padic_t rop, slong op, const padic_ctx_t ctx) noexcept
|
37
|
+
void padic_set_ui(padic_t rop, ulong op, const padic_ctx_t ctx) noexcept
|
38
|
+
void padic_set_fmpz(padic_t rop, const fmpz_t op, const padic_ctx_t ctx) noexcept
|
39
|
+
void padic_set_fmpq(padic_t rop, const fmpq_t op, const padic_ctx_t ctx) noexcept
|
40
|
+
void padic_set_mpz(padic_t rop, const mpz_t op, const padic_ctx_t ctx) noexcept
|
41
|
+
void padic_set_mpq(padic_t rop, const mpq_t op, const padic_ctx_t ctx) noexcept
|
42
|
+
void padic_get_fmpz(fmpz_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
43
|
+
void padic_get_fmpq(fmpq_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
44
|
+
void padic_get_mpz(mpz_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
45
|
+
void padic_get_mpq(mpq_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
46
|
+
void padic_swap(padic_t op1, padic_t op2) noexcept
|
47
|
+
void padic_zero(padic_t rop) noexcept
|
48
|
+
void padic_one(padic_t rop) noexcept
|
49
|
+
bint padic_is_zero(const padic_t op) noexcept
|
50
|
+
bint padic_is_one(const padic_t op) noexcept
|
51
|
+
bint padic_equal(const padic_t op1, const padic_t op2) noexcept
|
52
|
+
slong * _padic_lifts_exps(slong * n, slong N) noexcept
|
53
|
+
void _padic_lifts_pows(fmpz * pow, const slong * a, slong n, const fmpz_t p) noexcept
|
54
|
+
void padic_add(padic_t rop, const padic_t op1, const padic_t op2, const padic_ctx_t ctx) noexcept
|
55
|
+
void padic_sub(padic_t rop, const padic_t op1, const padic_t op2, const padic_ctx_t ctx) noexcept
|
56
|
+
void padic_neg(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
57
|
+
void padic_mul(padic_t rop, const padic_t op1, const padic_t op2, const padic_ctx_t ctx) noexcept
|
58
|
+
void padic_shift(padic_t rop, const padic_t op, slong v, const padic_ctx_t ctx) noexcept
|
59
|
+
void padic_div(padic_t rop, const padic_t op1, const padic_t op2, const padic_ctx_t ctx) noexcept
|
60
|
+
void _padic_inv_precompute(padic_inv_t S, const fmpz_t p, slong N) noexcept
|
61
|
+
void _padic_inv_clear(padic_inv_t S) noexcept
|
62
|
+
void _padic_inv_precomp(fmpz_t rop, const fmpz_t op, const padic_inv_t S) noexcept
|
63
|
+
void _padic_inv(fmpz_t rop, const fmpz_t op, const fmpz_t p, slong N) noexcept
|
64
|
+
void padic_inv(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
65
|
+
int padic_sqrt(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
66
|
+
void padic_pow_si(padic_t rop, const padic_t op, slong e, const padic_ctx_t ctx) noexcept
|
67
|
+
slong _padic_exp_bound(slong v, slong N, const fmpz_t p) noexcept
|
68
|
+
void _padic_exp_rectangular(fmpz_t rop, const fmpz_t u, slong v, const fmpz_t p, slong N) noexcept
|
69
|
+
void _padic_exp_balanced(fmpz_t rop, const fmpz_t u, slong v, const fmpz_t p, slong N) noexcept
|
70
|
+
void _padic_exp(fmpz_t rop, const fmpz_t u, slong v, const fmpz_t p, slong N) noexcept
|
71
|
+
int padic_exp(padic_t y, const padic_t x, const padic_ctx_t ctx) noexcept
|
72
|
+
int padic_exp_rectangular(padic_t y, const padic_t x, const padic_ctx_t ctx) noexcept
|
73
|
+
int padic_exp_balanced(padic_t y, const padic_t x, const padic_ctx_t ctx) noexcept
|
74
|
+
slong _padic_log_bound(slong v, slong N, const fmpz_t p) noexcept
|
75
|
+
void _padic_log(fmpz_t z, const fmpz_t y, slong v, const fmpz_t p, slong N) noexcept
|
76
|
+
void _padic_log_rectangular(fmpz_t z, const fmpz_t y, slong v, const fmpz_t p, slong N) noexcept
|
77
|
+
void _padic_log_satoh(fmpz_t z, const fmpz_t y, slong v, const fmpz_t p, slong N) noexcept
|
78
|
+
void _padic_log_balanced(fmpz_t z, const fmpz_t y, slong v, const fmpz_t p, slong N) noexcept
|
79
|
+
int padic_log(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
80
|
+
int padic_log_rectangular(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
81
|
+
int padic_log_satoh(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
82
|
+
int padic_log_balanced(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
83
|
+
void _padic_teichmuller(fmpz_t rop, const fmpz_t op, const fmpz_t p, slong N) noexcept
|
84
|
+
void padic_teichmuller(padic_t rop, const padic_t op, const padic_ctx_t ctx) noexcept
|
85
|
+
ulong padic_val_fac_ui_2(ulong n) noexcept
|
86
|
+
ulong padic_val_fac_ui(ulong n, const fmpz_t p) noexcept
|
87
|
+
void padic_val_fac(fmpz_t rop, const fmpz_t op, const fmpz_t p) noexcept
|
88
|
+
char * padic_get_str(char * str, const padic_t op, const padic_ctx_t ctx) noexcept
|
89
|
+
int _padic_fprint(FILE * file, const fmpz_t u, slong v, const padic_ctx_t ctx) noexcept
|
90
|
+
int padic_fprint(FILE * file, const padic_t op, const padic_ctx_t ctx) noexcept
|
91
|
+
int _padic_print(const fmpz_t u, slong v, const padic_ctx_t ctx) noexcept
|
92
|
+
int padic_print(const padic_t op, const padic_ctx_t ctx) noexcept
|
93
|
+
void padic_debug(const padic_t op) noexcept
|
@@ -0,0 +1,64 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/padic_mat.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
|
+
fmpz_mat_struct * padic_mat(const padic_mat_t A) noexcept
|
19
|
+
fmpz * padic_mat_entry(const padic_mat_t A, slong i, slong j) noexcept
|
20
|
+
slong padic_mat_val(const padic_mat_t A) noexcept
|
21
|
+
slong padic_mat_prec(const padic_mat_t A) noexcept
|
22
|
+
slong padic_mat_get_val(const padic_mat_t A) noexcept
|
23
|
+
slong padic_mat_get_prec(const padic_mat_t A) noexcept
|
24
|
+
slong padic_mat_nrows(const padic_mat_t A) noexcept
|
25
|
+
slong padic_mat_ncols(const padic_mat_t A) noexcept
|
26
|
+
void padic_mat_init(padic_mat_t A, slong r, slong c) noexcept
|
27
|
+
void padic_mat_init2(padic_mat_t A, slong r, slong c, slong prec) noexcept
|
28
|
+
void padic_mat_clear(padic_mat_t A) noexcept
|
29
|
+
void _padic_mat_canonicalise(padic_mat_t A, const padic_ctx_t ctx) noexcept
|
30
|
+
void _padic_mat_reduce(padic_mat_t A, const padic_ctx_t ctx) noexcept
|
31
|
+
void padic_mat_reduce(padic_mat_t A, const padic_ctx_t ctx) noexcept
|
32
|
+
bint padic_mat_is_empty(const padic_mat_t A) noexcept
|
33
|
+
bint padic_mat_is_square(const padic_mat_t A) noexcept
|
34
|
+
bint padic_mat_is_canonical(const padic_mat_t A, const padic_ctx_t p) noexcept
|
35
|
+
void padic_mat_set(padic_mat_t B, const padic_mat_t A, const padic_ctx_t p) noexcept
|
36
|
+
void padic_mat_swap(padic_mat_t A, padic_mat_t B) noexcept
|
37
|
+
void padic_mat_swap_entrywise(padic_mat_t mat1, padic_mat_t mat2) noexcept
|
38
|
+
void padic_mat_zero(padic_mat_t A) noexcept
|
39
|
+
void padic_mat_one(padic_mat_t A) noexcept
|
40
|
+
void padic_mat_set_fmpq_mat(padic_mat_t B, const fmpq_mat_t A, const padic_ctx_t ctx) noexcept
|
41
|
+
void padic_mat_get_fmpq_mat(fmpq_mat_t B, const padic_mat_t A, const padic_ctx_t ctx) noexcept
|
42
|
+
void padic_mat_get_entry_padic(padic_t rop, const padic_mat_t op, slong i, slong j, const padic_ctx_t ctx) noexcept
|
43
|
+
void padic_mat_set_entry_padic(padic_mat_t rop, slong i, slong j, const padic_t op, const padic_ctx_t ctx) noexcept
|
44
|
+
bint padic_mat_equal(const padic_mat_t A, const padic_mat_t B) noexcept
|
45
|
+
bint padic_mat_is_zero(const padic_mat_t A) noexcept
|
46
|
+
int padic_mat_fprint(FILE * file, const padic_mat_t A, const padic_ctx_t ctx) noexcept
|
47
|
+
int padic_mat_fprint_pretty(FILE * file, const padic_mat_t A, const padic_ctx_t ctx) noexcept
|
48
|
+
int padic_mat_print(const padic_mat_t A, const padic_ctx_t ctx) noexcept
|
49
|
+
int padic_mat_print_pretty(const padic_mat_t A, const padic_ctx_t ctx) noexcept
|
50
|
+
void padic_mat_randtest(padic_mat_t A, flint_rand_t state, const padic_ctx_t ctx) noexcept
|
51
|
+
void padic_mat_transpose(padic_mat_t B, const padic_mat_t A) noexcept
|
52
|
+
void _padic_mat_add(padic_mat_t C, const padic_mat_t A, const padic_mat_t B, const padic_ctx_t ctx) noexcept
|
53
|
+
void padic_mat_add(padic_mat_t C, const padic_mat_t A, const padic_mat_t B, const padic_ctx_t ctx) noexcept
|
54
|
+
void _padic_mat_sub(padic_mat_t C, const padic_mat_t A, const padic_mat_t B, const padic_ctx_t ctx) noexcept
|
55
|
+
void padic_mat_sub(padic_mat_t C, const padic_mat_t A, const padic_mat_t B, const padic_ctx_t ctx) noexcept
|
56
|
+
void _padic_mat_neg(padic_mat_t B, const padic_mat_t A) noexcept
|
57
|
+
void padic_mat_neg(padic_mat_t B, const padic_mat_t A, const padic_ctx_t ctx) noexcept
|
58
|
+
void _padic_mat_scalar_mul_padic(padic_mat_t B, const padic_mat_t A, const padic_t c, const padic_ctx_t ctx) noexcept
|
59
|
+
void padic_mat_scalar_mul_padic(padic_mat_t B, const padic_mat_t A, const padic_t c, const padic_ctx_t ctx) noexcept
|
60
|
+
void _padic_mat_scalar_mul_fmpz(padic_mat_t B, const padic_mat_t A, const fmpz_t c, const padic_ctx_t ctx) noexcept
|
61
|
+
void padic_mat_scalar_mul_fmpz(padic_mat_t B, const padic_mat_t A, const fmpz_t c, const padic_ctx_t ctx) noexcept
|
62
|
+
void padic_mat_scalar_div_fmpz(padic_mat_t B, const padic_mat_t A, const fmpz_t c, const padic_ctx_t ctx) noexcept
|
63
|
+
void _padic_mat_mul(padic_mat_t C, const padic_mat_t A, const padic_mat_t B, const padic_ctx_t ctx) noexcept
|
64
|
+
void padic_mat_mul(padic_mat_t C, const padic_mat_t A, const padic_mat_t B, const padic_ctx_t ctx) noexcept
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/padic_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 padic_poly_init(padic_poly_t poly) noexcept
|
19
|
+
void padic_poly_init2(padic_poly_t poly, slong alloc, slong prec) noexcept
|
20
|
+
void padic_poly_realloc(padic_poly_t poly, slong alloc, const fmpz_t p) noexcept
|
21
|
+
void padic_poly_fit_length(padic_poly_t poly, slong len) noexcept
|
22
|
+
void _padic_poly_set_length(padic_poly_t poly, slong len) noexcept
|
23
|
+
void padic_poly_clear(padic_poly_t poly) noexcept
|
24
|
+
void _padic_poly_normalise(padic_poly_t poly) noexcept
|
25
|
+
void _padic_poly_canonicalise(fmpz * poly, slong * v, slong len, const fmpz_t p) noexcept
|
26
|
+
void padic_poly_canonicalise(padic_poly_t poly, const fmpz_t p) noexcept
|
27
|
+
void padic_poly_reduce(padic_poly_t poly, const padic_ctx_t ctx) noexcept
|
28
|
+
void padic_poly_truncate(padic_poly_t poly, slong n, const fmpz_t p) noexcept
|
29
|
+
slong padic_poly_degree(const padic_poly_t poly) noexcept
|
30
|
+
slong padic_poly_length(const padic_poly_t poly) noexcept
|
31
|
+
slong padic_poly_val(const padic_poly_t poly) noexcept
|
32
|
+
slong padic_poly_prec(padic_poly_t poly) noexcept
|
33
|
+
void padic_poly_randtest(padic_poly_t f, flint_rand_t state, slong len, const padic_ctx_t ctx) noexcept
|
34
|
+
void padic_poly_randtest_not_zero(padic_poly_t f, flint_rand_t state, slong len, const padic_ctx_t ctx) noexcept
|
35
|
+
void padic_poly_randtest_val(padic_poly_t f, flint_rand_t state, slong val, slong len, const padic_ctx_t ctx) noexcept
|
36
|
+
void padic_poly_set_padic(padic_poly_t poly, const padic_t x, const padic_ctx_t ctx) noexcept
|
37
|
+
void padic_poly_set(padic_poly_t poly1, const padic_poly_t poly2, const padic_ctx_t ctx) noexcept
|
38
|
+
void padic_poly_set_si(padic_poly_t poly, slong x, const padic_ctx_t ctx) noexcept
|
39
|
+
void padic_poly_set_ui(padic_poly_t poly, ulong x, const padic_ctx_t ctx) noexcept
|
40
|
+
void padic_poly_set_fmpz(padic_poly_t poly, const fmpz_t x, const padic_ctx_t ctx) noexcept
|
41
|
+
void padic_poly_set_fmpq(padic_poly_t poly, const fmpq_t x, const padic_ctx_t ctx) noexcept
|
42
|
+
void padic_poly_set_fmpz_poly(padic_poly_t rop, const fmpz_poly_t op, const padic_ctx_t ctx) noexcept
|
43
|
+
void padic_poly_set_fmpq_poly(padic_poly_t rop, const fmpq_poly_t op, const padic_ctx_t ctx) noexcept
|
44
|
+
int padic_poly_get_fmpz_poly(fmpz_poly_t rop, const padic_poly_t op, const padic_ctx_t ctx) noexcept
|
45
|
+
void padic_poly_get_fmpq_poly(fmpq_poly_t rop, const padic_poly_t op, const padic_ctx_t ctx) noexcept
|
46
|
+
void padic_poly_zero(padic_poly_t poly) noexcept
|
47
|
+
void padic_poly_one(padic_poly_t poly) noexcept
|
48
|
+
void padic_poly_swap(padic_poly_t poly1, padic_poly_t poly2) noexcept
|
49
|
+
void padic_poly_get_coeff_padic(padic_t c, const padic_poly_t poly, slong n, const padic_ctx_t ctx) noexcept
|
50
|
+
void padic_poly_set_coeff_padic(padic_poly_t f, slong n, const padic_t c, const padic_ctx_t ctx) noexcept
|
51
|
+
bint padic_poly_equal(const padic_poly_t poly1, const padic_poly_t poly2) noexcept
|
52
|
+
bint padic_poly_is_zero(const padic_poly_t poly) noexcept
|
53
|
+
bint padic_poly_is_one(const padic_poly_t poly) noexcept
|
54
|
+
void _padic_poly_add(fmpz * rop, slong * rval, slong N, const fmpz * op1, slong val1, slong len1, slong N1, const fmpz * op2, slong val2, slong len2, slong N2, const padic_ctx_t ctx) noexcept
|
55
|
+
void padic_poly_add(padic_poly_t f, const padic_poly_t g, const padic_poly_t h, const padic_ctx_t ctx) noexcept
|
56
|
+
void _padic_poly_sub(fmpz * rop, slong * rval, slong N, const fmpz * op1, slong val1, slong len1, slong N1, const fmpz * op2, slong val2, slong len2, slong N2, const padic_ctx_t ctx) noexcept
|
57
|
+
void padic_poly_sub(padic_poly_t f, const padic_poly_t g, const padic_poly_t h, const padic_ctx_t ctx) noexcept
|
58
|
+
void padic_poly_neg(padic_poly_t f, const padic_poly_t g, const padic_ctx_t ctx) noexcept
|
59
|
+
void _padic_poly_scalar_mul_padic(fmpz * rop, slong * rval, slong N, const fmpz * op, slong val, slong len, const padic_t c, const padic_ctx_t ctx) noexcept
|
60
|
+
void padic_poly_scalar_mul_padic(padic_poly_t rop, const padic_poly_t op, const padic_t c, const padic_ctx_t ctx) noexcept
|
61
|
+
void _padic_poly_mul(fmpz * rop, slong * rval, slong N, const fmpz * op1, slong val1, slong len1, const fmpz * op2, slong val2, slong len2, const padic_ctx_t ctx) noexcept
|
62
|
+
void padic_poly_mul(padic_poly_t res, const padic_poly_t poly1, const padic_poly_t poly2, const padic_ctx_t ctx) noexcept
|
63
|
+
void _padic_poly_pow(fmpz * rop, slong * rval, slong N, const fmpz * op, slong val, slong len, ulong e, const padic_ctx_t ctx) noexcept
|
64
|
+
void padic_poly_pow(padic_poly_t rop, const padic_poly_t op, ulong e, const padic_ctx_t ctx) noexcept
|
65
|
+
void padic_poly_inv_series(padic_poly_t g, const padic_poly_t f, slong n, const padic_ctx_t ctx) noexcept
|
66
|
+
void _padic_poly_derivative(fmpz * rop, slong * rval, slong N, const fmpz * op, slong val, slong len, const padic_ctx_t ctx) noexcept
|
67
|
+
void padic_poly_derivative(padic_poly_t rop, const padic_poly_t op, const padic_ctx_t ctx) noexcept
|
68
|
+
void padic_poly_shift_left(padic_poly_t rop, const padic_poly_t op, slong n, const padic_ctx_t ctx) noexcept
|
69
|
+
void padic_poly_shift_right(padic_poly_t rop, const padic_poly_t op, slong n, const padic_ctx_t ctx) noexcept
|
70
|
+
void _padic_poly_evaluate_padic(fmpz_t u, slong * v, slong N, const fmpz * poly, slong val, slong len, const fmpz_t a, slong b, const padic_ctx_t ctx) noexcept
|
71
|
+
void padic_poly_evaluate_padic(padic_t y, const padic_poly_t poly, const padic_t a, const padic_ctx_t ctx) noexcept
|
72
|
+
void _padic_poly_compose(fmpz * rop, slong * rval, slong N, const fmpz * op1, slong val1, slong len1, const fmpz * op2, slong val2, slong len2, const padic_ctx_t ctx) noexcept
|
73
|
+
void padic_poly_compose(padic_poly_t rop, const padic_poly_t op1, const padic_poly_t op2, const padic_ctx_t ctx) noexcept
|
74
|
+
void _padic_poly_compose_pow(fmpz * rop, slong * rval, slong N, const fmpz * op, slong val, slong len, slong k, const padic_ctx_t ctx) noexcept
|
75
|
+
void padic_poly_compose_pow(padic_poly_t rop, const padic_poly_t op, slong k, const padic_ctx_t ctx) noexcept
|
76
|
+
int padic_poly_debug(const padic_poly_t poly) noexcept
|
77
|
+
int _padic_poly_fprint(FILE * file, const fmpz * poly, slong val, slong len, const padic_ctx_t ctx) noexcept
|
78
|
+
int padic_poly_fprint(FILE * file, const padic_poly_t poly, const padic_ctx_t ctx) noexcept
|
79
|
+
int _padic_poly_print(const fmpz * poly, slong val, slong len, const padic_ctx_t ctx) noexcept
|
80
|
+
int padic_poly_print(const padic_poly_t poly, const padic_ctx_t ctx) noexcept
|
81
|
+
int _padic_poly_fprint_pretty(FILE * file, const fmpz * poly, slong val, slong len, const char * var, const padic_ctx_t ctx) noexcept
|
82
|
+
int padic_poly_fprint_pretty(FILE * file, const padic_poly_t poly, const char * var, const padic_ctx_t ctx) noexcept
|
83
|
+
int _padic_poly_print_pretty(const fmpz * poly, slong val, slong len, const char * var, const padic_ctx_t ctx) noexcept
|
84
|
+
int padic_poly_print_pretty(const padic_poly_t poly, const char * var, const padic_ctx_t ctx) noexcept
|
85
|
+
bint _padic_poly_is_canonical(const fmpz * op, slong val, slong len, const padic_ctx_t ctx) noexcept
|
86
|
+
bint padic_poly_is_canonical(const padic_poly_t op, const padic_ctx_t ctx) noexcept
|
87
|
+
bint _padic_poly_is_reduced(const fmpz * op, slong val, slong len, slong N, const padic_ctx_t ctx) noexcept
|
88
|
+
bint padic_poly_is_reduced(const padic_poly_t op, const padic_ctx_t ctx) noexcept
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/partitions.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 partitions_rademacher_bound(arf_t b, const fmpz_t n, ulong N) noexcept
|
19
|
+
void partitions_hrr_sum_arb(arb_t x, const fmpz_t n, slong N0, slong N, int use_doubles) noexcept
|
20
|
+
void partitions_fmpz_fmpz(fmpz_t p, const fmpz_t n, int use_doubles) noexcept
|
21
|
+
void partitions_fmpz_ui(fmpz_t p, ulong n) noexcept
|
22
|
+
void partitions_fmpz_ui_using_doubles(fmpz_t p, ulong n) noexcept
|
23
|
+
void partitions_leading_fmpz(arb_t res, const fmpz_t n, slong prec) noexcept
|
sage/libs/flint/perm.pxd
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/perm.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
|
+
slong * _perm_init(slong n) noexcept
|
19
|
+
void _perm_clear(slong * vec) noexcept
|
20
|
+
void _perm_set(slong * res, const slong * vec, slong n) noexcept
|
21
|
+
void _perm_one(slong * vec, slong n) noexcept
|
22
|
+
void _perm_inv(slong * res, const slong * vec, slong n) noexcept
|
23
|
+
void _perm_compose(slong * res, const slong * vec1, const slong * vec2, slong n) noexcept
|
24
|
+
int _perm_parity(const slong * vec, slong n) noexcept
|
25
|
+
int _perm_randtest(slong * vec, slong n, flint_rand_t state) noexcept
|
26
|
+
int _perm_print(const slong * vec, slong n) noexcept
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/profiler.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 timeit_start(timeit_t t) noexcept
|
19
|
+
void timeit_stop(timeit_t t) noexcept
|
20
|
+
void start_clock(int n) noexcept
|
21
|
+
void stop_clock(int n) noexcept
|
22
|
+
double get_clock(int n) noexcept
|
23
|
+
void prof_repeat(double * min, double * max, profile_target_t target, void * arg) noexcept
|
24
|
+
void get_memory_usage(meminfo_t meminfo) noexcept
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/qadic.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 qadic_ctx_init(qadic_ctx_t ctx, const fmpz_t p, slong d, slong min, slong max, const char * var, padic_print_mode mode) noexcept
|
19
|
+
void qadic_ctx_init_conway(qadic_ctx_t ctx, const fmpz_t p, slong d, slong min, slong max, const char * var, padic_print_mode mode) noexcept
|
20
|
+
void qadic_ctx_clear(qadic_ctx_t ctx) noexcept
|
21
|
+
slong qadic_ctx_degree(const qadic_ctx_t ctx) noexcept
|
22
|
+
void qadic_ctx_print(const qadic_ctx_t ctx) noexcept
|
23
|
+
void qadic_init(qadic_t rop) noexcept
|
24
|
+
void qadic_init2(qadic_t rop, slong prec) noexcept
|
25
|
+
void qadic_clear(qadic_t rop) noexcept
|
26
|
+
void _fmpz_poly_reduce(fmpz * R, slong lenR, const fmpz * a, const slong * j, slong len) noexcept
|
27
|
+
void _fmpz_mod_poly_reduce(fmpz * R, slong lenR, const fmpz * a, const slong * j, slong len, const fmpz_t p) noexcept
|
28
|
+
void qadic_reduce(qadic_t rop, const qadic_ctx_t ctx) noexcept
|
29
|
+
slong qadic_val(const qadic_t op) noexcept
|
30
|
+
slong qadic_prec(const qadic_t op) noexcept
|
31
|
+
void qadic_randtest(qadic_t rop, flint_rand_t state, const qadic_ctx_t ctx) noexcept
|
32
|
+
void qadic_randtest_not_zero(qadic_t rop, flint_rand_t state, const qadic_ctx_t ctx) noexcept
|
33
|
+
void qadic_randtest_val(qadic_t rop, flint_rand_t state, slong v, const qadic_ctx_t ctx) noexcept
|
34
|
+
void qadic_randtest_int(qadic_t rop, flint_rand_t state, const qadic_ctx_t ctx) noexcept
|
35
|
+
void qadic_set(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
36
|
+
void qadic_zero(qadic_t rop) noexcept
|
37
|
+
void qadic_one(qadic_t rop) noexcept
|
38
|
+
void qadic_gen(qadic_t rop, const qadic_ctx_t ctx) noexcept
|
39
|
+
void qadic_set_ui(qadic_t rop, ulong op, const qadic_ctx_t ctx) noexcept
|
40
|
+
int qadic_get_padic(padic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
41
|
+
bint qadic_is_zero(const qadic_t op) noexcept
|
42
|
+
bint qadic_is_one(const qadic_t op) noexcept
|
43
|
+
bint qadic_equal(const qadic_t op1, const qadic_t op2) noexcept
|
44
|
+
void qadic_add(qadic_t rop, const qadic_t op1, const qadic_t op2, const qadic_ctx_t ctx) noexcept
|
45
|
+
void qadic_sub(qadic_t rop, const qadic_t op1, const qadic_t op2, const qadic_ctx_t ctx) noexcept
|
46
|
+
void qadic_neg(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
47
|
+
void qadic_mul(qadic_t rop, const qadic_t op1, const qadic_t op2, const qadic_ctx_t ctx) noexcept
|
48
|
+
void _qadic_inv(fmpz * rop, const fmpz * op, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N) noexcept
|
49
|
+
void qadic_inv(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
50
|
+
void _qadic_pow(fmpz * rop, const fmpz * op, slong len, const fmpz_t e, const fmpz * a, const slong * j, slong lena, const fmpz_t p) noexcept
|
51
|
+
void qadic_pow(qadic_t rop, const qadic_t op, const fmpz_t e, const qadic_ctx_t ctx) noexcept
|
52
|
+
int qadic_sqrt(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
53
|
+
void _qadic_exp_rectangular(fmpz * rop, const fmpz * op, slong v, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N, const fmpz_t pN) noexcept
|
54
|
+
int qadic_exp_rectangular(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
55
|
+
void _qadic_exp_balanced(fmpz * rop, const fmpz * x, slong v, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N, const fmpz_t pN) noexcept
|
56
|
+
int qadic_exp_balanced(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
57
|
+
void _qadic_exp(fmpz * rop, const fmpz * op, slong v, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N, const fmpz_t pN) noexcept
|
58
|
+
int qadic_exp(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
59
|
+
void _qadic_log_rectangular(fmpz * z, const fmpz * y, slong v, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N, const fmpz_t pN) noexcept
|
60
|
+
int qadic_log_rectangular(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
61
|
+
void _qadic_log_balanced(fmpz * z, const fmpz * y, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N, const fmpz_t pN) noexcept
|
62
|
+
int qadic_log_balanced(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
63
|
+
void _qadic_log(fmpz * z, const fmpz * y, slong v, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N, const fmpz_t pN) noexcept
|
64
|
+
int qadic_log(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
65
|
+
void _qadic_frobenius_a(fmpz * rop, slong e, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N) noexcept
|
66
|
+
void _qadic_frobenius(fmpz * rop, const fmpz * op, slong len, slong e, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N) noexcept
|
67
|
+
void qadic_frobenius(qadic_t rop, const qadic_t op, slong e, const qadic_ctx_t ctx) noexcept
|
68
|
+
void _qadic_teichmuller(fmpz * rop, const fmpz * op, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N) noexcept
|
69
|
+
void qadic_teichmuller(qadic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
70
|
+
void _qadic_trace(fmpz_t rop, const fmpz * op, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t pN) noexcept
|
71
|
+
void qadic_trace(padic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
72
|
+
void _qadic_norm(fmpz_t rop, const fmpz * op, slong len, const fmpz * a, const slong * j, slong lena, const fmpz_t p, slong N) noexcept
|
73
|
+
void qadic_norm(padic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
74
|
+
void qadic_norm_analytic(padic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
75
|
+
void qadic_norm_resultant(padic_t rop, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
76
|
+
int qadic_fprint_pretty(FILE * file, const qadic_t op, const qadic_ctx_t ctx) noexcept
|
77
|
+
int qadic_print_pretty(const qadic_t op, const qadic_ctx_t ctx) noexcept
|
sage/libs/flint/qfb.pxd
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: libraries = flint
|
3
|
+
# distutils: depends = flint/qfb.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 qfb_init(qfb_t q) noexcept
|
19
|
+
void qfb_clear(qfb_t q) noexcept
|
20
|
+
void qfb_array_clear(qfb ** forms, slong num) noexcept
|
21
|
+
qfb_hash_t * qfb_hash_init(slong depth) noexcept
|
22
|
+
void qfb_hash_clear(qfb_hash_t * qhash, slong depth) noexcept
|
23
|
+
void qfb_hash_insert(qfb_hash_t * qhash, qfb_t q, qfb_t q2, slong it, slong depth) noexcept
|
24
|
+
slong qfb_hash_find(qfb_hash_t * qhash, qfb_t q, slong depth) noexcept
|
25
|
+
void qfb_set(qfb_t f, qfb_t g) noexcept
|
26
|
+
bint qfb_equal(qfb_t f, qfb_t g) noexcept
|
27
|
+
void qfb_print(qfb_t q) noexcept
|
28
|
+
void qfb_discriminant(fmpz_t D, qfb_t f) noexcept
|
29
|
+
void qfb_reduce(qfb_t r, qfb_t f, fmpz_t D) noexcept
|
30
|
+
bint qfb_is_reduced(qfb_t r) noexcept
|
31
|
+
slong qfb_reduced_forms(qfb ** forms, slong d) noexcept
|
32
|
+
slong qfb_reduced_forms_large(qfb ** forms, slong d) noexcept
|
33
|
+
void qfb_nucomp(qfb_t r, const qfb_t f, const qfb_t g, fmpz_t D, fmpz_t L) noexcept
|
34
|
+
void qfb_nudupl(qfb_t r, const qfb_t f, fmpz_t D, fmpz_t L) noexcept
|
35
|
+
void qfb_pow_ui(qfb_t r, qfb_t f, fmpz_t D, ulong exp) noexcept
|
36
|
+
void qfb_pow(qfb_t r, qfb_t f, fmpz_t D, fmpz_t exp) noexcept
|
37
|
+
void qfb_inverse(qfb_t r, qfb_t f) noexcept
|
38
|
+
bint qfb_is_principal_form(qfb_t f, fmpz_t D) noexcept
|
39
|
+
void qfb_principal_form(qfb_t f, fmpz_t D) noexcept
|
40
|
+
bint qfb_is_primitive(qfb_t f) noexcept
|
41
|
+
void qfb_prime_form(qfb_t r, fmpz_t D, fmpz_t p) noexcept
|
42
|
+
int qfb_exponent_element(fmpz_t exponent, qfb_t f, fmpz_t n, ulong B1, ulong B2_sqrt) noexcept
|
43
|
+
int qfb_exponent(fmpz_t exponent, fmpz_t n, ulong B1, ulong B2_sqrt, slong c) noexcept
|
44
|
+
int qfb_exponent_grh(fmpz_t exponent, fmpz_t n, ulong B1, ulong B2_sqrt) noexcept
|