passagemath-flint 10.6.1rc10__cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.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 +360 -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-3701249d.so.21.0.0 +0 -0
- passagemath_flint.libs/libgf2x-fbd36f80.so.3.0.0 +0 -0
- passagemath_flint.libs/libgfortran-8a9a71bc.so.5.0.0 +0 -0
- passagemath_flint.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
- passagemath_flint.libs/libgsl-e3525837.so.28.0.0 +0 -0
- passagemath_flint.libs/libmpfi-ad12a86d.so.0.0.0 +0 -0
- passagemath_flint.libs/libmpfr-e0f11cf3.so.6.2.1 +0 -0
- passagemath_flint.libs/libntl-1004113e.so.44.0.1 +0 -0
- passagemath_flint.libs/libopenblasp-r0-4c5b64b1.3.29.so +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-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/graphs/chrompoly.pyx +555 -0
- sage/graphs/matchpoly.cpython-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/matrix/change_ring.pyx +43 -0
- sage/matrix/matrix_complex_ball_dense.cpython-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/modular/modsym/apply.pxd +6 -0
- sage/modular/modsym/apply.pyx +113 -0
- sage/modular/modsym/heilbronn.cpython-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/rings/complex_arb.pxd +29 -0
- sage/rings/complex_arb.pyx +5176 -0
- sage/rings/complex_interval.cpython-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/rings/convert/mpfi.pxd +6 -0
- sage/rings/convert/mpfi.pyx +576 -0
- sage/rings/factorint_flint.cpython-310-aarch64-linux-gnu.so +0 -0
- sage/rings/factorint_flint.pyx +99 -0
- sage/rings/fraction_field_FpT.cpython-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/hilbert.pyx +602 -0
- sage/rings/polynomial/polynomial_complex_arb.cpython-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_number_field.pyx +345 -0
- sage/rings/polynomial/polynomial_rational_flint.cpython-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-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-310-aarch64-linux-gnu.so +0 -0
- sage/rings/real_interval_absolute.pyx +1073 -0
- sage/rings/real_mpfi.cpython-310-aarch64-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-310-aarch64-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,2076 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-flint
|
2
|
+
# distutils: depends = flint/acb.h flint/acb_calc.h flint/acb_dft.h flint/acb_dirichlet.h flint/acb_elliptic.h flint/acb_hypgeom.h flint/acb_mat.h flint/acb_modular.h flint/acb_poly.h flint/acf.h flint/aprcl.h flint/arb.h flint/arb_calc.h flint/arb_fmpz_poly.h flint/arb_fpwrap.h flint/arb_hypgeom.h flint/arb_mat.h flint/arb_poly.h flint/arf.h flint/arith.h flint/bernoulli.h flint/bool_mat.h flint/ca.h flint/ca_ext.h flint/ca_field.h flint/ca_mat.h flint/ca_poly.h flint/ca_vec.h flint/calcium.h flint/d_mat.h flint/d_vec.h flint/dirichlet.h flint/dlog.h flint/double_extras.h flint/double_interval.h flint/fexpr.h flint/fexpr_builtin.h flint/fft.h flint/flint.h flint/fmpq.h flint/fmpq_mat.h flint/fmpq_mpoly.h flint/fmpq_mpoly_factor.h flint/fmpq_poly.h flint/fmpq_vec.h flint/fmpz.h flint/fmpz_extras.h flint/fmpz_factor.h flint/fmpz_lll.h flint/fmpz_mat.h flint/fmpz_mod.h flint/fmpz_mod_mat.h flint/fmpz_mod_mpoly.h flint/fmpz_mod_mpoly_factor.h flint/fmpz_mod_poly.h flint/fmpz_mod_poly_factor.h flint/fmpz_mod_vec.h flint/fmpz_mpoly.h flint/fmpz_mpoly_factor.h flint/fmpz_mpoly_q.h flint/fmpz_poly.h flint/fmpz_poly_factor.h flint/fmpz_poly_mat.h flint/fmpz_poly_q.h flint/fmpz_vec.h flint/fmpzi.h flint/fq.h flint/fq_default.h flint/fq_default_mat.h flint/fq_default_poly.h flint/fq_default_poly_factor.h flint/fq_embed.h flint/fq_mat.h flint/fq_nmod.h flint/fq_nmod_embed.h flint/fq_nmod_mat.h flint/fq_nmod_mpoly.h flint/fq_nmod_mpoly_factor.h flint/fq_nmod_poly.h flint/fq_nmod_poly_factor.h flint/fq_nmod_vec.h flint/fq_poly.h flint/fq_poly_factor.h flint/fq_vec.h flint/fq_zech.h flint/fq_zech_embed.h flint/fq_zech_mat.h flint/fq_zech_poly.h flint/fq_zech_poly_factor.h flint/fq_zech_vec.h flint/gr.h flint/gr_generic.h flint/gr_mat.h flint/gr_mpoly.h flint/gr_poly.h flint/gr_special.h flint/gr_vec.h flint/hypgeom.h flint/long_extras.h flint/mag.h flint/mpf_mat.h flint/mpf_vec.h flint/mpfr_mat.h flint/mpfr_vec.h flint/mpn_extras.h flint/mpoly.h flint/nf.h flint/nf_elem.h flint/nmod.h flint/nmod_mat.h flint/nmod_mpoly.h flint/nmod_mpoly_factor.h flint/nmod_poly.h flint/nmod_poly_factor.h flint/nmod_poly_mat.h flint/nmod_types.h flint/nmod_vec.h flint/padic.h flint/padic_mat.h flint/padic_poly.h flint/partitions.h flint/perm.h flint/profiler.h flint/qadic.h flint/qfb.h flint/qqbar.h flint/qsieve.h flint/thread_pool.h flint/ulong_extras.h
|
3
|
+
|
4
|
+
# WARNING: src/sage/libs/flint/types.pxd is generated from
|
5
|
+
# src/sage_setup/autogen/flint/templates/types.pxd.template
|
6
|
+
# please make sure that you are modifying the correct file!
|
7
|
+
"""
|
8
|
+
Declarations for FLINT types
|
9
|
+
"""
|
10
|
+
|
11
|
+
#*****************************************************************************
|
12
|
+
# Copyright (C) 2014 Jeroen Demeyer
|
13
|
+
#
|
14
|
+
# This program is free software: you can redistribute it and/or modify
|
15
|
+
# it under the terms of the GNU General Public License as published by
|
16
|
+
# the Free Software Foundation, either version 2 of the License, or
|
17
|
+
# (at your option) any later version.
|
18
|
+
# http://www.gnu.org/licenses/
|
19
|
+
#*****************************************************************************
|
20
|
+
|
21
|
+
from sage.libs.gmp.types cimport *
|
22
|
+
|
23
|
+
# Use these typedefs in lieu of flint's ulong and slong macros
|
24
|
+
ctypedef mp_limb_t ulong
|
25
|
+
ctypedef mp_limb_signed_t slong
|
26
|
+
ctypedef mp_limb_t flint_bitcnt_t
|
27
|
+
|
28
|
+
|
29
|
+
cdef extern from "flint_wrap.h":
|
30
|
+
# flint/fmpz.h
|
31
|
+
ctypedef slong fmpz
|
32
|
+
ctypedef fmpz fmpz_t[1]
|
33
|
+
|
34
|
+
mpz_ptr COEFF_TO_PTR(fmpz)
|
35
|
+
|
36
|
+
ctypedef struct fmpz_preinvn_struct:
|
37
|
+
mp_ptr dinv
|
38
|
+
long n
|
39
|
+
mp_bitcnt_t norm
|
40
|
+
|
41
|
+
ctypedef fmpz_preinvn_struct[1] fmpz_preinvn_t
|
42
|
+
|
43
|
+
ctypedef struct fmpz_comb_struct:
|
44
|
+
pass
|
45
|
+
|
46
|
+
ctypedef fmpz_comb_struct fmpz_comb_t[1]
|
47
|
+
|
48
|
+
ctypedef struct fmpz_comb_temp_struct:
|
49
|
+
slong Alen, Tlen
|
50
|
+
fmpz * A
|
51
|
+
fmpz * T
|
52
|
+
|
53
|
+
ctypedef fmpz_comb_temp_struct fmpz_comb_temp_t[1]
|
54
|
+
|
55
|
+
ctypedef struct fmpz_multi_CRT_struct:
|
56
|
+
pass
|
57
|
+
|
58
|
+
ctypedef fmpz_multi_CRT_struct fmpz_multi_CRT_t[1]
|
59
|
+
|
60
|
+
|
61
|
+
# flint/fmpq.h
|
62
|
+
ctypedef struct fmpq:
|
63
|
+
pass
|
64
|
+
|
65
|
+
ctypedef fmpq fmpq_t[1]
|
66
|
+
|
67
|
+
|
68
|
+
# flint/arith.h
|
69
|
+
ctypedef struct trig_prod_struct:
|
70
|
+
pass
|
71
|
+
ctypedef trig_prod_struct trig_prod_t[1]
|
72
|
+
|
73
|
+
|
74
|
+
# flint/ulong_extras.pxd
|
75
|
+
ctypedef struct n_ecm_s:
|
76
|
+
pass
|
77
|
+
ctypedef n_ecm_s n_ecm_t[1]
|
78
|
+
|
79
|
+
|
80
|
+
# flint/arf.h
|
81
|
+
ctypedef enum arf_rnd_t:
|
82
|
+
ARF_RND_DOWN
|
83
|
+
ARF_RND_UP
|
84
|
+
ARF_RND_FLOOR
|
85
|
+
ARF_RND_CEIL
|
86
|
+
ARF_RND_NEAR
|
87
|
+
long ARF_PREC_EXACT
|
88
|
+
|
89
|
+
|
90
|
+
# flint/arf_types.h
|
91
|
+
ctypedef struct mantissa_noptr_struct:
|
92
|
+
pass
|
93
|
+
|
94
|
+
ctypedef struct mantissa_ptr_struct:
|
95
|
+
pass
|
96
|
+
|
97
|
+
ctypedef union mantissa_struct:
|
98
|
+
mantissa_noptr_struct noptr
|
99
|
+
mantissa_ptr_struct ptr
|
100
|
+
|
101
|
+
ctypedef struct arf_struct:
|
102
|
+
pass
|
103
|
+
ctypedef arf_struct arf_t[1]
|
104
|
+
ctypedef arf_struct * arf_ptr
|
105
|
+
ctypedef const arf_struct * arf_srcptr
|
106
|
+
|
107
|
+
ctypedef struct arf_interval_struct:
|
108
|
+
arf_struct a
|
109
|
+
arf_struct b
|
110
|
+
ctypedef arf_interval_struct arf_interval_t[1]
|
111
|
+
ctypedef arf_interval_struct * arf_interval_ptr
|
112
|
+
ctypedef const arf_interval_struct * arf_interval_srcptr
|
113
|
+
|
114
|
+
|
115
|
+
# flint/arb_types.h
|
116
|
+
ctypedef struct mag_struct:
|
117
|
+
pass
|
118
|
+
ctypedef mag_struct mag_t[1]
|
119
|
+
ctypedef mag_struct * mag_ptr
|
120
|
+
ctypedef const mag_struct * mag_srcptr
|
121
|
+
|
122
|
+
ctypedef struct arb_struct:
|
123
|
+
pass
|
124
|
+
ctypedef arb_struct arb_t[1]
|
125
|
+
ctypedef arb_struct * arb_ptr
|
126
|
+
ctypedef const arb_struct * arb_srcptr
|
127
|
+
|
128
|
+
ctypedef struct arb_mat_struct:
|
129
|
+
arb_ptr entries
|
130
|
+
slong r
|
131
|
+
slong c
|
132
|
+
arb_ptr * rows
|
133
|
+
ctypedef arb_mat_struct arb_mat_t[1]
|
134
|
+
|
135
|
+
ctypedef struct arb_poly_struct:
|
136
|
+
arb_ptr coeffs
|
137
|
+
long alloc
|
138
|
+
long length
|
139
|
+
ctypedef arb_poly_struct[1] arb_poly_t
|
140
|
+
|
141
|
+
|
142
|
+
# flint/arb_calc.h
|
143
|
+
ctypedef int (*arb_calc_func_t)(arb_ptr out, const arb_t inp,
|
144
|
+
void * param, slong order, slong prec)
|
145
|
+
|
146
|
+
|
147
|
+
# flint/acb.h
|
148
|
+
ctypedef struct acb_struct:
|
149
|
+
pass
|
150
|
+
ctypedef acb_struct[1] acb_t
|
151
|
+
ctypedef acb_struct * acb_ptr
|
152
|
+
ctypedef const acb_struct * acb_srcptr
|
153
|
+
|
154
|
+
|
155
|
+
# flint/acb_mat.h
|
156
|
+
ctypedef struct acb_mat_struct:
|
157
|
+
pass
|
158
|
+
ctypedef acb_mat_struct[1] acb_mat_t
|
159
|
+
|
160
|
+
|
161
|
+
# flint/acb_modular.h
|
162
|
+
ctypedef struct psl2z_struct:
|
163
|
+
fmpz a
|
164
|
+
fmpz b
|
165
|
+
fmpz c
|
166
|
+
fmpz d
|
167
|
+
ctypedef psl2z_struct psl2z_t[1]
|
168
|
+
|
169
|
+
|
170
|
+
# flint/acb_poly.h
|
171
|
+
ctypedef struct acb_poly_struct:
|
172
|
+
acb_ptr coeffs
|
173
|
+
long alloc
|
174
|
+
long length
|
175
|
+
ctypedef acb_poly_struct[1] acb_poly_t
|
176
|
+
|
177
|
+
# flint/acb_calc.h
|
178
|
+
ctypedef struct acb_calc_integrate_opt_struct:
|
179
|
+
long deg_limit
|
180
|
+
long eval_limit
|
181
|
+
long depth_limit
|
182
|
+
bint use_heap
|
183
|
+
int verbose
|
184
|
+
ctypedef acb_calc_integrate_opt_struct acb_calc_integrate_opt_t[1]
|
185
|
+
ctypedef int (*acb_calc_func_t)(acb_ptr out,
|
186
|
+
const acb_t inp, void * param, long order, long prec)
|
187
|
+
|
188
|
+
|
189
|
+
# flint/acb_dft.h
|
190
|
+
ctypedef struct crt_struct:
|
191
|
+
pass
|
192
|
+
ctypedef crt_struct crt_t[1]
|
193
|
+
|
194
|
+
ctypedef struct acb_dft_step_struct:
|
195
|
+
pass
|
196
|
+
ctypedef acb_dft_step_struct * acb_dft_step_ptr
|
197
|
+
|
198
|
+
ctypedef struct acb_dft_cyc_struct:
|
199
|
+
pass
|
200
|
+
ctypedef acb_dft_cyc_struct acb_dft_cyc_t[1]
|
201
|
+
|
202
|
+
ctypedef struct acb_dft_rad2_struct:
|
203
|
+
pass
|
204
|
+
ctypedef acb_dft_rad2_struct acb_dft_rad2_t[1]
|
205
|
+
|
206
|
+
ctypedef struct acb_dft_bluestein_struct:
|
207
|
+
pass
|
208
|
+
ctypedef acb_dft_bluestein_struct acb_dft_bluestein_t[1]
|
209
|
+
|
210
|
+
ctypedef struct acb_dft_prod_struct:
|
211
|
+
pass
|
212
|
+
ctypedef acb_dft_prod_struct acb_dft_prod_t[1]
|
213
|
+
|
214
|
+
ctypedef struct acb_dft_crt_struct:
|
215
|
+
pass
|
216
|
+
ctypedef acb_dft_crt_struct acb_dft_crt_t[1]
|
217
|
+
|
218
|
+
ctypedef struct acb_dft_naive_struct:
|
219
|
+
pass
|
220
|
+
ctypedef acb_dft_naive_struct acb_dft_naive_t[1]
|
221
|
+
|
222
|
+
ctypedef struct acb_dft_pre_struct:
|
223
|
+
pass
|
224
|
+
ctypedef acb_dft_pre_struct acb_dft_pre_t[1]
|
225
|
+
|
226
|
+
|
227
|
+
# flint/acb_dirichlet.h
|
228
|
+
ctypedef struct acb_dirichlet_hurwitz_precomp_struct:
|
229
|
+
pass
|
230
|
+
ctypedef acb_dirichlet_hurwitz_precomp_struct acb_dirichlet_hurwitz_precomp_t[1]
|
231
|
+
|
232
|
+
ctypedef struct acb_dirichlet_roots_struct:
|
233
|
+
pass
|
234
|
+
ctypedef acb_dirichlet_roots_struct acb_dirichlet_roots_t[1]
|
235
|
+
|
236
|
+
ctypedef struct acb_dirichlet_platt_c_precomp_struct:
|
237
|
+
pass
|
238
|
+
ctypedef acb_dirichlet_platt_c_precomp_struct acb_dirichlet_platt_c_precomp_t[1]
|
239
|
+
|
240
|
+
ctypedef struct acb_dirichlet_platt_i_precomp_struct:
|
241
|
+
pass
|
242
|
+
ctypedef acb_dirichlet_platt_i_precomp_struct acb_dirichlet_platt_i_precomp_t[1]
|
243
|
+
|
244
|
+
ctypedef struct acb_dirichlet_platt_ws_precomp_struct:
|
245
|
+
pass
|
246
|
+
ctypedef acb_dirichlet_platt_ws_precomp_struct acb_dirichlet_platt_ws_precomp_t[1]
|
247
|
+
|
248
|
+
|
249
|
+
# flint/acb_theta.h
|
250
|
+
cdef struct acb_theta_eld_struct:
|
251
|
+
pass
|
252
|
+
ctypedef acb_theta_eld_struct acb_theta_eld_t[1]
|
253
|
+
|
254
|
+
ctypedef void (*acb_theta_naive_worker_t)(acb_ptr, acb_srcptr, acb_srcptr, const slong *,
|
255
|
+
slong, const acb_t, const slong *, slong, slong, slong, slong)
|
256
|
+
ctypedef int (*acb_theta_ql_worker_t)(acb_ptr, acb_srcptr, acb_srcptr,
|
257
|
+
arb_srcptr, arb_srcptr, const acb_mat_t, slong, slong)
|
258
|
+
|
259
|
+
# flint/d_mat.h
|
260
|
+
ctypedef struct d_mat_struct:
|
261
|
+
double * entries
|
262
|
+
slong r
|
263
|
+
slong c
|
264
|
+
double ** rows
|
265
|
+
|
266
|
+
ctypedef d_mat_struct d_mat_t[1]
|
267
|
+
|
268
|
+
|
269
|
+
# flint/flint.h
|
270
|
+
ctypedef struct flint_rand_struct:
|
271
|
+
pass
|
272
|
+
ctypedef flint_rand_struct flint_rand_t[1]
|
273
|
+
|
274
|
+
cdef long FLINT_BITS
|
275
|
+
cdef long FLINT_D_BITS
|
276
|
+
|
277
|
+
|
278
|
+
# flint/limb_types.h
|
279
|
+
ctypedef struct n_factor_t:
|
280
|
+
int num
|
281
|
+
unsigned long exp[15]
|
282
|
+
unsigned long p[15]
|
283
|
+
|
284
|
+
ctypedef struct n_primes_struct:
|
285
|
+
pass
|
286
|
+
|
287
|
+
ctypedef n_primes_struct n_primes_t[1]
|
288
|
+
|
289
|
+
long FLINT_MAX_FACTORS_IN_LIMB
|
290
|
+
|
291
|
+
|
292
|
+
# flint/fmpz_factor.h
|
293
|
+
ctypedef struct ecm_s:
|
294
|
+
pass
|
295
|
+
|
296
|
+
ctypedef ecm_s ecm_t[1]
|
297
|
+
|
298
|
+
|
299
|
+
# flint/fmpz_mod.h
|
300
|
+
ctypedef struct fmpz_mod_discrete_log_pohlig_hellman_entry_struct:
|
301
|
+
pass
|
302
|
+
|
303
|
+
ctypedef struct fmpz_mod_discrete_log_pohlig_hellman_struct:
|
304
|
+
pass
|
305
|
+
|
306
|
+
ctypedef fmpz_mod_discrete_log_pohlig_hellman_struct fmpz_mod_discrete_log_pohlig_hellman_t[1]
|
307
|
+
|
308
|
+
|
309
|
+
# flint/nmod_poly.h
|
310
|
+
ctypedef struct nmod_t:
|
311
|
+
mp_limb_t n
|
312
|
+
mp_limb_t ninv
|
313
|
+
mp_bitcnt_t norm
|
314
|
+
|
315
|
+
ctypedef struct nmod_poly_multi_crt_struct:
|
316
|
+
pass
|
317
|
+
|
318
|
+
ctypedef nmod_poly_multi_crt_struct nmod_poly_multi_crt_t[1]
|
319
|
+
|
320
|
+
ctypedef struct nmod_berlekamp_massey_struct:
|
321
|
+
pass
|
322
|
+
|
323
|
+
ctypedef nmod_berlekamp_massey_struct nmod_berlekamp_massey_t[1]
|
324
|
+
|
325
|
+
|
326
|
+
# flint/fmpz_types.h
|
327
|
+
ctypedef struct fmpz_factor_struct:
|
328
|
+
int sign
|
329
|
+
fmpz* p
|
330
|
+
ulong* exp
|
331
|
+
slong alloc
|
332
|
+
slong num
|
333
|
+
|
334
|
+
ctypedef fmpz_factor_struct fmpz_factor_t[1]
|
335
|
+
|
336
|
+
ctypedef struct fmpz_poly_struct:
|
337
|
+
fmpz* coeffs
|
338
|
+
long alloc
|
339
|
+
long length
|
340
|
+
|
341
|
+
ctypedef fmpz_poly_struct fmpz_poly_t[1]
|
342
|
+
|
343
|
+
ctypedef struct fmpz_poly_factor_struct:
|
344
|
+
pass
|
345
|
+
|
346
|
+
ctypedef fmpz_poly_factor_struct fmpz_poly_factor_t[1]
|
347
|
+
|
348
|
+
ctypedef struct fmpz_mat_struct:
|
349
|
+
pass
|
350
|
+
|
351
|
+
ctypedef fmpz_mat_struct fmpz_mat_t[1]
|
352
|
+
|
353
|
+
ctypedef struct fmpz_poly_mat_struct:
|
354
|
+
pass
|
355
|
+
|
356
|
+
ctypedef fmpz_poly_mat_struct fmpz_poly_mat_t[1]
|
357
|
+
|
358
|
+
ctypedef struct fmpz_mpoly_struct:
|
359
|
+
pass
|
360
|
+
|
361
|
+
ctypedef fmpz_mpoly_struct fmpz_mpoly_t[1]
|
362
|
+
|
363
|
+
ctypedef struct fmpz_mpoly_factor_struct:
|
364
|
+
pass
|
365
|
+
|
366
|
+
ctypedef fmpz_mpoly_factor_struct fmpz_mpoly_factor_t[1]
|
367
|
+
|
368
|
+
ctypedef struct fmpz_poly_q_struct:
|
369
|
+
fmpz_poly_struct *num
|
370
|
+
fmpz_poly_struct *den
|
371
|
+
|
372
|
+
ctypedef fmpz_poly_q_struct fmpz_poly_q_t[1]
|
373
|
+
|
374
|
+
ctypedef struct fmpz_mpoly_q_struct:
|
375
|
+
pass
|
376
|
+
|
377
|
+
ctypedef fmpz_mpoly_q_struct fmpz_mpoly_q_t[1]
|
378
|
+
|
379
|
+
ctypedef struct fmpzi_struct:
|
380
|
+
fmpz a
|
381
|
+
fmpz b
|
382
|
+
|
383
|
+
ctypedef fmpzi_struct fmpzi_t[1]
|
384
|
+
|
385
|
+
|
386
|
+
# flint/fmpq_types.h
|
387
|
+
ctypedef struct fmpq_mat_struct:
|
388
|
+
pass
|
389
|
+
ctypedef fmpq_mat_struct fmpq_mat_t[1]
|
390
|
+
|
391
|
+
ctypedef struct fmpq_poly_struct:
|
392
|
+
pass
|
393
|
+
ctypedef fmpq_poly_struct fmpq_poly_t[1]
|
394
|
+
|
395
|
+
ctypedef struct fmpq_mpoly_struct:
|
396
|
+
pass
|
397
|
+
ctypedef fmpq_mpoly_struct fmpq_mpoly_t[1]
|
398
|
+
|
399
|
+
ctypedef struct fmpq_mpoly_factor_struct:
|
400
|
+
pass
|
401
|
+
ctypedef fmpq_mpoly_factor_struct fmpq_mpoly_factor_t[1]
|
402
|
+
|
403
|
+
|
404
|
+
# flint/nmod_types.h
|
405
|
+
ctypedef struct nmod_mat_struct:
|
406
|
+
mp_limb_t * entries
|
407
|
+
slong r
|
408
|
+
slong c
|
409
|
+
mp_limb_t ** rows
|
410
|
+
nmod_t mod
|
411
|
+
|
412
|
+
ctypedef nmod_mat_struct nmod_mat_t[1]
|
413
|
+
|
414
|
+
ctypedef struct nmod_poly_struct:
|
415
|
+
mp_ptr coeffs
|
416
|
+
slong alloc
|
417
|
+
slong length
|
418
|
+
nmod_t mod
|
419
|
+
|
420
|
+
ctypedef nmod_poly_struct nmod_poly_t[1]
|
421
|
+
|
422
|
+
ctypedef struct nmod_poly_factor_struct:
|
423
|
+
nmod_poly_struct * p
|
424
|
+
slong *exp
|
425
|
+
slong num
|
426
|
+
slong alloc
|
427
|
+
|
428
|
+
ctypedef nmod_poly_factor_struct nmod_poly_factor_t[1]
|
429
|
+
|
430
|
+
ctypedef struct nmod_poly_mat_struct:
|
431
|
+
nmod_poly_struct * entries
|
432
|
+
slong r
|
433
|
+
slong c
|
434
|
+
nmod_poly_struct ** rows
|
435
|
+
mp_limb_t modulus
|
436
|
+
|
437
|
+
ctypedef nmod_poly_mat_struct nmod_poly_mat_t[1]
|
438
|
+
|
439
|
+
ctypedef struct nmod_mpoly_struct:
|
440
|
+
mp_limb_t * coeffs
|
441
|
+
ulong * exps
|
442
|
+
slong length
|
443
|
+
flint_bitcnt_t bits
|
444
|
+
slong coeffs_alloc
|
445
|
+
slong exps_alloc
|
446
|
+
|
447
|
+
ctypedef nmod_mpoly_struct nmod_mpoly_t[1]
|
448
|
+
|
449
|
+
ctypedef struct nmod_mpoly_factor_struct:
|
450
|
+
mp_limb_t constant
|
451
|
+
nmod_mpoly_struct * poly
|
452
|
+
fmpz * exp
|
453
|
+
slong num
|
454
|
+
slong alloc
|
455
|
+
|
456
|
+
ctypedef nmod_mpoly_factor_struct nmod_mpoly_factor_t[1]
|
457
|
+
|
458
|
+
|
459
|
+
# flint/nmod_mpoly.h
|
460
|
+
ctypedef struct nmod_mpoly_univar_struct:
|
461
|
+
pass
|
462
|
+
ctypedef nmod_mpoly_univar_struct nmod_mpoly_univar_t[1]
|
463
|
+
|
464
|
+
ctypedef struct nmod_mpolyu_struct:
|
465
|
+
pass
|
466
|
+
ctypedef nmod_mpolyu_struct nmod_mpolyu_t[1]
|
467
|
+
|
468
|
+
ctypedef struct nmod_mpolyn_struct:
|
469
|
+
pass
|
470
|
+
ctypedef nmod_mpolyn_struct nmod_mpolyn_t[1]
|
471
|
+
|
472
|
+
ctypedef struct nmod_mpolyun_struct:
|
473
|
+
pass
|
474
|
+
ctypedef nmod_mpolyun_struct nmod_mpolyun_t[1]
|
475
|
+
|
476
|
+
ctypedef struct nmod_mpolyd_struct:
|
477
|
+
pass
|
478
|
+
ctypedef nmod_mpolyd_struct nmod_mpolyd_t[1]
|
479
|
+
|
480
|
+
ctypedef struct nmod_poly_stack_struct:
|
481
|
+
pass
|
482
|
+
ctypedef nmod_poly_stack_struct nmod_poly_stack_t[1]
|
483
|
+
|
484
|
+
|
485
|
+
# flint/fq_nmod_types.h
|
486
|
+
ctypedef nmod_poly_t fq_nmod_t
|
487
|
+
ctypedef nmod_poly_struct fq_nmod_struct
|
488
|
+
|
489
|
+
ctypedef struct fq_nmod_ctx_struct:
|
490
|
+
pass
|
491
|
+
ctypedef fq_nmod_ctx_struct fq_nmod_ctx_t[1]
|
492
|
+
|
493
|
+
ctypedef struct fq_nmod_mat_struct:
|
494
|
+
pass
|
495
|
+
ctypedef fq_nmod_mat_struct fq_nmod_mat_t[1]
|
496
|
+
|
497
|
+
ctypedef struct fq_nmod_poly_struct:
|
498
|
+
pass
|
499
|
+
ctypedef fq_nmod_poly_struct fq_nmod_poly_t[1]
|
500
|
+
|
501
|
+
ctypedef struct fq_nmod_poly_factor_struct:
|
502
|
+
pass
|
503
|
+
ctypedef fq_nmod_poly_factor_struct fq_nmod_poly_factor_t[1]
|
504
|
+
|
505
|
+
|
506
|
+
# flint2/fq_nmod_mpoly.h
|
507
|
+
ctypedef struct fq_nmod_mpoly_ctx_struct:
|
508
|
+
pass
|
509
|
+
ctypedef fq_nmod_mpoly_ctx_struct fq_nmod_mpoly_ctx_t[1]
|
510
|
+
|
511
|
+
ctypedef struct fq_nmod_mpoly_struct:
|
512
|
+
pass
|
513
|
+
ctypedef fq_nmod_mpoly_struct fq_nmod_mpoly_t[1]
|
514
|
+
|
515
|
+
ctypedef struct fq_nmod_mpoly_univar_struct:
|
516
|
+
pass
|
517
|
+
ctypedef fq_nmod_mpoly_univar_struct fq_nmod_mpoly_univar_t[1]
|
518
|
+
|
519
|
+
ctypedef struct fq_nmod_mpolyu_struct:
|
520
|
+
pass
|
521
|
+
ctypedef fq_nmod_mpolyu_struct fq_nmod_mpolyu_t[1]
|
522
|
+
|
523
|
+
ctypedef struct fq_nmod_mpolyn_struct:
|
524
|
+
pass
|
525
|
+
ctypedef fq_nmod_mpolyn_struct fq_nmod_mpolyn_t[1]
|
526
|
+
|
527
|
+
ctypedef struct fq_nmod_mpolyun_struct:
|
528
|
+
pass
|
529
|
+
ctypedef fq_nmod_mpolyun_struct fq_nmod_mpolyun_t[1]
|
530
|
+
|
531
|
+
ctypedef struct bad_fq_nmod_embed_struct:
|
532
|
+
pass
|
533
|
+
ctypedef bad_fq_nmod_embed_struct bad_fq_nmod_embed_t[1]
|
534
|
+
|
535
|
+
|
536
|
+
# flint2/fq_nmod_mpoly_factor.h
|
537
|
+
ctypedef struct fq_nmod_mpoly_factor_struct:
|
538
|
+
pass
|
539
|
+
ctypedef fq_nmod_mpoly_factor_struct fq_nmod_mpoly_factor_t[1]
|
540
|
+
|
541
|
+
ctypedef struct fq_nmod_mpolyv_struct:
|
542
|
+
pass
|
543
|
+
ctypedef fq_nmod_mpolyv_struct fq_nmod_mpolyv_t[1]
|
544
|
+
|
545
|
+
ctypedef struct fq_nmod_mpoly_pfrac_struct:
|
546
|
+
pass
|
547
|
+
ctypedef fq_nmod_mpoly_pfrac_struct fq_nmod_mpoly_pfrac_t[1]
|
548
|
+
|
549
|
+
|
550
|
+
# flint/fmpz_poly.h
|
551
|
+
ctypedef struct fmpz_poly_powers_precomp_struct:
|
552
|
+
fmpz ** powers
|
553
|
+
slong len
|
554
|
+
|
555
|
+
ctypedef fmpz_poly_powers_precomp_struct fmpz_poly_powers_precomp_t[1]
|
556
|
+
|
557
|
+
ctypedef struct fmpz_poly_mul_precache_struct:
|
558
|
+
mp_limb_t ** jj
|
559
|
+
slong n
|
560
|
+
slong len2
|
561
|
+
slong loglen
|
562
|
+
slong bits2
|
563
|
+
slong limbs
|
564
|
+
fmpz_poly_t poly2
|
565
|
+
|
566
|
+
ctypedef fmpz_poly_mul_precache_struct fmpz_poly_mul_precache_t[1]
|
567
|
+
|
568
|
+
|
569
|
+
# flint/fmpz_mod_types.h
|
570
|
+
ctypedef struct fmpz_mod_ctx_struct:
|
571
|
+
pass
|
572
|
+
|
573
|
+
ctypedef fmpz_mod_ctx_struct fmpz_mod_ctx_t[1]
|
574
|
+
|
575
|
+
ctypedef struct fmpz_mod_mat_struct:
|
576
|
+
fmpz_mat_t mat
|
577
|
+
fmpz_t mod
|
578
|
+
|
579
|
+
ctypedef fmpz_mod_mat_struct fmpz_mod_mat_t[1]
|
580
|
+
|
581
|
+
ctypedef struct fmpz_mod_poly_struct:
|
582
|
+
fmpz * coeffs
|
583
|
+
slong alloc
|
584
|
+
slong length
|
585
|
+
|
586
|
+
ctypedef fmpz_mod_poly_struct fmpz_mod_poly_t[1]
|
587
|
+
|
588
|
+
ctypedef struct fmpz_mod_poly_factor_struct:
|
589
|
+
fmpz_mod_poly_struct * poly
|
590
|
+
slong *exp
|
591
|
+
slong num
|
592
|
+
slong alloc
|
593
|
+
|
594
|
+
ctypedef fmpz_mod_poly_factor_struct fmpz_mod_poly_factor_t[1]
|
595
|
+
|
596
|
+
ctypedef struct fmpz_mod_mpoly_struct:
|
597
|
+
fmpz * coeffs
|
598
|
+
ulong * exps
|
599
|
+
slong length
|
600
|
+
flint_bitcnt_t bits
|
601
|
+
slong coeffs_alloc
|
602
|
+
slong exps_alloc
|
603
|
+
|
604
|
+
ctypedef fmpz_mod_mpoly_struct fmpz_mod_mpoly_t[1]
|
605
|
+
|
606
|
+
ctypedef struct fmpz_mod_mpoly_factor_struct:
|
607
|
+
fmpz_t constant
|
608
|
+
fmpz_mod_mpoly_struct * poly
|
609
|
+
fmpz * exp
|
610
|
+
slong num
|
611
|
+
slong alloc
|
612
|
+
|
613
|
+
ctypedef fmpz_mod_mpoly_factor_struct fmpz_mod_mpoly_factor_t[1]
|
614
|
+
|
615
|
+
|
616
|
+
# flint/fmpq_poly.h
|
617
|
+
ctypedef struct fmpq_poly_powers_precomp_struct:
|
618
|
+
fmpq_poly_struct * powers
|
619
|
+
slong len
|
620
|
+
|
621
|
+
ctypedef fmpq_poly_powers_precomp_struct fmpq_poly_powers_precomp_t[1]
|
622
|
+
|
623
|
+
|
624
|
+
# flint/fmpz_mod_poly.h:
|
625
|
+
ctypedef struct fmpz_mod_poly_res_struct:
|
626
|
+
pass
|
627
|
+
|
628
|
+
ctypedef fmpz_mod_poly_res_struct fmpz_mod_poly_res_t[1]
|
629
|
+
|
630
|
+
ctypedef struct fmpz_mod_poly_frobenius_powers_2exp_struct:
|
631
|
+
pass
|
632
|
+
|
633
|
+
ctypedef fmpz_mod_poly_frobenius_powers_2exp_struct fmpz_mod_poly_frobenius_powers_2exp_t[1]
|
634
|
+
|
635
|
+
ctypedef struct fmpz_mod_poly_frobenius_powers_struct:
|
636
|
+
pass
|
637
|
+
|
638
|
+
ctypedef fmpz_mod_poly_frobenius_powers_struct fmpz_mod_poly_frobenius_powers_t[1]
|
639
|
+
|
640
|
+
ctypedef struct fmpz_mod_poly_matrix_precompute_arg_t:
|
641
|
+
pass
|
642
|
+
|
643
|
+
ctypedef struct fmpz_mod_poly_compose_mod_precomp_preinv_arg_t:
|
644
|
+
pass
|
645
|
+
|
646
|
+
ctypedef struct fmpz_mod_poly_radix_struct:
|
647
|
+
pass
|
648
|
+
|
649
|
+
ctypedef fmpz_mod_poly_radix_struct fmpz_mod_poly_radix_t[1]
|
650
|
+
|
651
|
+
ctypedef struct fmpz_mod_berlekamp_massey_struct:
|
652
|
+
pass
|
653
|
+
|
654
|
+
ctypedef fmpz_mod_berlekamp_massey_struct fmpz_mod_berlekamp_massey_t[1]
|
655
|
+
|
656
|
+
|
657
|
+
# flint/nmod.h
|
658
|
+
ctypedef struct nmod_discrete_log_pohlig_hellman_table_entry_struct:
|
659
|
+
pass
|
660
|
+
|
661
|
+
ctypedef struct nmod_discrete_log_pohlig_hellman_entry_struct:
|
662
|
+
pass
|
663
|
+
|
664
|
+
ctypedef struct nmod_discrete_log_pohlig_hellman_struct:
|
665
|
+
pass
|
666
|
+
ctypedef nmod_discrete_log_pohlig_hellman_struct nmod_discrete_log_pohlig_hellman_t[1]
|
667
|
+
|
668
|
+
|
669
|
+
# flint/fq_types.h
|
670
|
+
ctypedef fmpz_poly_t fq_t
|
671
|
+
ctypedef fmpz_poly_struct fq_struct
|
672
|
+
|
673
|
+
ctypedef struct fq_ctx_struct:
|
674
|
+
pass
|
675
|
+
|
676
|
+
ctypedef fq_ctx_struct fq_ctx_t[1]
|
677
|
+
|
678
|
+
ctypedef struct fq_mat_struct:
|
679
|
+
pass
|
680
|
+
ctypedef fq_mat_struct fq_mat_t[1]
|
681
|
+
|
682
|
+
ctypedef struct fq_poly_struct:
|
683
|
+
pass
|
684
|
+
ctypedef fq_poly_struct fq_poly_t[1]
|
685
|
+
|
686
|
+
ctypedef struct fq_poly_factor_struct:
|
687
|
+
pass
|
688
|
+
ctypedef fq_poly_factor_struct fq_poly_factor_t[1]
|
689
|
+
|
690
|
+
|
691
|
+
# flint/fq_zech_types.h
|
692
|
+
ctypedef struct fq_zech_struct:
|
693
|
+
pass
|
694
|
+
ctypedef fq_zech_struct fq_zech_t[1]
|
695
|
+
|
696
|
+
ctypedef struct fq_zech_ctx_struct:
|
697
|
+
pass
|
698
|
+
ctypedef fq_zech_ctx_struct fq_zech_ctx_t[1]
|
699
|
+
|
700
|
+
ctypedef struct fq_zech_mat_struct:
|
701
|
+
pass
|
702
|
+
ctypedef fq_zech_mat_struct fq_zech_mat_t[1]
|
703
|
+
|
704
|
+
ctypedef struct fq_zech_poly_struct:
|
705
|
+
pass
|
706
|
+
ctypedef fq_zech_poly_struct fq_zech_poly_t[1]
|
707
|
+
|
708
|
+
ctypedef struct fq_zech_poly_factor_struct:
|
709
|
+
pass
|
710
|
+
ctypedef fq_zech_poly_factor_struct fq_zech_poly_factor_t[1]
|
711
|
+
|
712
|
+
|
713
|
+
# flint/padic.h
|
714
|
+
ctypedef struct padic_struct:
|
715
|
+
fmpz u
|
716
|
+
long v
|
717
|
+
|
718
|
+
ctypedef padic_struct padic_t[1]
|
719
|
+
|
720
|
+
cdef enum padic_print_mode:
|
721
|
+
PADIC_TERSE
|
722
|
+
PADIC_SERIES
|
723
|
+
PADIC_VAL_UNIT
|
724
|
+
|
725
|
+
ctypedef struct padic_ctx_struct:
|
726
|
+
fmpz_t p
|
727
|
+
long N
|
728
|
+
double pinv
|
729
|
+
fmpz* pow
|
730
|
+
long min
|
731
|
+
long max
|
732
|
+
|
733
|
+
ctypedef padic_ctx_struct padic_ctx_t[1]
|
734
|
+
|
735
|
+
ctypedef struct padic_inv_struct:
|
736
|
+
long n
|
737
|
+
fmpz *pow
|
738
|
+
fmpz *u
|
739
|
+
|
740
|
+
ctypedef padic_inv_struct padic_inv_t[1]
|
741
|
+
|
742
|
+
|
743
|
+
# flint/fmpz_mod_mpoly.h
|
744
|
+
ctypedef struct fmpz_mod_mpoly_univar_struct:
|
745
|
+
pass
|
746
|
+
ctypedef fmpz_mod_mpoly_univar_struct fmpz_mod_mpoly_univar_t[1]
|
747
|
+
|
748
|
+
|
749
|
+
# flint/padic_poly.h
|
750
|
+
ctypedef struct padic_poly_struct:
|
751
|
+
fmpz *coeffs
|
752
|
+
long alloc
|
753
|
+
long length
|
754
|
+
long val
|
755
|
+
long N
|
756
|
+
|
757
|
+
ctypedef padic_poly_struct padic_poly_t[1]
|
758
|
+
|
759
|
+
|
760
|
+
# flint/padic_mat.h
|
761
|
+
ctypedef struct padic_mat_struct:
|
762
|
+
pass
|
763
|
+
ctypedef padic_mat_struct padic_mat_t[1]
|
764
|
+
|
765
|
+
|
766
|
+
# flint/qadic.h
|
767
|
+
ctypedef struct qadic_ctx_struct:
|
768
|
+
padic_ctx_struct pctx
|
769
|
+
fmpz *a
|
770
|
+
long *j
|
771
|
+
long len
|
772
|
+
char *var
|
773
|
+
|
774
|
+
ctypedef qadic_ctx_struct qadic_ctx_t[1]
|
775
|
+
|
776
|
+
ctypedef padic_poly_struct qadic_struct
|
777
|
+
ctypedef padic_poly_t qadic_t
|
778
|
+
|
779
|
+
|
780
|
+
# flint/qsieve.h
|
781
|
+
ctypedef struct prime_t:
|
782
|
+
pass
|
783
|
+
|
784
|
+
ctypedef struct fac_t:
|
785
|
+
pass
|
786
|
+
|
787
|
+
ctypedef struct la_col_t:
|
788
|
+
pass
|
789
|
+
|
790
|
+
ctypedef struct hash_t:
|
791
|
+
pass
|
792
|
+
|
793
|
+
ctypedef struct relation_t:
|
794
|
+
pass
|
795
|
+
|
796
|
+
ctypedef struct qs_poly_s:
|
797
|
+
pass
|
798
|
+
ctypedef qs_poly_s qs_poly_t[1]
|
799
|
+
|
800
|
+
ctypedef struct qs_s:
|
801
|
+
pass
|
802
|
+
ctypedef qs_s qs_t[1]
|
803
|
+
|
804
|
+
|
805
|
+
# flint/thread_pool.h
|
806
|
+
ctypedef struct thread_pool_entry_struct:
|
807
|
+
pass
|
808
|
+
|
809
|
+
ctypedef thread_pool_entry_struct thread_pool_entry_t[1]
|
810
|
+
|
811
|
+
ctypedef struct thread_pool_struct:
|
812
|
+
pass
|
813
|
+
|
814
|
+
ctypedef thread_pool_struct thread_pool_t[1]
|
815
|
+
ctypedef int thread_pool_handle
|
816
|
+
|
817
|
+
|
818
|
+
# flint/bernoulli.h
|
819
|
+
ctypedef struct bernoulli_rev_struct:
|
820
|
+
pass
|
821
|
+
ctypedef bernoulli_rev_struct bernoulli_rev_t[1]
|
822
|
+
|
823
|
+
|
824
|
+
# flint/mpoly_types.h
|
825
|
+
ctypedef enum ordering_t:
|
826
|
+
ORD_LEX
|
827
|
+
ORD_DEGLEX
|
828
|
+
ORD_DEGREVLEX
|
829
|
+
|
830
|
+
ctypedef struct mpoly_ctx_struct:
|
831
|
+
pass
|
832
|
+
ctypedef mpoly_ctx_struct mpoly_ctx_t[1]
|
833
|
+
|
834
|
+
ctypedef struct nmod_mpoly_ctx_struct:
|
835
|
+
pass
|
836
|
+
ctypedef nmod_mpoly_ctx_struct nmod_mpoly_ctx_t[1]
|
837
|
+
|
838
|
+
ctypedef struct fmpz_mpoly_ctx_struct:
|
839
|
+
pass
|
840
|
+
ctypedef fmpz_mpoly_ctx_struct fmpz_mpoly_ctx_t[1]
|
841
|
+
|
842
|
+
ctypedef struct fmpq_mpoly_ctx_struct:
|
843
|
+
pass
|
844
|
+
|
845
|
+
ctypedef fmpq_mpoly_ctx_struct fmpq_mpoly_ctx_t[1]
|
846
|
+
|
847
|
+
ctypedef struct fmpz_mod_mpoly_ctx_struct:
|
848
|
+
pass
|
849
|
+
ctypedef fmpz_mod_mpoly_ctx_struct fmpz_mod_mpoly_ctx_t[1]
|
850
|
+
|
851
|
+
|
852
|
+
# flint/mpoly.h
|
853
|
+
ctypedef struct mpoly_heap_t:
|
854
|
+
pass
|
855
|
+
|
856
|
+
ctypedef struct mpoly_nheap_t:
|
857
|
+
pass
|
858
|
+
|
859
|
+
ctypedef struct mpoly_heap1_s:
|
860
|
+
pass
|
861
|
+
|
862
|
+
ctypedef struct mpoly_heap_s:
|
863
|
+
pass
|
864
|
+
|
865
|
+
ctypedef struct mpoly_rbnode_ui_struct:
|
866
|
+
pass
|
867
|
+
|
868
|
+
ctypedef struct mpoly_rbtree_ui_struct:
|
869
|
+
pass
|
870
|
+
|
871
|
+
ctypedef mpoly_rbtree_ui_struct mpoly_rbtree_ui_t[1]
|
872
|
+
|
873
|
+
ctypedef struct mpoly_rbnode_fmpz_struct:
|
874
|
+
pass
|
875
|
+
|
876
|
+
ctypedef struct mpoly_rbtree_fmpz_struct:
|
877
|
+
pass
|
878
|
+
ctypedef mpoly_rbtree_fmpz_struct mpoly_rbtree_fmpz_t[1]
|
879
|
+
|
880
|
+
ctypedef struct mpoly_gcd_info_struct:
|
881
|
+
pass
|
882
|
+
ctypedef mpoly_gcd_info_struct mpoly_gcd_info_t[1]
|
883
|
+
|
884
|
+
ctypedef struct mpoly_compression_struct:
|
885
|
+
pass
|
886
|
+
ctypedef mpoly_compression_struct mpoly_compression_t[1]
|
887
|
+
|
888
|
+
ctypedef struct mpoly_univar_struct:
|
889
|
+
pass
|
890
|
+
ctypedef mpoly_univar_struct mpoly_univar_t[1]
|
891
|
+
|
892
|
+
ctypedef struct mpoly_void_ring_struct:
|
893
|
+
pass
|
894
|
+
ctypedef mpoly_void_ring_struct mpoly_void_ring_t[1]
|
895
|
+
|
896
|
+
ctypedef struct string_with_length_struct:
|
897
|
+
pass
|
898
|
+
|
899
|
+
ctypedef struct mpoly_parse_struct:
|
900
|
+
pass
|
901
|
+
ctypedef mpoly_parse_struct mpoly_parse_t[1]
|
902
|
+
|
903
|
+
|
904
|
+
# flint/fmpz_mpoly.h
|
905
|
+
ctypedef struct fmpz_mpoly_univar_struct:
|
906
|
+
pass
|
907
|
+
ctypedef fmpz_mpoly_univar_struct fmpz_mpoly_univar_t[1]
|
908
|
+
|
909
|
+
ctypedef struct fmpz_mpolyd_struct:
|
910
|
+
pass
|
911
|
+
ctypedef fmpz_mpolyd_struct fmpz_mpolyd_t[1]
|
912
|
+
|
913
|
+
ctypedef struct fmpz_mpoly_vec_struct:
|
914
|
+
pass
|
915
|
+
ctypedef fmpz_mpoly_vec_struct fmpz_mpoly_vec_t[1]
|
916
|
+
|
917
|
+
ctypedef struct fmpz_mpolyd_ctx_struct:
|
918
|
+
pass
|
919
|
+
ctypedef fmpz_mpolyd_ctx_struct fmpz_mpolyd_ctx_t[1]
|
920
|
+
|
921
|
+
ctypedef struct fmpz_pow_cache_struct:
|
922
|
+
pass
|
923
|
+
ctypedef fmpz_pow_cache_struct fmpz_pow_cache_t[1]
|
924
|
+
|
925
|
+
ctypedef struct fmpz_mpoly_geobucket_struct:
|
926
|
+
pass
|
927
|
+
ctypedef fmpz_mpoly_geobucket_struct fmpz_mpoly_geobucket_t[1]
|
928
|
+
|
929
|
+
|
930
|
+
# flint/fmpq_mpoly.h
|
931
|
+
ctypedef struct fmpq_mpoly_univar_struct:
|
932
|
+
pass
|
933
|
+
ctypedef fmpq_mpoly_univar_struct fmpq_mpoly_univar_t[1]
|
934
|
+
|
935
|
+
|
936
|
+
# flint/fft_small.h
|
937
|
+
ctypedef struct mpn_ctx_struct:
|
938
|
+
pass
|
939
|
+
ctypedef mpn_ctx_struct mpn_ctx_t[1]
|
940
|
+
|
941
|
+
ctypedef struct mul_precomp_struct:
|
942
|
+
pass
|
943
|
+
|
944
|
+
ctypedef struct nmod_poly_divrem_precomp_struct:
|
945
|
+
pass
|
946
|
+
|
947
|
+
|
948
|
+
# flint/nf.h
|
949
|
+
ctypedef struct nf_struct:
|
950
|
+
pass
|
951
|
+
ctypedef nf_struct nf_t[1]
|
952
|
+
|
953
|
+
|
954
|
+
# flint/nf_elem.h
|
955
|
+
ctypedef struct lnf_elem_struct:
|
956
|
+
pass
|
957
|
+
ctypedef lnf_elem_struct lnf_elem_t[1]
|
958
|
+
|
959
|
+
ctypedef struct qnf_elem_struct:
|
960
|
+
pass
|
961
|
+
ctypedef qnf_elem_struct qnf_elem_t[1]
|
962
|
+
|
963
|
+
ctypedef union nf_elem_struct:
|
964
|
+
fmpq_poly_t elem
|
965
|
+
lnf_elem_t lelem
|
966
|
+
qnf_elem_t qelem
|
967
|
+
ctypedef nf_elem_struct nf_elem_t[1]
|
968
|
+
|
969
|
+
|
970
|
+
# flint/machine_vectors.h
|
971
|
+
ctypedef struct vec1n:
|
972
|
+
pass
|
973
|
+
ctypedef struct vec2n:
|
974
|
+
pass
|
975
|
+
ctypedef struct vec4n:
|
976
|
+
pass
|
977
|
+
ctypedef struct vec8n:
|
978
|
+
pass
|
979
|
+
|
980
|
+
ctypedef struct vec1d:
|
981
|
+
pass
|
982
|
+
ctypedef struct vec2d:
|
983
|
+
pass
|
984
|
+
ctypedef struct vec4d:
|
985
|
+
pass
|
986
|
+
ctypedef struct vec8d:
|
987
|
+
pass
|
988
|
+
|
989
|
+
|
990
|
+
# flint/calcium.h
|
991
|
+
ctypedef struct calcium_stream_struct:
|
992
|
+
pass
|
993
|
+
ctypedef calcium_stream_struct calcium_stream_t[1]
|
994
|
+
|
995
|
+
|
996
|
+
ctypedef enum truth_t:
|
997
|
+
T_TRUE
|
998
|
+
T_FALSE
|
999
|
+
T_UNKNOWN
|
1000
|
+
|
1001
|
+
ctypedef enum calcium_func_code:
|
1002
|
+
CA_QQBar
|
1003
|
+
CA_Neg
|
1004
|
+
CA_Add
|
1005
|
+
CA_Sub
|
1006
|
+
CA_Mul
|
1007
|
+
CA_Div
|
1008
|
+
CA_Sqrt
|
1009
|
+
CA_Cbrt
|
1010
|
+
CA_Root
|
1011
|
+
CA_Floor
|
1012
|
+
CA_Ceil
|
1013
|
+
CA_Abs
|
1014
|
+
CA_Sign
|
1015
|
+
CA_Re
|
1016
|
+
CA_Im
|
1017
|
+
CA_Arg
|
1018
|
+
CA_Conjugate
|
1019
|
+
CA_Pi
|
1020
|
+
CA_Sin
|
1021
|
+
CA_Cos
|
1022
|
+
CA_Exp
|
1023
|
+
CA_Log
|
1024
|
+
CA_Pow
|
1025
|
+
CA_Tan
|
1026
|
+
CA_Cot
|
1027
|
+
CA_Cosh
|
1028
|
+
CA_Sinh
|
1029
|
+
CA_Tanh
|
1030
|
+
CA_Coth
|
1031
|
+
CA_Atan
|
1032
|
+
CA_Acos
|
1033
|
+
CA_Asin
|
1034
|
+
CA_Acot
|
1035
|
+
CA_Atanh
|
1036
|
+
CA_Acosh
|
1037
|
+
CA_Asinh
|
1038
|
+
CA_Acoth
|
1039
|
+
CA_Euler
|
1040
|
+
CA_Gamma
|
1041
|
+
CA_LogGamma
|
1042
|
+
CA_Psi
|
1043
|
+
CA_Erf
|
1044
|
+
CA_Erfc
|
1045
|
+
CA_Erfi
|
1046
|
+
CA_RiemannZeta
|
1047
|
+
CA_HurwitzZeta
|
1048
|
+
CA_FUNC_CODE_LENGTH
|
1049
|
+
|
1050
|
+
|
1051
|
+
# flint/ca.h
|
1052
|
+
ctypedef union ca_elem_struct:
|
1053
|
+
fmpq q
|
1054
|
+
nf_elem_struct nf
|
1055
|
+
fmpz_mpoly_q_struct * mpoly_q
|
1056
|
+
|
1057
|
+
ctypedef struct ca_struct:
|
1058
|
+
ulong field
|
1059
|
+
ca_elem_struct elem
|
1060
|
+
|
1061
|
+
ctypedef ca_struct ca_t[1]
|
1062
|
+
ctypedef ca_struct * ca_ptr
|
1063
|
+
ctypedef const ca_struct * ca_srcptr
|
1064
|
+
|
1065
|
+
ctypedef struct ca_ext_qqbar:
|
1066
|
+
pass
|
1067
|
+
|
1068
|
+
ctypedef struct ca_ext_func_data:
|
1069
|
+
pass
|
1070
|
+
|
1071
|
+
ctypedef struct ca_ext_struct:
|
1072
|
+
pass
|
1073
|
+
|
1074
|
+
ctypedef ca_ext_struct ca_ext_t[1]
|
1075
|
+
ctypedef ca_ext_struct * ca_ext_ptr
|
1076
|
+
ctypedef const ca_ext_struct * ca_ext_srcptr
|
1077
|
+
|
1078
|
+
ctypedef struct ca_ext_cache_struct:
|
1079
|
+
pass
|
1080
|
+
|
1081
|
+
ctypedef ca_ext_cache_struct ca_ext_cache_t[1]
|
1082
|
+
|
1083
|
+
ctypedef struct ca_field_struct:
|
1084
|
+
pass
|
1085
|
+
|
1086
|
+
ctypedef ca_field_struct ca_field_t[1]
|
1087
|
+
ctypedef ca_field_struct * ca_field_ptr
|
1088
|
+
ctypedef const ca_field_struct * ca_field_srcptr
|
1089
|
+
|
1090
|
+
ctypedef struct ca_field_cache_struct:
|
1091
|
+
pass
|
1092
|
+
|
1093
|
+
ctypedef ca_field_cache_struct ca_field_cache_t[1]
|
1094
|
+
|
1095
|
+
cdef enum:
|
1096
|
+
CA_OPT_VERBOSE
|
1097
|
+
CA_OPT_PRINT_FLAGS
|
1098
|
+
CA_OPT_MPOLY_ORD
|
1099
|
+
CA_OPT_PREC_LIMIT
|
1100
|
+
CA_OPT_QQBAR_DEG_LIMIT
|
1101
|
+
CA_OPT_LOW_PREC
|
1102
|
+
CA_OPT_SMOOTH_LIMIT
|
1103
|
+
CA_OPT_LLL_PREC
|
1104
|
+
CA_OPT_POW_LIMIT
|
1105
|
+
CA_OPT_USE_GROEBNER
|
1106
|
+
CA_OPT_GROEBNER_LENGTH_LIMIT
|
1107
|
+
CA_OPT_GROEBNER_POLY_LENGTH_LIMIT
|
1108
|
+
CA_OPT_GROEBNER_POLY_BITS_LIMIT
|
1109
|
+
CA_OPT_VIETA_LIMIT
|
1110
|
+
CA_OPT_TRIG_FORM
|
1111
|
+
CA_OPT_NUM_OPTIONS
|
1112
|
+
|
1113
|
+
ctypedef struct ca_ctx_struct:
|
1114
|
+
pass
|
1115
|
+
|
1116
|
+
ctypedef ca_ctx_struct ca_ctx_t[1]
|
1117
|
+
|
1118
|
+
ctypedef struct ca_factor_struct:
|
1119
|
+
pass
|
1120
|
+
ctypedef ca_factor_struct ca_factor_t[1]
|
1121
|
+
|
1122
|
+
|
1123
|
+
# flint/ca_poly.h
|
1124
|
+
ctypedef struct ca_poly_struct:
|
1125
|
+
pass
|
1126
|
+
ctypedef ca_poly_struct ca_poly_t[1]
|
1127
|
+
|
1128
|
+
ctypedef struct ca_poly_vec_struct:
|
1129
|
+
pass
|
1130
|
+
ctypedef ca_poly_vec_struct ca_poly_vec_t[1]
|
1131
|
+
|
1132
|
+
|
1133
|
+
# flint/ca_vec.h
|
1134
|
+
ctypedef struct ca_vec_struct:
|
1135
|
+
pass
|
1136
|
+
ctypedef ca_vec_struct ca_vec_t[1]
|
1137
|
+
|
1138
|
+
|
1139
|
+
# flint/ca_mat.h
|
1140
|
+
ctypedef struct ca_mat_struct:
|
1141
|
+
pass
|
1142
|
+
ctypedef ca_mat_struct ca_mat_t[1]
|
1143
|
+
|
1144
|
+
|
1145
|
+
# flint/mpf_vec.h
|
1146
|
+
ctypedef __mpf_struct mpf
|
1147
|
+
|
1148
|
+
|
1149
|
+
# flint/mpf_mat.h
|
1150
|
+
ctypedef struct mpf_mat_struct:
|
1151
|
+
pass
|
1152
|
+
ctypedef mpf_mat_struct mpf_mat_t[1]
|
1153
|
+
|
1154
|
+
|
1155
|
+
# flint/mpfr_mat.h
|
1156
|
+
ctypedef struct mpfr_mat_struct:
|
1157
|
+
pass
|
1158
|
+
ctypedef mpfr_mat_struct mpfr_mat_t[1]
|
1159
|
+
|
1160
|
+
|
1161
|
+
# flint/gr.h
|
1162
|
+
ctypedef int (*gr_funcptr)()
|
1163
|
+
|
1164
|
+
ctypedef struct gr_stream_struct:
|
1165
|
+
pass
|
1166
|
+
ctypedef gr_stream_struct gr_stream_t[1]
|
1167
|
+
|
1168
|
+
ctypedef void * gr_ptr
|
1169
|
+
ctypedef const void * gr_srcptr
|
1170
|
+
ctypedef void * gr_ctx_ptr
|
1171
|
+
|
1172
|
+
ctypedef struct gr_vec_struct:
|
1173
|
+
pass
|
1174
|
+
ctypedef gr_vec_struct gr_vec_t[1]
|
1175
|
+
|
1176
|
+
ctypedef enum gr_method:
|
1177
|
+
GR_METHOD_CTX_WRITE
|
1178
|
+
GR_METHOD_CTX_CLEAR
|
1179
|
+
GR_METHOD_CTX_IS_RING
|
1180
|
+
GR_METHOD_CTX_IS_COMMUTATIVE_RING
|
1181
|
+
GR_METHOD_CTX_IS_INTEGRAL_DOMAIN
|
1182
|
+
GR_METHOD_CTX_IS_FIELD
|
1183
|
+
GR_METHOD_CTX_IS_UNIQUE_FACTORIZATION_DOMAIN
|
1184
|
+
GR_METHOD_CTX_IS_FINITE
|
1185
|
+
GR_METHOD_CTX_IS_FINITE_CHARACTERISTIC
|
1186
|
+
GR_METHOD_CTX_IS_ALGEBRAICALLY_CLOSED
|
1187
|
+
GR_METHOD_CTX_IS_ORDERED_RING
|
1188
|
+
GR_METHOD_CTX_IS_MULTIPLICATIVE_GROUP
|
1189
|
+
GR_METHOD_CTX_IS_EXACT
|
1190
|
+
GR_METHOD_CTX_IS_CANONICAL
|
1191
|
+
GR_METHOD_CTX_IS_THREADSAFE
|
1192
|
+
GR_METHOD_CTX_HAS_REAL_PREC
|
1193
|
+
GR_METHOD_CTX_SET_REAL_PREC
|
1194
|
+
GR_METHOD_CTX_GET_REAL_PREC
|
1195
|
+
GR_METHOD_CTX_SET_GEN_NAME
|
1196
|
+
GR_METHOD_CTX_SET_GEN_NAMES
|
1197
|
+
GR_METHOD_INIT
|
1198
|
+
GR_METHOD_CLEAR
|
1199
|
+
GR_METHOD_SWAP
|
1200
|
+
GR_METHOD_SET_SHALLOW
|
1201
|
+
GR_METHOD_WRITE
|
1202
|
+
GR_METHOD_WRITE_N
|
1203
|
+
GR_METHOD_RANDTEST
|
1204
|
+
GR_METHOD_RANDTEST_NOT_ZERO
|
1205
|
+
GR_METHOD_RANDTEST_SMALL
|
1206
|
+
GR_METHOD_ZERO
|
1207
|
+
GR_METHOD_ONE
|
1208
|
+
GR_METHOD_NEG_ONE
|
1209
|
+
GR_METHOD_IS_ZERO
|
1210
|
+
GR_METHOD_IS_ONE
|
1211
|
+
GR_METHOD_IS_NEG_ONE
|
1212
|
+
GR_METHOD_EQUAL
|
1213
|
+
GR_METHOD_SET
|
1214
|
+
GR_METHOD_SET_UI
|
1215
|
+
GR_METHOD_SET_SI
|
1216
|
+
GR_METHOD_SET_FMPZ
|
1217
|
+
GR_METHOD_SET_FMPQ
|
1218
|
+
GR_METHOD_SET_D
|
1219
|
+
GR_METHOD_SET_OTHER
|
1220
|
+
GR_METHOD_SET_STR
|
1221
|
+
GR_METHOD_GET_SI
|
1222
|
+
GR_METHOD_GET_UI
|
1223
|
+
GR_METHOD_GET_FMPZ
|
1224
|
+
GR_METHOD_GET_FMPQ
|
1225
|
+
GR_METHOD_GET_D
|
1226
|
+
GR_METHOD_GET_FEXPR
|
1227
|
+
GR_METHOD_GET_FEXPR_SERIALIZE
|
1228
|
+
GR_METHOD_SET_FEXPR
|
1229
|
+
GR_METHOD_NEG
|
1230
|
+
GR_METHOD_ADD
|
1231
|
+
GR_METHOD_ADD_UI
|
1232
|
+
GR_METHOD_ADD_SI
|
1233
|
+
GR_METHOD_ADD_FMPZ
|
1234
|
+
GR_METHOD_ADD_FMPQ
|
1235
|
+
GR_METHOD_ADD_OTHER
|
1236
|
+
GR_METHOD_OTHER_ADD
|
1237
|
+
GR_METHOD_SUB
|
1238
|
+
GR_METHOD_SUB_UI
|
1239
|
+
GR_METHOD_SUB_SI
|
1240
|
+
GR_METHOD_SUB_FMPZ
|
1241
|
+
GR_METHOD_SUB_FMPQ
|
1242
|
+
GR_METHOD_SUB_OTHER
|
1243
|
+
GR_METHOD_OTHER_SUB
|
1244
|
+
GR_METHOD_MUL
|
1245
|
+
GR_METHOD_MUL_UI
|
1246
|
+
GR_METHOD_MUL_SI
|
1247
|
+
GR_METHOD_MUL_FMPZ
|
1248
|
+
GR_METHOD_MUL_FMPQ
|
1249
|
+
GR_METHOD_MUL_OTHER
|
1250
|
+
GR_METHOD_OTHER_MUL
|
1251
|
+
GR_METHOD_ADDMUL
|
1252
|
+
GR_METHOD_ADDMUL_UI
|
1253
|
+
GR_METHOD_ADDMUL_SI
|
1254
|
+
GR_METHOD_ADDMUL_FMPZ
|
1255
|
+
GR_METHOD_ADDMUL_FMPQ
|
1256
|
+
GR_METHOD_ADDMUL_OTHER
|
1257
|
+
GR_METHOD_SUBMUL
|
1258
|
+
GR_METHOD_SUBMUL_UI
|
1259
|
+
GR_METHOD_SUBMUL_SI
|
1260
|
+
GR_METHOD_SUBMUL_FMPZ
|
1261
|
+
GR_METHOD_SUBMUL_FMPQ
|
1262
|
+
GR_METHOD_SUBMUL_OTHER
|
1263
|
+
GR_METHOD_FMA
|
1264
|
+
GR_METHOD_FMS
|
1265
|
+
GR_METHOD_FMMA
|
1266
|
+
GR_METHOD_FMMS
|
1267
|
+
GR_METHOD_MUL_TWO
|
1268
|
+
GR_METHOD_SQR
|
1269
|
+
GR_METHOD_MUL_2EXP_SI
|
1270
|
+
GR_METHOD_MUL_2EXP_FMPZ
|
1271
|
+
GR_METHOD_SET_FMPZ_2EXP_FMPZ
|
1272
|
+
GR_METHOD_GET_FMPZ_2EXP_FMPZ
|
1273
|
+
GR_METHOD_IS_INVERTIBLE
|
1274
|
+
GR_METHOD_INV
|
1275
|
+
GR_METHOD_DIV
|
1276
|
+
GR_METHOD_DIV_UI
|
1277
|
+
GR_METHOD_DIV_SI
|
1278
|
+
GR_METHOD_DIV_FMPZ
|
1279
|
+
GR_METHOD_DIV_FMPQ
|
1280
|
+
GR_METHOD_DIV_OTHER
|
1281
|
+
GR_METHOD_OTHER_DIV
|
1282
|
+
GR_METHOD_DIVEXACT
|
1283
|
+
GR_METHOD_DIVEXACT_UI
|
1284
|
+
GR_METHOD_DIVEXACT_SI
|
1285
|
+
GR_METHOD_DIVEXACT_FMPZ
|
1286
|
+
GR_METHOD_DIVEXACT_FMPQ
|
1287
|
+
GR_METHOD_DIVEXACT_OTHER
|
1288
|
+
GR_METHOD_OTHER_DIVEXACT
|
1289
|
+
GR_METHOD_POW
|
1290
|
+
GR_METHOD_POW_UI
|
1291
|
+
GR_METHOD_POW_SI
|
1292
|
+
GR_METHOD_POW_FMPZ
|
1293
|
+
GR_METHOD_POW_FMPQ
|
1294
|
+
GR_METHOD_POW_OTHER
|
1295
|
+
GR_METHOD_OTHER_POW
|
1296
|
+
GR_METHOD_IS_SQUARE
|
1297
|
+
GR_METHOD_SQRT
|
1298
|
+
GR_METHOD_RSQRT
|
1299
|
+
GR_METHOD_HYPOT
|
1300
|
+
GR_METHOD_IS_PERFECT_POWER
|
1301
|
+
GR_METHOD_FACTOR_PERFECT_POWER
|
1302
|
+
GR_METHOD_ROOT_UI
|
1303
|
+
GR_METHOD_DIVIDES
|
1304
|
+
GR_METHOD_EUCLIDEAN_DIV
|
1305
|
+
GR_METHOD_EUCLIDEAN_REM
|
1306
|
+
GR_METHOD_EUCLIDEAN_DIVREM
|
1307
|
+
GR_METHOD_GCD
|
1308
|
+
GR_METHOD_LCM
|
1309
|
+
GR_METHOD_FACTOR
|
1310
|
+
GR_METHOD_NUMERATOR
|
1311
|
+
GR_METHOD_DENOMINATOR
|
1312
|
+
GR_METHOD_FLOOR
|
1313
|
+
GR_METHOD_CEIL
|
1314
|
+
GR_METHOD_TRUNC
|
1315
|
+
GR_METHOD_NINT
|
1316
|
+
GR_METHOD_CMP
|
1317
|
+
GR_METHOD_CMPABS
|
1318
|
+
GR_METHOD_CMP_OTHER
|
1319
|
+
GR_METHOD_CMPABS_OTHER
|
1320
|
+
GR_METHOD_MIN
|
1321
|
+
GR_METHOD_MAX
|
1322
|
+
GR_METHOD_ABS
|
1323
|
+
GR_METHOD_ABS2
|
1324
|
+
GR_METHOD_I
|
1325
|
+
GR_METHOD_CONJ
|
1326
|
+
GR_METHOD_RE
|
1327
|
+
GR_METHOD_IM
|
1328
|
+
GR_METHOD_SGN
|
1329
|
+
GR_METHOD_CSGN
|
1330
|
+
GR_METHOD_ARG
|
1331
|
+
GR_METHOD_POS_INF
|
1332
|
+
GR_METHOD_NEG_INF
|
1333
|
+
GR_METHOD_UINF
|
1334
|
+
GR_METHOD_UNDEFINED
|
1335
|
+
GR_METHOD_UNKNOWN
|
1336
|
+
GR_METHOD_IS_INTEGER
|
1337
|
+
GR_METHOD_IS_RATIONAL
|
1338
|
+
GR_METHOD_IS_REAL
|
1339
|
+
GR_METHOD_IS_POSITIVE_INTEGER
|
1340
|
+
GR_METHOD_IS_NONNEGATIVE_INTEGER
|
1341
|
+
GR_METHOD_IS_NEGATIVE_INTEGER
|
1342
|
+
GR_METHOD_IS_NONPOSITIVE_INTEGER
|
1343
|
+
GR_METHOD_IS_POSITIVE_REAL
|
1344
|
+
GR_METHOD_IS_NONNEGATIVE_REAL
|
1345
|
+
GR_METHOD_IS_NEGATIVE_REAL
|
1346
|
+
GR_METHOD_IS_NONPOSITIVE_REAL
|
1347
|
+
GR_METHOD_IS_ROOT_OF_UNITY
|
1348
|
+
GR_METHOD_ROOT_OF_UNITY_UI
|
1349
|
+
GR_METHOD_ROOT_OF_UNITY_UI_VEC
|
1350
|
+
GR_METHOD_PI
|
1351
|
+
GR_METHOD_EXP
|
1352
|
+
GR_METHOD_EXPM1
|
1353
|
+
GR_METHOD_EXP_PI_I
|
1354
|
+
GR_METHOD_EXP2
|
1355
|
+
GR_METHOD_EXP10
|
1356
|
+
GR_METHOD_LOG
|
1357
|
+
GR_METHOD_LOG1P
|
1358
|
+
GR_METHOD_LOG_PI_I
|
1359
|
+
GR_METHOD_LOG2
|
1360
|
+
GR_METHOD_LOG10
|
1361
|
+
GR_METHOD_SIN
|
1362
|
+
GR_METHOD_COS
|
1363
|
+
GR_METHOD_SIN_COS
|
1364
|
+
GR_METHOD_TAN
|
1365
|
+
GR_METHOD_COT
|
1366
|
+
GR_METHOD_SEC
|
1367
|
+
GR_METHOD_CSC
|
1368
|
+
GR_METHOD_SIN_PI
|
1369
|
+
GR_METHOD_COS_PI
|
1370
|
+
GR_METHOD_SIN_COS_PI
|
1371
|
+
GR_METHOD_TAN_PI
|
1372
|
+
GR_METHOD_COT_PI
|
1373
|
+
GR_METHOD_SEC_PI
|
1374
|
+
GR_METHOD_CSC_PI
|
1375
|
+
GR_METHOD_SINC
|
1376
|
+
GR_METHOD_SINC_PI
|
1377
|
+
GR_METHOD_SINH
|
1378
|
+
GR_METHOD_COSH
|
1379
|
+
GR_METHOD_SINH_COSH
|
1380
|
+
GR_METHOD_TANH
|
1381
|
+
GR_METHOD_COTH
|
1382
|
+
GR_METHOD_SECH
|
1383
|
+
GR_METHOD_CSCH
|
1384
|
+
GR_METHOD_ASIN
|
1385
|
+
GR_METHOD_ACOS
|
1386
|
+
GR_METHOD_ATAN
|
1387
|
+
GR_METHOD_ATAN2
|
1388
|
+
GR_METHOD_ACOT
|
1389
|
+
GR_METHOD_ASEC
|
1390
|
+
GR_METHOD_ACSC
|
1391
|
+
GR_METHOD_ASINH
|
1392
|
+
GR_METHOD_ACOSH
|
1393
|
+
GR_METHOD_ATANH
|
1394
|
+
GR_METHOD_ACOTH
|
1395
|
+
GR_METHOD_ASECH
|
1396
|
+
GR_METHOD_ACSCH
|
1397
|
+
GR_METHOD_ASIN_PI
|
1398
|
+
GR_METHOD_ACOS_PI
|
1399
|
+
GR_METHOD_ATAN_PI
|
1400
|
+
GR_METHOD_ACOT_PI
|
1401
|
+
GR_METHOD_ASEC_PI
|
1402
|
+
GR_METHOD_ACSC_PI
|
1403
|
+
GR_METHOD_FAC
|
1404
|
+
GR_METHOD_FAC_UI
|
1405
|
+
GR_METHOD_FAC_FMPZ
|
1406
|
+
GR_METHOD_FAC_VEC
|
1407
|
+
GR_METHOD_RFAC
|
1408
|
+
GR_METHOD_RFAC_UI
|
1409
|
+
GR_METHOD_RFAC_FMPZ
|
1410
|
+
GR_METHOD_RFAC_VEC
|
1411
|
+
GR_METHOD_BIN
|
1412
|
+
GR_METHOD_BIN_UI
|
1413
|
+
GR_METHOD_BIN_UIUI
|
1414
|
+
GR_METHOD_BIN_VEC
|
1415
|
+
GR_METHOD_BIN_UI_VEC
|
1416
|
+
GR_METHOD_RISING_UI
|
1417
|
+
GR_METHOD_RISING
|
1418
|
+
GR_METHOD_FALLING_UI
|
1419
|
+
GR_METHOD_FALLING
|
1420
|
+
GR_METHOD_GAMMA
|
1421
|
+
GR_METHOD_GAMMA_FMPZ
|
1422
|
+
GR_METHOD_GAMMA_FMPQ
|
1423
|
+
GR_METHOD_RGAMMA
|
1424
|
+
GR_METHOD_LGAMMA
|
1425
|
+
GR_METHOD_DIGAMMA
|
1426
|
+
GR_METHOD_BETA
|
1427
|
+
GR_METHOD_DOUBLEFAC
|
1428
|
+
GR_METHOD_DOUBLEFAC_UI
|
1429
|
+
GR_METHOD_BARNES_G
|
1430
|
+
GR_METHOD_LOG_BARNES_G
|
1431
|
+
GR_METHOD_HARMONIC
|
1432
|
+
GR_METHOD_HARMONIC_UI
|
1433
|
+
GR_METHOD_BERNOULLI_UI
|
1434
|
+
GR_METHOD_BERNOULLI_FMPZ
|
1435
|
+
GR_METHOD_BERNOULLI_VEC
|
1436
|
+
GR_METHOD_FIB_UI
|
1437
|
+
GR_METHOD_FIB_FMPZ
|
1438
|
+
GR_METHOD_FIB_VEC
|
1439
|
+
GR_METHOD_STIRLING_S1U_UIUI
|
1440
|
+
GR_METHOD_STIRLING_S1_UIUI
|
1441
|
+
GR_METHOD_STIRLING_S2_UIUI
|
1442
|
+
GR_METHOD_STIRLING_S1U_UI_VEC
|
1443
|
+
GR_METHOD_STIRLING_S1_UI_VEC
|
1444
|
+
GR_METHOD_STIRLING_S2_UI_VEC
|
1445
|
+
GR_METHOD_EULERNUM_UI
|
1446
|
+
GR_METHOD_EULERNUM_FMPZ
|
1447
|
+
GR_METHOD_EULERNUM_VEC
|
1448
|
+
GR_METHOD_BELLNUM_UI
|
1449
|
+
GR_METHOD_BELLNUM_FMPZ
|
1450
|
+
GR_METHOD_BELLNUM_VEC
|
1451
|
+
GR_METHOD_PARTITIONS_UI
|
1452
|
+
GR_METHOD_PARTITIONS_FMPZ
|
1453
|
+
GR_METHOD_PARTITIONS_VEC
|
1454
|
+
GR_METHOD_CHEBYSHEV_T_FMPZ
|
1455
|
+
GR_METHOD_CHEBYSHEV_U_FMPZ
|
1456
|
+
GR_METHOD_CHEBYSHEV_T
|
1457
|
+
GR_METHOD_CHEBYSHEV_U
|
1458
|
+
GR_METHOD_JACOBI_P
|
1459
|
+
GR_METHOD_GEGENBAUER_C
|
1460
|
+
GR_METHOD_LAGUERRE_L
|
1461
|
+
GR_METHOD_HERMITE_H
|
1462
|
+
GR_METHOD_LEGENDRE_P
|
1463
|
+
GR_METHOD_LEGENDRE_Q
|
1464
|
+
GR_METHOD_LEGENDRE_P_ROOT_UI
|
1465
|
+
GR_METHOD_SPHERICAL_Y_SI
|
1466
|
+
GR_METHOD_EULER
|
1467
|
+
GR_METHOD_CATALAN
|
1468
|
+
GR_METHOD_KHINCHIN
|
1469
|
+
GR_METHOD_GLAISHER
|
1470
|
+
GR_METHOD_LAMBERTW
|
1471
|
+
GR_METHOD_LAMBERTW_FMPZ
|
1472
|
+
GR_METHOD_ERF
|
1473
|
+
GR_METHOD_ERFC
|
1474
|
+
GR_METHOD_ERFCX
|
1475
|
+
GR_METHOD_ERFI
|
1476
|
+
GR_METHOD_ERFINV
|
1477
|
+
GR_METHOD_ERFCINV
|
1478
|
+
GR_METHOD_FRESNEL_S
|
1479
|
+
GR_METHOD_FRESNEL_C
|
1480
|
+
GR_METHOD_FRESNEL
|
1481
|
+
GR_METHOD_GAMMA_UPPER
|
1482
|
+
GR_METHOD_GAMMA_LOWER
|
1483
|
+
GR_METHOD_BETA_LOWER
|
1484
|
+
GR_METHOD_EXP_INTEGRAL
|
1485
|
+
GR_METHOD_EXP_INTEGRAL_EI
|
1486
|
+
GR_METHOD_SIN_INTEGRAL
|
1487
|
+
GR_METHOD_COS_INTEGRAL
|
1488
|
+
GR_METHOD_SINH_INTEGRAL
|
1489
|
+
GR_METHOD_COSH_INTEGRAL
|
1490
|
+
GR_METHOD_LOG_INTEGRAL
|
1491
|
+
GR_METHOD_DILOG
|
1492
|
+
GR_METHOD_BESSEL_J
|
1493
|
+
GR_METHOD_BESSEL_Y
|
1494
|
+
GR_METHOD_BESSEL_J_Y
|
1495
|
+
GR_METHOD_BESSEL_I
|
1496
|
+
GR_METHOD_BESSEL_I_SCALED
|
1497
|
+
GR_METHOD_BESSEL_K
|
1498
|
+
GR_METHOD_BESSEL_K_SCALED
|
1499
|
+
GR_METHOD_AIRY
|
1500
|
+
GR_METHOD_AIRY_AI
|
1501
|
+
GR_METHOD_AIRY_BI
|
1502
|
+
GR_METHOD_AIRY_AI_PRIME
|
1503
|
+
GR_METHOD_AIRY_BI_PRIME
|
1504
|
+
GR_METHOD_AIRY_AI_ZERO
|
1505
|
+
GR_METHOD_AIRY_BI_ZERO
|
1506
|
+
GR_METHOD_AIRY_AI_PRIME_ZERO
|
1507
|
+
GR_METHOD_AIRY_BI_PRIME_ZERO
|
1508
|
+
GR_METHOD_COULOMB
|
1509
|
+
GR_METHOD_COULOMB_F
|
1510
|
+
GR_METHOD_COULOMB_G
|
1511
|
+
GR_METHOD_COULOMB_HPOS
|
1512
|
+
GR_METHOD_COULOMB_HNEG
|
1513
|
+
GR_METHOD_ZETA
|
1514
|
+
GR_METHOD_ZETA_UI
|
1515
|
+
GR_METHOD_HURWITZ_ZETA
|
1516
|
+
GR_METHOD_LERCH_PHI
|
1517
|
+
GR_METHOD_STIELTJES
|
1518
|
+
GR_METHOD_DIRICHLET_ETA
|
1519
|
+
GR_METHOD_DIRICHLET_BETA
|
1520
|
+
GR_METHOD_RIEMANN_XI
|
1521
|
+
GR_METHOD_ZETA_ZERO
|
1522
|
+
GR_METHOD_ZETA_ZERO_VEC
|
1523
|
+
GR_METHOD_ZETA_NZEROS
|
1524
|
+
GR_METHOD_DIRICHLET_CHI_UI
|
1525
|
+
GR_METHOD_DIRICHLET_CHI_FMPZ
|
1526
|
+
GR_METHOD_DIRICHLET_L
|
1527
|
+
GR_METHOD_DIRICHLET_HARDY_THETA
|
1528
|
+
GR_METHOD_DIRICHLET_HARDY_Z
|
1529
|
+
GR_METHOD_BERNPOLY_UI
|
1530
|
+
GR_METHOD_EULERPOLY_UI
|
1531
|
+
GR_METHOD_POLYLOG
|
1532
|
+
GR_METHOD_POLYGAMMA
|
1533
|
+
GR_METHOD_HYPGEOM_0F1
|
1534
|
+
GR_METHOD_HYPGEOM_1F1
|
1535
|
+
GR_METHOD_HYPGEOM_2F0
|
1536
|
+
GR_METHOD_HYPGEOM_2F1
|
1537
|
+
GR_METHOD_HYPGEOM_U
|
1538
|
+
GR_METHOD_HYPGEOM_PFQ
|
1539
|
+
GR_METHOD_JACOBI_THETA
|
1540
|
+
GR_METHOD_JACOBI_THETA_1
|
1541
|
+
GR_METHOD_JACOBI_THETA_2
|
1542
|
+
GR_METHOD_JACOBI_THETA_3
|
1543
|
+
GR_METHOD_JACOBI_THETA_4
|
1544
|
+
GR_METHOD_JACOBI_THETA_Q
|
1545
|
+
GR_METHOD_JACOBI_THETA_Q_1
|
1546
|
+
GR_METHOD_JACOBI_THETA_Q_2
|
1547
|
+
GR_METHOD_JACOBI_THETA_Q_3
|
1548
|
+
GR_METHOD_JACOBI_THETA_Q_4
|
1549
|
+
GR_METHOD_MODULAR_J
|
1550
|
+
GR_METHOD_MODULAR_LAMBDA
|
1551
|
+
GR_METHOD_MODULAR_DELTA
|
1552
|
+
GR_METHOD_HILBERT_CLASS_POLY
|
1553
|
+
GR_METHOD_DEDEKIND_ETA
|
1554
|
+
GR_METHOD_DEDEKIND_ETA_Q
|
1555
|
+
GR_METHOD_EISENSTEIN_E
|
1556
|
+
GR_METHOD_EISENSTEIN_G
|
1557
|
+
GR_METHOD_EISENSTEIN_G_VEC
|
1558
|
+
GR_METHOD_AGM
|
1559
|
+
GR_METHOD_AGM1
|
1560
|
+
GR_METHOD_ELLIPTIC_K
|
1561
|
+
GR_METHOD_ELLIPTIC_E
|
1562
|
+
GR_METHOD_ELLIPTIC_PI
|
1563
|
+
GR_METHOD_ELLIPTIC_F
|
1564
|
+
GR_METHOD_ELLIPTIC_E_INC
|
1565
|
+
GR_METHOD_ELLIPTIC_PI_INC
|
1566
|
+
GR_METHOD_CARLSON_RF
|
1567
|
+
GR_METHOD_CARLSON_RC
|
1568
|
+
GR_METHOD_CARLSON_RJ
|
1569
|
+
GR_METHOD_CARLSON_RG
|
1570
|
+
GR_METHOD_CARLSON_RD
|
1571
|
+
GR_METHOD_ELLIPTIC_ROOTS
|
1572
|
+
GR_METHOD_ELLIPTIC_INVARIANTS
|
1573
|
+
GR_METHOD_WEIERSTRASS_P
|
1574
|
+
GR_METHOD_WEIERSTRASS_P_PRIME
|
1575
|
+
GR_METHOD_WEIERSTRASS_P_INV
|
1576
|
+
GR_METHOD_WEIERSTRASS_ZETA
|
1577
|
+
GR_METHOD_WEIERSTRASS_SIGMA
|
1578
|
+
GR_METHOD_GEN
|
1579
|
+
GR_METHOD_GENS
|
1580
|
+
GR_METHOD_CTX_FQ_PRIME
|
1581
|
+
GR_METHOD_CTX_FQ_DEGREE
|
1582
|
+
GR_METHOD_CTX_FQ_ORDER
|
1583
|
+
GR_METHOD_FQ_FROBENIUS
|
1584
|
+
GR_METHOD_FQ_MULTIPLICATIVE_ORDER
|
1585
|
+
GR_METHOD_FQ_NORM
|
1586
|
+
GR_METHOD_FQ_TRACE
|
1587
|
+
GR_METHOD_FQ_IS_PRIMITIVE
|
1588
|
+
GR_METHOD_FQ_PTH_ROOT
|
1589
|
+
GR_METHOD_VEC_INIT
|
1590
|
+
GR_METHOD_VEC_CLEAR
|
1591
|
+
GR_METHOD_VEC_SWAP
|
1592
|
+
GR_METHOD_VEC_SET
|
1593
|
+
GR_METHOD_VEC_ZERO
|
1594
|
+
GR_METHOD_VEC_EQUAL
|
1595
|
+
GR_METHOD_VEC_IS_ZERO
|
1596
|
+
GR_METHOD_VEC_NEG
|
1597
|
+
GR_METHOD_VEC_NORMALISE
|
1598
|
+
GR_METHOD_VEC_NORMALISE_WEAK
|
1599
|
+
GR_METHOD_VEC_ADD
|
1600
|
+
GR_METHOD_VEC_SUB
|
1601
|
+
GR_METHOD_VEC_MUL
|
1602
|
+
GR_METHOD_VEC_DIV
|
1603
|
+
GR_METHOD_VEC_DIVEXACT
|
1604
|
+
GR_METHOD_VEC_POW
|
1605
|
+
GR_METHOD_VEC_ADD_SCALAR
|
1606
|
+
GR_METHOD_VEC_SUB_SCALAR
|
1607
|
+
GR_METHOD_VEC_MUL_SCALAR
|
1608
|
+
GR_METHOD_VEC_DIV_SCALAR
|
1609
|
+
GR_METHOD_VEC_DIVEXACT_SCALAR
|
1610
|
+
GR_METHOD_VEC_POW_SCALAR
|
1611
|
+
GR_METHOD_SCALAR_ADD_VEC
|
1612
|
+
GR_METHOD_SCALAR_SUB_VEC
|
1613
|
+
GR_METHOD_SCALAR_MUL_VEC
|
1614
|
+
GR_METHOD_SCALAR_DIV_VEC
|
1615
|
+
GR_METHOD_SCALAR_DIVEXACT_VEC
|
1616
|
+
GR_METHOD_SCALAR_POW_VEC
|
1617
|
+
GR_METHOD_VEC_ADD_OTHER
|
1618
|
+
GR_METHOD_VEC_SUB_OTHER
|
1619
|
+
GR_METHOD_VEC_MUL_OTHER
|
1620
|
+
GR_METHOD_VEC_DIV_OTHER
|
1621
|
+
GR_METHOD_VEC_DIVEXACT_OTHER
|
1622
|
+
GR_METHOD_VEC_POW_OTHER
|
1623
|
+
GR_METHOD_OTHER_ADD_VEC
|
1624
|
+
GR_METHOD_OTHER_SUB_VEC
|
1625
|
+
GR_METHOD_OTHER_MUL_VEC
|
1626
|
+
GR_METHOD_OTHER_DIV_VEC
|
1627
|
+
GR_METHOD_OTHER_DIVEXACT_VEC
|
1628
|
+
GR_METHOD_OTHER_POW_VEC
|
1629
|
+
GR_METHOD_VEC_ADD_SCALAR_OTHER
|
1630
|
+
GR_METHOD_VEC_SUB_SCALAR_OTHER
|
1631
|
+
GR_METHOD_VEC_MUL_SCALAR_OTHER
|
1632
|
+
GR_METHOD_VEC_DIV_SCALAR_OTHER
|
1633
|
+
GR_METHOD_VEC_DIVEXACT_SCALAR_OTHER
|
1634
|
+
GR_METHOD_VEC_POW_SCALAR_OTHER
|
1635
|
+
GR_METHOD_SCALAR_OTHER_ADD_VEC
|
1636
|
+
GR_METHOD_SCALAR_OTHER_SUB_VEC
|
1637
|
+
GR_METHOD_SCALAR_OTHER_MUL_VEC
|
1638
|
+
GR_METHOD_SCALAR_OTHER_DIV_VEC
|
1639
|
+
GR_METHOD_SCALAR_OTHER_DIVEXACT_VEC
|
1640
|
+
GR_METHOD_SCALAR_OTHER_POW_VEC
|
1641
|
+
GR_METHOD_VEC_ADD_SCALAR_SI
|
1642
|
+
GR_METHOD_VEC_ADD_SCALAR_UI
|
1643
|
+
GR_METHOD_VEC_ADD_SCALAR_FMPZ
|
1644
|
+
GR_METHOD_VEC_ADD_SCALAR_FMPQ
|
1645
|
+
GR_METHOD_VEC_SUB_SCALAR_SI
|
1646
|
+
GR_METHOD_VEC_SUB_SCALAR_UI
|
1647
|
+
GR_METHOD_VEC_SUB_SCALAR_FMPZ
|
1648
|
+
GR_METHOD_VEC_SUB_SCALAR_FMPQ
|
1649
|
+
GR_METHOD_VEC_MUL_SCALAR_SI
|
1650
|
+
GR_METHOD_VEC_MUL_SCALAR_UI
|
1651
|
+
GR_METHOD_VEC_MUL_SCALAR_FMPZ
|
1652
|
+
GR_METHOD_VEC_MUL_SCALAR_FMPQ
|
1653
|
+
GR_METHOD_VEC_DIV_SCALAR_SI
|
1654
|
+
GR_METHOD_VEC_DIV_SCALAR_UI
|
1655
|
+
GR_METHOD_VEC_DIV_SCALAR_FMPZ
|
1656
|
+
GR_METHOD_VEC_DIV_SCALAR_FMPQ
|
1657
|
+
GR_METHOD_VEC_DIVEXACT_SCALAR_SI
|
1658
|
+
GR_METHOD_VEC_DIVEXACT_SCALAR_UI
|
1659
|
+
GR_METHOD_VEC_DIVEXACT_SCALAR_FMPZ
|
1660
|
+
GR_METHOD_VEC_DIVEXACT_SCALAR_FMPQ
|
1661
|
+
GR_METHOD_VEC_POW_SCALAR_SI
|
1662
|
+
GR_METHOD_VEC_POW_SCALAR_UI
|
1663
|
+
GR_METHOD_VEC_POW_SCALAR_FMPZ
|
1664
|
+
GR_METHOD_VEC_POW_SCALAR_FMPQ
|
1665
|
+
GR_METHOD_VEC_MUL_SCALAR_2EXP_SI
|
1666
|
+
GR_METHOD_VEC_MUL_SCALAR_2EXP_FMPZ
|
1667
|
+
GR_METHOD_VEC_ADDMUL_SCALAR
|
1668
|
+
GR_METHOD_VEC_SUBMUL_SCALAR
|
1669
|
+
GR_METHOD_VEC_ADDMUL_SCALAR_SI
|
1670
|
+
GR_METHOD_VEC_SUBMUL_SCALAR_SI
|
1671
|
+
GR_METHOD_VEC_SUM
|
1672
|
+
GR_METHOD_VEC_PRODUCT
|
1673
|
+
GR_METHOD_VEC_DOT
|
1674
|
+
GR_METHOD_VEC_DOT_REV
|
1675
|
+
GR_METHOD_VEC_DOT_UI
|
1676
|
+
GR_METHOD_VEC_DOT_SI
|
1677
|
+
GR_METHOD_VEC_DOT_FMPZ
|
1678
|
+
GR_METHOD_VEC_SET_POWERS
|
1679
|
+
GR_METHOD_VEC_RECIPROCALS
|
1680
|
+
GR_METHOD_POLY_MULLOW
|
1681
|
+
GR_METHOD_POLY_DIV
|
1682
|
+
GR_METHOD_POLY_DIVREM
|
1683
|
+
GR_METHOD_POLY_DIVEXACT
|
1684
|
+
GR_METHOD_POLY_TAYLOR_SHIFT
|
1685
|
+
GR_METHOD_POLY_INV_SERIES
|
1686
|
+
GR_METHOD_POLY_INV_SERIES_BASECASE
|
1687
|
+
GR_METHOD_POLY_DIV_SERIES
|
1688
|
+
GR_METHOD_POLY_DIV_SERIES_BASECASE
|
1689
|
+
GR_METHOD_POLY_RSQRT_SERIES
|
1690
|
+
GR_METHOD_POLY_SQRT_SERIES
|
1691
|
+
GR_METHOD_POLY_EXP_SERIES
|
1692
|
+
GR_METHOD_POLY_FACTOR
|
1693
|
+
GR_METHOD_POLY_ROOTS
|
1694
|
+
GR_METHOD_POLY_ROOTS_OTHER
|
1695
|
+
GR_METHOD_MAT_MUL
|
1696
|
+
GR_METHOD_MAT_DET
|
1697
|
+
GR_METHOD_MAT_EXP
|
1698
|
+
GR_METHOD_MAT_LOG
|
1699
|
+
GR_METHOD_MAT_FIND_NONZERO_PIVOT
|
1700
|
+
GR_METHOD_MAT_DIAGONALIZATION
|
1701
|
+
GR_METHOD_TAB_SIZE
|
1702
|
+
|
1703
|
+
ctypedef struct gr_method_tab_input:
|
1704
|
+
pass
|
1705
|
+
|
1706
|
+
ctypedef enum gr_which_structure:
|
1707
|
+
GR_CTX_FMPZ
|
1708
|
+
GR_CTX_FMPQ
|
1709
|
+
GR_CTX_FMPZI
|
1710
|
+
GR_CTX_FMPZ_MOD
|
1711
|
+
GR_CTX_NMOD
|
1712
|
+
GR_CTX_NMOD8
|
1713
|
+
GR_CTX_NMOD32
|
1714
|
+
GR_CTX_FQ
|
1715
|
+
GR_CTX_FQ_NMOD
|
1716
|
+
GR_CTX_FQ_ZECH
|
1717
|
+
GR_CTX_NF
|
1718
|
+
GR_CTX_REAL_ALGEBRAIC_QQBAR
|
1719
|
+
GR_CTX_COMPLEX_ALGEBRAIC_QQBAR
|
1720
|
+
GR_CTX_REAL_ALGEBRAIC_CA
|
1721
|
+
GR_CTX_COMPLEX_ALGEBRAIC_CA
|
1722
|
+
GR_CTX_RR_CA
|
1723
|
+
GR_CTX_CC_CA
|
1724
|
+
GR_CTX_COMPLEX_EXTENDED_CA
|
1725
|
+
GR_CTX_RR_ARB
|
1726
|
+
GR_CTX_CC_ACB
|
1727
|
+
GR_CTX_REAL_FLOAT_ARF
|
1728
|
+
GR_CTX_COMPLEX_FLOAT_ACF
|
1729
|
+
GR_CTX_FMPZ_POLY
|
1730
|
+
GR_CTX_FMPQ_POLY
|
1731
|
+
GR_CTX_GR_POLY
|
1732
|
+
GR_CTX_FMPZ_MPOLY
|
1733
|
+
GR_CTX_GR_MPOLY
|
1734
|
+
GR_CTX_FMPZ_MPOLY_Q
|
1735
|
+
GR_CTX_GR_SERIES
|
1736
|
+
GR_CTX_GR_SERIES_MOD
|
1737
|
+
GR_CTX_GR_MAT
|
1738
|
+
GR_CTX_GR_VEC
|
1739
|
+
GR_CTX_PSL2Z
|
1740
|
+
GR_CTX_DIRICHLET_GROUP
|
1741
|
+
GR_CTX_PERM
|
1742
|
+
GR_CTX_FEXPR
|
1743
|
+
GR_CTX_UNKNOWN_DOMAIN
|
1744
|
+
GR_CTX_WHICH_STRUCTURE_TAB_SIZE
|
1745
|
+
|
1746
|
+
ctypedef struct gr_ctx_struct:
|
1747
|
+
pass
|
1748
|
+
ctypedef gr_ctx_struct gr_ctx_t[1]
|
1749
|
+
|
1750
|
+
ctypedef void ((*gr_method_init_clear_op)(gr_ptr, gr_ctx_ptr))
|
1751
|
+
ctypedef void ((*gr_method_swap_op)(gr_ptr, gr_ptr, gr_ctx_ptr))
|
1752
|
+
ctypedef int ((*gr_method_ctx)(gr_ctx_ptr))
|
1753
|
+
# NOTE: we removed an extra parenthesis so that Cython is less confused
|
1754
|
+
# see https://github.com/cython/cython/issues/5779
|
1755
|
+
ctypedef truth_t (*gr_method_ctx_predicate)(gr_ctx_ptr)
|
1756
|
+
ctypedef int ((*gr_method_ctx_set_si)(gr_ctx_ptr, slong))
|
1757
|
+
ctypedef int ((*gr_method_ctx_get_si)(slong *, gr_ctx_ptr))
|
1758
|
+
ctypedef int ((*gr_method_ctx_stream)(gr_stream_t, gr_ctx_ptr))
|
1759
|
+
ctypedef int ((*gr_method_ctx_set_str)(gr_ctx_ptr, const char *))
|
1760
|
+
ctypedef int ((*gr_method_ctx_set_strs)(gr_ctx_ptr, const char **))
|
1761
|
+
ctypedef int ((*gr_method_stream_in)(gr_stream_t, gr_srcptr, gr_ctx_ptr))
|
1762
|
+
ctypedef int ((*gr_method_stream_in_si)(gr_stream_t, gr_srcptr, slong, gr_ctx_ptr))
|
1763
|
+
ctypedef int ((*gr_method_randtest)(gr_ptr, flint_rand_t state, gr_ctx_ptr))
|
1764
|
+
ctypedef int ((*gr_method_constant_op)(gr_ptr, gr_ctx_ptr))
|
1765
|
+
ctypedef int ((*gr_method_constant_op_get_si)(slong *, gr_ctx_ptr))
|
1766
|
+
ctypedef int ((*gr_method_constant_op_get_fmpz)(fmpz_t, gr_ctx_ptr))
|
1767
|
+
ctypedef void ((*gr_method_void_unary_op)(gr_ptr, gr_srcptr, gr_ctx_ptr))
|
1768
|
+
ctypedef int ((*gr_method_unary_op)(gr_ptr, gr_srcptr, gr_ctx_ptr))
|
1769
|
+
ctypedef int ((*gr_method_unary_op_si)(gr_ptr, slong, gr_ctx_ptr))
|
1770
|
+
ctypedef int ((*gr_method_unary_op_ui)(gr_ptr, ulong, gr_ctx_ptr))
|
1771
|
+
ctypedef int ((*gr_method_unary_op_fmpz)(gr_ptr, const fmpz_t, gr_ctx_ptr))
|
1772
|
+
ctypedef int ((*gr_method_unary_op_fmpq)(gr_ptr, const fmpq_t, gr_ctx_ptr))
|
1773
|
+
ctypedef int ((*gr_method_unary_op_d)(gr_ptr, double, gr_ctx_ptr))
|
1774
|
+
ctypedef int ((*gr_method_unary_op_other)(gr_ptr, gr_srcptr, gr_ctx_ptr, gr_ctx_ptr))
|
1775
|
+
ctypedef int ((*gr_method_unary_op_str)(gr_ptr, const char *, gr_ctx_ptr))
|
1776
|
+
ctypedef int ((*gr_method_unary_op_get_ui)(ulong *, gr_srcptr, gr_ctx_ptr))
|
1777
|
+
ctypedef int ((*gr_method_unary_op_get_si)(slong *, gr_srcptr, gr_ctx_ptr))
|
1778
|
+
ctypedef int ((*gr_method_unary_op_get_fmpz)(fmpz_t, gr_srcptr, gr_ctx_ptr))
|
1779
|
+
ctypedef int ((*gr_method_unary_op_get_fmpq)(fmpq_t, gr_srcptr, gr_ctx_ptr))
|
1780
|
+
ctypedef int ((*gr_method_unary_op_get_d)(double *, gr_srcptr, gr_ctx_ptr))
|
1781
|
+
ctypedef int ((*gr_method_unary_op_get_fmpz_fmpz)(fmpz_t, fmpz_t, gr_srcptr, gr_ctx_ptr))
|
1782
|
+
ctypedef int ((*gr_method_unary_op_with_flag)(gr_ptr, gr_srcptr, int, gr_ctx_ptr))
|
1783
|
+
ctypedef int ((*gr_method_binary_unary_op)(gr_ptr, gr_ptr, gr_srcptr, gr_ctx_ptr))
|
1784
|
+
ctypedef int ((*gr_method_binary_unary_op_with_flag)(gr_ptr, gr_ptr, gr_srcptr, int, gr_ctx_ptr))
|
1785
|
+
ctypedef int ((*gr_method_quaternary_unary_op)(gr_ptr, gr_ptr, gr_ptr, gr_ptr, gr_srcptr, gr_ctx_ptr))
|
1786
|
+
ctypedef int ((*gr_method_binary_op)(gr_ptr, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1787
|
+
ctypedef int ((*gr_method_binary_op_si)(gr_ptr, gr_srcptr, slong, gr_ctx_ptr))
|
1788
|
+
ctypedef int ((*gr_method_binary_op_ui)(gr_ptr, gr_srcptr, ulong, gr_ctx_ptr))
|
1789
|
+
ctypedef int ((*gr_method_binary_op_fmpz)(gr_ptr, gr_srcptr, const fmpz_t, gr_ctx_ptr))
|
1790
|
+
ctypedef int ((*gr_method_binary_op_fmpz_fmpz)(gr_ptr, const fmpz_t, const fmpz_t, gr_ctx_ptr))
|
1791
|
+
ctypedef int ((*gr_method_binary_op_fmpz_si)(gr_ptr, const fmpz_t, slong, gr_ctx_ptr))
|
1792
|
+
ctypedef int ((*gr_method_binary_op_fmpq)(gr_ptr, gr_srcptr, const fmpq_t, gr_ctx_ptr))
|
1793
|
+
ctypedef int ((*gr_method_binary_op_other)(gr_ptr, gr_srcptr, gr_srcptr, gr_ctx_ptr, gr_ctx_ptr))
|
1794
|
+
ctypedef int ((*gr_method_other_binary_op)(gr_ptr, gr_srcptr, gr_ctx_ptr, gr_srcptr, gr_ctx_ptr))
|
1795
|
+
ctypedef int ((*gr_method_si_binary_op)(gr_ptr, slong, gr_srcptr, gr_ctx_ptr))
|
1796
|
+
ctypedef int ((*gr_method_ui_binary_op)(gr_ptr, ulong, gr_srcptr, gr_ctx_ptr))
|
1797
|
+
ctypedef int ((*gr_method_fmpz_binary_op)(gr_ptr, const fmpz_t, gr_srcptr, gr_ctx_ptr))
|
1798
|
+
ctypedef int ((*gr_method_fmpq_binary_op)(gr_ptr, const fmpq_t, gr_srcptr, gr_ctx_ptr))
|
1799
|
+
ctypedef int ((*gr_method_binary_op_ui_ui)(gr_ptr, ulong, ulong, gr_ctx_ptr))
|
1800
|
+
ctypedef int ((*gr_method_binary_op_ui_si)(gr_ptr, ulong, slong, gr_ctx_ptr))
|
1801
|
+
ctypedef int ((*gr_method_binary_op_get_int)(int *, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1802
|
+
ctypedef int ((*gr_method_binary_op_other_get_int)(int *, gr_srcptr, gr_srcptr, gr_ctx_ptr, gr_ctx_ptr))
|
1803
|
+
ctypedef int ((*gr_method_binary_binary_op)(gr_ptr, gr_ptr, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1804
|
+
ctypedef int ((*gr_method_binary_op_with_flag)(gr_ptr, gr_srcptr, gr_srcptr, int, gr_ctx_ptr))
|
1805
|
+
ctypedef int ((*gr_method_binary_binary_op_ui_ui)(gr_ptr, gr_ptr, ulong, ulong, gr_ctx_ptr))
|
1806
|
+
ctypedef int ((*gr_method_ternary_op)(gr_ptr, gr_srcptr, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1807
|
+
ctypedef int ((*gr_method_ternary_op_with_flag)(gr_ptr, gr_srcptr, gr_srcptr, gr_srcptr, int, gr_ctx_ptr))
|
1808
|
+
ctypedef int ((*gr_method_ternary_unary_op)(gr_ptr, gr_ptr, gr_ptr, gr_srcptr, gr_ctx_ptr))
|
1809
|
+
ctypedef int ((*gr_method_quaternary_op)(gr_ptr, gr_srcptr, gr_srcptr, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1810
|
+
ctypedef int ((*gr_method_quaternary_op_with_flag)(gr_ptr, gr_srcptr, gr_srcptr, gr_srcptr, gr_srcptr, int, gr_ctx_ptr))
|
1811
|
+
ctypedef int ((*gr_method_quaternary_binary_op)(gr_ptr, gr_ptr, gr_ptr, gr_ptr, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1812
|
+
ctypedef int ((*gr_method_quaternary_ternary_op)(gr_ptr, gr_ptr, gr_ptr, gr_ptr, gr_srcptr, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1813
|
+
ctypedef int ((*gr_method_si_si_quaternary_op)(gr_ptr, slong, slong, gr_srcptr, gr_srcptr, gr_ctx_ptr))
|
1814
|
+
# NOTE: we removed an extra parenthesis so that Cython is less confused
|
1815
|
+
# see https://github.com/cython/cython/issues/5779
|
1816
|
+
ctypedef truth_t (*gr_method_unary_predicate)(gr_srcptr, gr_ctx_ptr)
|
1817
|
+
ctypedef truth_t (*gr_method_binary_predicate)(gr_srcptr, gr_srcptr, gr_ctx_ptr)
|
1818
|
+
ctypedef void ((*gr_method_vec_init_clear_op)(gr_ptr, slong, gr_ctx_ptr))
|
1819
|
+
ctypedef void ((*gr_method_vec_swap_op)(gr_ptr, gr_ptr, slong, gr_ctx_ptr))
|
1820
|
+
ctypedef int ((*gr_method_vec_constant_op)(gr_ptr, slong, gr_ctx_ptr))
|
1821
|
+
ctypedef int ((*gr_method_vec_op)(gr_ptr, gr_srcptr, slong, gr_ctx_ptr))
|
1822
|
+
ctypedef int ((*gr_method_vec_vec_op)(gr_ptr, gr_srcptr, gr_srcptr, slong, gr_ctx_ptr))
|
1823
|
+
ctypedef int ((*gr_method_vec_scalar_op)(gr_ptr, gr_srcptr, slong, gr_srcptr, gr_ctx_ptr))
|
1824
|
+
ctypedef int ((*gr_method_scalar_vec_op)(gr_ptr, gr_srcptr, gr_srcptr, slong, gr_ctx_ptr))
|
1825
|
+
ctypedef int ((*gr_method_vec_op_other)(gr_ptr, gr_srcptr, gr_srcptr, gr_ctx_ptr, slong, gr_ctx_ptr))
|
1826
|
+
ctypedef int ((*gr_method_other_op_vec)(gr_ptr, gr_srcptr, gr_ctx_ptr, gr_srcptr, slong, gr_ctx_ptr))
|
1827
|
+
ctypedef int ((*gr_method_vec_op_scalar_other)(gr_ptr, gr_srcptr, slong, gr_srcptr, gr_ctx_ptr, gr_ctx_ptr))
|
1828
|
+
ctypedef int ((*gr_method_scalar_other_op_vec)(gr_ptr, gr_srcptr, gr_ctx_ptr, gr_srcptr, slong, gr_ctx_ptr))
|
1829
|
+
ctypedef int ((*gr_method_vec_scalar_op_si)(gr_ptr, gr_srcptr, slong, slong, gr_ctx_ptr))
|
1830
|
+
ctypedef int ((*gr_method_vec_scalar_op_ui)(gr_ptr, gr_srcptr, slong, ulong, gr_ctx_ptr))
|
1831
|
+
ctypedef int ((*gr_method_vec_scalar_op_fmpz)(gr_ptr, gr_srcptr, slong, const fmpz_t, gr_ctx_ptr))
|
1832
|
+
ctypedef int ((*gr_method_vec_scalar_op_fmpq)(gr_ptr, gr_srcptr, slong, const fmpq_t, gr_ctx_ptr))
|
1833
|
+
# NOTE: we removed an extra parenthesis so that Cython is less confused
|
1834
|
+
# see https://github.com/cython/cython/issues/5779
|
1835
|
+
ctypedef truth_t (*gr_method_vec_predicate)(gr_srcptr, slong, gr_ctx_ptr)
|
1836
|
+
ctypedef truth_t (*gr_method_vec_vec_predicate)(gr_srcptr, gr_srcptr, slong, gr_ctx_ptr)
|
1837
|
+
ctypedef int ((*gr_method_factor_op)(gr_ptr, gr_vec_t, gr_vec_t, gr_srcptr, int, gr_ctx_ptr))
|
1838
|
+
ctypedef int ((*gr_method_poly_unary_trunc_op)(gr_ptr, gr_srcptr, slong, slong, gr_ctx_ptr))
|
1839
|
+
ctypedef int ((*gr_method_poly_binary_op)(gr_ptr, gr_srcptr, slong, gr_srcptr, slong, gr_ctx_ptr))
|
1840
|
+
ctypedef int ((*gr_method_poly_binary_binary_op)(gr_ptr, gr_ptr, gr_srcptr, slong, gr_srcptr, slong, gr_ctx_ptr))
|
1841
|
+
ctypedef int ((*gr_method_poly_binary_trunc_op)(gr_ptr, gr_srcptr, slong, gr_srcptr, slong, slong, gr_ctx_ptr))
|
1842
|
+
ctypedef int ((*gr_method_vec_ctx_op)(gr_vec_t, gr_ctx_ptr))
|
1843
|
+
|
1844
|
+
ctypedef struct polynomial_ctx_t:
|
1845
|
+
pass
|
1846
|
+
|
1847
|
+
ctypedef struct vector_ctx_t:
|
1848
|
+
pass
|
1849
|
+
|
1850
|
+
ctypedef struct matrix_ctx_t:
|
1851
|
+
pass
|
1852
|
+
|
1853
|
+
|
1854
|
+
# flint/gr_poly.h
|
1855
|
+
ctypedef struct gr_poly_struct:
|
1856
|
+
pass
|
1857
|
+
ctypedef gr_poly_struct gr_poly_t[1]
|
1858
|
+
|
1859
|
+
|
1860
|
+
# flint/gr_mat.h
|
1861
|
+
ctypedef struct gr_mat_struct:
|
1862
|
+
pass
|
1863
|
+
ctypedef gr_mat_struct gr_mat_t[1]
|
1864
|
+
|
1865
|
+
|
1866
|
+
# flint/gr_mpoly.h
|
1867
|
+
ctypedef struct gr_mpoly_struct:
|
1868
|
+
pass
|
1869
|
+
ctypedef gr_mpoly_struct gr_mpoly_t[1]
|
1870
|
+
|
1871
|
+
|
1872
|
+
# flint/double_interval.h
|
1873
|
+
ctypedef struct di_t:
|
1874
|
+
double a
|
1875
|
+
double b
|
1876
|
+
|
1877
|
+
|
1878
|
+
# flint/fq_default.h
|
1879
|
+
ctypedef union fq_default_struct:
|
1880
|
+
fq_t fq
|
1881
|
+
fq_nmod_t fq_nmod
|
1882
|
+
fq_zech_t fq_zech
|
1883
|
+
ulong nmod
|
1884
|
+
fmpz_t fmpz_mod
|
1885
|
+
ctypedef fq_default_struct fq_default_t[1]
|
1886
|
+
|
1887
|
+
ctypedef struct fq_default_ctx_struct:
|
1888
|
+
pass
|
1889
|
+
ctypedef fq_default_ctx_struct fq_default_ctx_t[1]
|
1890
|
+
|
1891
|
+
|
1892
|
+
# flint/fq_default_poly.h
|
1893
|
+
ctypedef union fq_default_poly_struct:
|
1894
|
+
fq_poly_t fq
|
1895
|
+
fq_nmod_poly_t fq_nmod
|
1896
|
+
fq_zech_poly_t fq_zech
|
1897
|
+
nmod_poly_t nmod
|
1898
|
+
fmpz_mod_poly_t fmpz_mod
|
1899
|
+
ctypedef fq_default_poly_struct fq_default_poly_t[1]
|
1900
|
+
|
1901
|
+
|
1902
|
+
# flint/fq_poly_factor.h
|
1903
|
+
ctypedef union fq_default_poly_factor_struct:
|
1904
|
+
fq_poly_factor_t fq
|
1905
|
+
fq_nmod_poly_factor_t fq_nmod
|
1906
|
+
fq_zech_poly_factor_t fq_zech
|
1907
|
+
nmod_poly_factor_t nmod
|
1908
|
+
fmpz_mod_poly_factor_t fmpz_mod
|
1909
|
+
ctypedef fq_default_poly_factor_struct fq_default_poly_factor_t[1]
|
1910
|
+
|
1911
|
+
|
1912
|
+
# flint/fq_default_mat.h
|
1913
|
+
ctypedef union fq_default_mat_struct:
|
1914
|
+
pass
|
1915
|
+
ctypedef fq_default_mat_struct fq_default_mat_t[1]
|
1916
|
+
|
1917
|
+
|
1918
|
+
# flint/qfb.h
|
1919
|
+
ctypedef struct qfb:
|
1920
|
+
pass
|
1921
|
+
ctypedef qfb qfb_t[1]
|
1922
|
+
|
1923
|
+
ctypedef struct qfb_hash_t:
|
1924
|
+
pass
|
1925
|
+
|
1926
|
+
|
1927
|
+
# flint/qqbar.h
|
1928
|
+
ctypedef struct qqbar_struct:
|
1929
|
+
pass
|
1930
|
+
ctypedef qqbar_struct qqbar_t[1]
|
1931
|
+
ctypedef qqbar_struct * qqbar_ptr
|
1932
|
+
ctypedef const qqbar_struct * qqbar_srcptr
|
1933
|
+
|
1934
|
+
|
1935
|
+
# flint/profiler.h
|
1936
|
+
ctypedef struct struct_meminfo:
|
1937
|
+
pass
|
1938
|
+
ctypedef struct_meminfo meminfo_t[1]
|
1939
|
+
|
1940
|
+
ctypedef struct struct_timeit:
|
1941
|
+
pass
|
1942
|
+
ctypedef struct_timeit timeit_t[1]
|
1943
|
+
|
1944
|
+
ctypedef void (*profile_target_t)(void* arg, ulong count)
|
1945
|
+
|
1946
|
+
|
1947
|
+
# flint/fexpr.h
|
1948
|
+
ctypedef struct fexpr_struct:
|
1949
|
+
pass
|
1950
|
+
ctypedef fexpr_struct fexpr_t[1]
|
1951
|
+
ctypedef fexpr_struct * fexpr_ptr
|
1952
|
+
ctypedef const fexpr_struct * fexpr_srcptr
|
1953
|
+
|
1954
|
+
ctypedef struct fexpr_vec_struct:
|
1955
|
+
pass
|
1956
|
+
ctypedef fexpr_vec_struct fexpr_vec_t[1]
|
1957
|
+
|
1958
|
+
|
1959
|
+
# flint/hypgeom.h
|
1960
|
+
ctypedef struct hypgeom_struct:
|
1961
|
+
pass
|
1962
|
+
ctypedef hypgeom_struct hypgeom_t[1]
|
1963
|
+
|
1964
|
+
|
1965
|
+
# flint/dlog.h
|
1966
|
+
ctypedef struct dlog_precomp_struct:
|
1967
|
+
pass
|
1968
|
+
ctypedef dlog_precomp_struct * dlog_precomp_ptr
|
1969
|
+
ctypedef dlog_precomp_struct dlog_precomp_t[1]
|
1970
|
+
|
1971
|
+
ctypedef struct dlog_1modpe_struct:
|
1972
|
+
pass
|
1973
|
+
ctypedef dlog_1modpe_struct dlog_1modpe_t[1]
|
1974
|
+
|
1975
|
+
ctypedef struct dlog_modpe_struct:
|
1976
|
+
pass
|
1977
|
+
ctypedef dlog_modpe_struct dlog_modpe_t[1]
|
1978
|
+
|
1979
|
+
ctypedef struct dlog_table_struct:
|
1980
|
+
pass
|
1981
|
+
ctypedef dlog_table_struct dlog_table_t[1]
|
1982
|
+
|
1983
|
+
ctypedef struct apow_t:
|
1984
|
+
pass
|
1985
|
+
|
1986
|
+
ctypedef struct dlog_bsgs_struct:
|
1987
|
+
pass
|
1988
|
+
ctypedef dlog_bsgs_struct dlog_bsgs_t[1]
|
1989
|
+
|
1990
|
+
ctypedef struct dlog_rho_struct:
|
1991
|
+
pass
|
1992
|
+
ctypedef dlog_rho_struct dlog_rho_t[1]
|
1993
|
+
|
1994
|
+
ctypedef struct dlog_crt_struct:
|
1995
|
+
pass
|
1996
|
+
ctypedef dlog_crt_struct dlog_crt_t[1]
|
1997
|
+
|
1998
|
+
ctypedef struct dlog_power_struct:
|
1999
|
+
pass
|
2000
|
+
ctypedef dlog_power_struct dlog_power_t[1]
|
2001
|
+
|
2002
|
+
ctypedef ulong dlog_order23_t[1]
|
2003
|
+
|
2004
|
+
|
2005
|
+
# flint/bool_mat.h
|
2006
|
+
ctypedef struct bool_mat_struct:
|
2007
|
+
pass
|
2008
|
+
ctypedef bool_mat_struct bool_mat_t[1]
|
2009
|
+
|
2010
|
+
|
2011
|
+
# flint/dirichlet.h
|
2012
|
+
ctypedef struct dirichlet_prime_group_struct:
|
2013
|
+
pass
|
2014
|
+
|
2015
|
+
ctypedef struct dirichlet_group_struct:
|
2016
|
+
pass
|
2017
|
+
ctypedef dirichlet_group_struct dirichlet_group_t[1]
|
2018
|
+
|
2019
|
+
ctypedef struct dirichlet_char_struct:
|
2020
|
+
pass
|
2021
|
+
ctypedef dirichlet_char_struct dirichlet_char_t[1]
|
2022
|
+
|
2023
|
+
|
2024
|
+
# flint/arb_fpwrap.h
|
2025
|
+
ctypedef struct complex_double:
|
2026
|
+
double real
|
2027
|
+
double imag
|
2028
|
+
|
2029
|
+
|
2030
|
+
# flint/aprcl.h
|
2031
|
+
ctypedef struct _aprcl_config:
|
2032
|
+
pass
|
2033
|
+
ctypedef _aprcl_config aprcl_config[1];
|
2034
|
+
|
2035
|
+
ctypedef struct _unity_zpq:
|
2036
|
+
pass
|
2037
|
+
ctypedef _unity_zpq unity_zpq[1]
|
2038
|
+
|
2039
|
+
ctypedef struct _unity_zp:
|
2040
|
+
pass
|
2041
|
+
ctypedef _unity_zp unity_zp[1]
|
2042
|
+
|
2043
|
+
ctypedef enum primality_test_status:
|
2044
|
+
UNKNOWN
|
2045
|
+
PRIME
|
2046
|
+
COMPOSITE
|
2047
|
+
PROBABPRIME
|
2048
|
+
|
2049
|
+
|
2050
|
+
# flint/acf.h
|
2051
|
+
ctypedef struct acf_struct:
|
2052
|
+
pass
|
2053
|
+
|
2054
|
+
ctypedef acf_struct acf_t[1]
|
2055
|
+
ctypedef acf_struct * acf_ptr
|
2056
|
+
ctypedef const acf_struct * acf_srcptr
|
2057
|
+
|
2058
|
+
|
2059
|
+
# flint/fmpz_lll.h
|
2060
|
+
ctypedef enum rep_type:
|
2061
|
+
GRAM
|
2062
|
+
Z_BASIS
|
2063
|
+
|
2064
|
+
ctypedef enum gram_type:
|
2065
|
+
APPROX
|
2066
|
+
EXACT
|
2067
|
+
|
2068
|
+
ctypedef struct fmpz_lll_struct:
|
2069
|
+
pass
|
2070
|
+
ctypedef fmpz_lll_struct fmpz_lll_t[1]
|
2071
|
+
|
2072
|
+
ctypedef union fmpz_gram_union:
|
2073
|
+
d_mat_t appSP
|
2074
|
+
mpf_mat_t appSP2
|
2075
|
+
fmpz_mat_t exactSP
|
2076
|
+
ctypedef fmpz_gram_union fmpz_gram_t[1]
|