passagemath-flint 10.5.43__tar.gz → 10.6.1rc1__tar.gz
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.5.43 → passagemath_flint-10.6.1rc1}/PKG-INFO +5 -6
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/README.rst +1 -1
- passagemath_flint-10.6.1rc1/VERSION.txt +1 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/passagemath_flint.egg-info/PKG-INFO +5 -6
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/passagemath_flint.egg-info/requires.txt +2 -2
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/pyproject.toml +9 -10
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/data_structures/bounded_integer_sequences.pyx +22 -20
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/graphs/chrompoly.pyx +4 -3
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/flint.pxd +2 -2
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/flint_wrap.h +4 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_poly_linkage.pxi +5 -4
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/types.pxd +2 -2
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_cyclo_dense.pyx +3 -3
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_dense.pyx +50 -33
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_sparse.pyx +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_rational_dense.pyx +64 -28
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_rational_sparse.pyx +3 -3
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/pollack_stevens/dist.pyx +2 -2
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/algebra.py +2 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/algebra_elements.pyx +5 -5
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/ar_quiver.py +21 -21
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/homspace.py +2 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/morphism.py +31 -29
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/path_semigroup.py +14 -11
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/paths.pyx +2 -2
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/representation.py +22 -24
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/complex_arb.pyx +37 -36
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/convert/meson.build +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/fraction_field_FpT.pyx +29 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/S_unit_solver.py +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/galois_group.py +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/morphism.py +3 -4
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field.py +97 -75
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_element.pyx +72 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_element_quadratic.pyx +35 -17
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_morphisms.pyx +2 -2
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_rel.py +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/order.py +44 -47
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/order_ideal.py +2 -5
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/hilbert.pyx +3 -6
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_integer_dense_flint.pyx +3 -5
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_rational_flint.pxd +3 -3
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_rational_flint.pyx +24 -11
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_template.pxi +7 -7
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_zmod_flint.pyx +3 -4
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/real_roots.pyx +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/weil/weil_polynomials.pyx +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/qqbar.py +1 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/real_arb.pyx +21 -10
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/real_mpfi.pyx +14 -11
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/schemes/elliptic_curves/descent_two_isogeny.pyx +11 -0
- passagemath_flint-10.5.43/VERSION.txt +0 -1
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/MANIFEST.in +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/passagemath_flint.egg-info/SOURCES.txt +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/passagemath_flint.egg-info/dependency_links.txt +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/passagemath_flint.egg-info/top_level.txt +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/combinat/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/combinat/posets/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/combinat/posets/hasse_cython_flint.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/data_structures/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/data_structures/bounded_integer_sequences.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/graphs/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/graphs/matchpoly.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/__init__.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb_calc.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb_elliptic.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb_hypgeom.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb_modular.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/acb_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/arb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/arb_fmpz_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/arb_hypgeom.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/arb_wrap.h +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/arf.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/arith.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/bernoulli.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/mag.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/meson.build +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/arb/types.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/__init__.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_calc.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_dft.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_dirichlet.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_elliptic.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_hypgeom.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_mat_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_modular.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_poly_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acb_theta.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/acf.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/aprcl.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_calc.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_fmpz_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_fpwrap.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_hypgeom.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_mat_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arb_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arf.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arith.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arith.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/arith_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/bernoulli.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/bool_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ca.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ca_ext.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ca_field.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ca_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ca_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ca_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/calcium.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/d_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/d_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/dirichlet.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/dlog.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/double_extras.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/double_interval.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fexpr.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fexpr_builtin.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fft.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/flint_ntl_wrap.h +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/flint_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_mat_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_mpoly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_poly_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_poly_sage.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_poly_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpq_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_extras.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_factor_sage.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_factor_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_lll.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mat_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod_mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod_mpoly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mod_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mpoly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_mpoly_q.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly_q.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly_sage.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_poly_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpz_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fmpzi.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_default.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_default_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_default_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_default_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_embed.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_embed.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_mpoly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_nmod_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_zech.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_zech_embed.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_zech_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_zech_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_zech_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/fq_zech_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr_generic.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr_mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr_special.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/gr_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/hypgeom.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/long_extras.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mag.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mag_macros.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/meson.build +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mpf_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mpf_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mpfr_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mpfr_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mpn_extras.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nf.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nf_elem.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_mpoly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_mpoly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_poly_factor.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_poly_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_vec.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ntl_interface.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/padic.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/padic_mat.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/padic_poly.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/partitions.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/perm.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/profiler.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/qadic.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/qfb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/qqbar.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/qsieve.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/qsieve.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/qsieve_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/thread_pool.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ulong_extras.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ulong_extras.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/ulong_extras_sage.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/mpfi/__init__.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/mpfi/types.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/ntl/decl.pxi +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/ntl/misc.pxi +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/ntl/ntl_GF2X_linkage.pxi +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/ntl/ntlwrap.h +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/ntl/ntlwrap_impl.h +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/change_ring.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_complex_ball_dense.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_complex_ball_dense.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_cyclo_dense.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_dense.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_dense_hnf.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_dense_saturation.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_sparse.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_rational_dense.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_rational_sparse.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/misc_flint.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/modform/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/modform/eis_series_cython.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/modsym/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/modsym/apply.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/modsym/apply.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/modsym/heilbronn.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/pollack_stevens/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/modular/pollack_stevens/dist.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/algebra_elements.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/algebra_elements.pxi +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/all.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/meson.build +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/quivers/paths.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/cif.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/complex_arb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/complex_interval.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/complex_interval.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/complex_interval_field.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/convert/all.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/convert/mpfi.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/convert/mpfi.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/factorint_flint.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/fraction_field_FpT.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/imaginary_unit.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/monomials.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/all.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/bdd_height.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/class_group.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/homset.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/maps.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/meson.build +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_element.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_element_quadratic.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/number_field_ideal_rel.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/selmer_group.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/small_primes_of_degree_one.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/splitting_field.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/structure.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/number_field/unit_group.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/padics/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/complex_roots.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/evaluation_flint.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/evaluation_flint.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_complex_arb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_complex_arb.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_integer_dense_flint.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_number_field.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_template_header.pxi +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/polynomial_zmod_flint.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/real_roots.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/refine_root.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/weil/all.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/weil/meson.build +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/weil/power_sums.c +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/polynomial/weil/power_sums.h +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/real_arb.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/real_interval_absolute.pyx +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/rings/real_mpfi.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/schemes/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/schemes/elliptic_curves/all__sagemath_flint.py +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/schemes/elliptic_curves/descent_two_isogeny_pari.pxd +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/setup.cfg +0 -0
- {passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: passagemath-flint
|
3
|
-
Version: 10.
|
3
|
+
Version: 10.6.1rc1
|
4
4
|
Summary: passagemath: Fast computations with MPFI and FLINT
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
@@ -19,17 +19,16 @@ Classifier: Intended Audience :: Science/Research
|
|
19
19
|
Classifier: Operating System :: POSIX
|
20
20
|
Classifier: Operating System :: MacOS :: MacOS X
|
21
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
24
23
|
Classifier: Programming Language :: Python :: 3.11
|
25
24
|
Classifier: Programming Language :: Python :: 3.12
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
27
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
28
27
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
29
|
-
Requires-Python: <3.14,>=3.
|
28
|
+
Requires-Python: <3.14,>=3.10
|
30
29
|
Description-Content-Type: text/x-rst
|
31
|
-
Requires-Dist: passagemath-categories
|
32
|
-
Requires-Dist: passagemath-ntl
|
30
|
+
Requires-Dist: passagemath-categories==10.6.1rc1
|
31
|
+
Requires-Dist: passagemath-ntl==10.6.1rc1
|
33
32
|
Requires-Dist: numpy>=1.19
|
34
33
|
Requires-Dist: numpy>=1.22.4
|
35
34
|
Provides-Extra: test
|
@@ -77,7 +76,7 @@ passagemath attempts to support all major Linux distributions and recent version
|
|
77
76
|
macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
|
78
77
|
virtualization.
|
79
78
|
|
80
|
-
Complete sets of binary wheels are provided on PyPI for Python versions 3.
|
79
|
+
Complete sets of binary wheels are provided on PyPI for Python versions 3.10.x-3.13.x.
|
81
80
|
Python 3.13.x is also supported, but some third-party packages are still missing wheels,
|
82
81
|
so compilation from source is triggered for those.
|
83
82
|
|
@@ -39,7 +39,7 @@ passagemath attempts to support all major Linux distributions and recent version
|
|
39
39
|
macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
|
40
40
|
virtualization.
|
41
41
|
|
42
|
-
Complete sets of binary wheels are provided on PyPI for Python versions 3.
|
42
|
+
Complete sets of binary wheels are provided on PyPI for Python versions 3.10.x-3.13.x.
|
43
43
|
Python 3.13.x is also supported, but some third-party packages are still missing wheels,
|
44
44
|
so compilation from source is triggered for those.
|
45
45
|
|
@@ -0,0 +1 @@
|
|
1
|
+
10.6.1.rc1
|
{passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/passagemath_flint.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: passagemath-flint
|
3
|
-
Version: 10.
|
3
|
+
Version: 10.6.1rc1
|
4
4
|
Summary: passagemath: Fast computations with MPFI and FLINT
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
@@ -19,17 +19,16 @@ Classifier: Intended Audience :: Science/Research
|
|
19
19
|
Classifier: Operating System :: POSIX
|
20
20
|
Classifier: Operating System :: MacOS :: MacOS X
|
21
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
24
23
|
Classifier: Programming Language :: Python :: 3.11
|
25
24
|
Classifier: Programming Language :: Python :: 3.12
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
27
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
28
27
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
29
|
-
Requires-Python: <3.14,>=3.
|
28
|
+
Requires-Python: <3.14,>=3.10
|
30
29
|
Description-Content-Type: text/x-rst
|
31
|
-
Requires-Dist: passagemath-categories
|
32
|
-
Requires-Dist: passagemath-ntl
|
30
|
+
Requires-Dist: passagemath-categories==10.6.1rc1
|
31
|
+
Requires-Dist: passagemath-ntl==10.6.1rc1
|
33
32
|
Requires-Dist: numpy>=1.19
|
34
33
|
Requires-Dist: numpy>=1.22.4
|
35
34
|
Provides-Extra: test
|
@@ -77,7 +76,7 @@ passagemath attempts to support all major Linux distributions and recent version
|
|
77
76
|
macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
|
78
77
|
virtualization.
|
79
78
|
|
80
|
-
Complete sets of binary wheels are provided on PyPI for Python versions 3.
|
79
|
+
Complete sets of binary wheels are provided on PyPI for Python versions 3.10.x-3.13.x.
|
81
80
|
Python 3.13.x is also supported, but some third-party packages are still missing wheels,
|
82
81
|
so compilation from source is triggered for those.
|
83
82
|
|
@@ -4,13 +4,13 @@
|
|
4
4
|
# sage_conf is needed for library name of the flint library.
|
5
5
|
requires = [
|
6
6
|
'setuptools >= 77.0.0',
|
7
|
-
'passagemath-setup
|
8
|
-
'passagemath-conf
|
7
|
+
'passagemath-setup == 10.6.1rc1',
|
8
|
+
'passagemath-conf == 10.6.1rc1',
|
9
9
|
'numpy >=1.19', 'numpy >=1.22.4',
|
10
|
-
'passagemath-environment
|
11
|
-
'passagemath-categories
|
12
|
-
'passagemath-modules
|
13
|
-
'passagemath-ntl
|
10
|
+
'passagemath-environment == 10.6.1rc1',
|
11
|
+
'passagemath-categories == 10.6.1rc1',
|
12
|
+
'passagemath-modules == 10.6.1rc1',
|
13
|
+
'passagemath-ntl == 10.6.1rc1',
|
14
14
|
'cython >=3.0, != 3.0.3, <4.0', 'cython >=3.0.8,<3.1.0',
|
15
15
|
'gmpy2 ~=2.1.b999',
|
16
16
|
'cysignals >=1.11.2, != 1.12.0',
|
@@ -22,8 +22,8 @@ build-backend = "setuptools.build_meta"
|
|
22
22
|
name = "passagemath-flint"
|
23
23
|
description = "passagemath: Fast computations with MPFI and FLINT"
|
24
24
|
dependencies = [
|
25
|
-
'passagemath-categories
|
26
|
-
'passagemath-ntl
|
25
|
+
'passagemath-categories == 10.6.1rc1',
|
26
|
+
'passagemath-ntl == 10.6.1rc1',
|
27
27
|
'numpy >=1.19', 'numpy >=1.22.4',
|
28
28
|
]
|
29
29
|
dynamic = ["version"]
|
@@ -40,7 +40,6 @@ classifiers = [
|
|
40
40
|
"Operating System :: POSIX",
|
41
41
|
"Operating System :: MacOS :: MacOS X",
|
42
42
|
"Programming Language :: Python :: 3 :: Only",
|
43
|
-
"Programming Language :: Python :: 3.9",
|
44
43
|
"Programming Language :: Python :: 3.10",
|
45
44
|
"Programming Language :: Python :: 3.11",
|
46
45
|
"Programming Language :: Python :: 3.12",
|
@@ -48,7 +47,7 @@ classifiers = [
|
|
48
47
|
"Programming Language :: Python :: Implementation :: CPython",
|
49
48
|
"Topic :: Scientific/Engineering :: Mathematics",
|
50
49
|
]
|
51
|
-
requires-python = ">=3.
|
50
|
+
requires-python = ">=3.10, <3.14"
|
52
51
|
|
53
52
|
[project.urls]
|
54
53
|
"release notes" = "https://github.com/passagemath/passagemath/releases"
|
@@ -196,7 +196,7 @@ cdef bint biseq_init_list(biseq_t R, list data, size_t bound) except -1:
|
|
196
196
|
sig_check()
|
197
197
|
item_c = item
|
198
198
|
if item_c > bound:
|
199
|
-
raise OverflowError("list item {!r} larger than {}".format(item, bound)
|
199
|
+
raise OverflowError("list item {!r} larger than {}".format(item, bound))
|
200
200
|
biseq_inititem(R, index, item_c)
|
201
201
|
index += 1
|
202
202
|
|
@@ -390,7 +390,8 @@ cdef mp_size_t biseq_contains(biseq_t S1, biseq_t S2, mp_size_t start) except -2
|
|
390
390
|
sig_on()
|
391
391
|
for index from start <= index <= S1.length-S2.length:
|
392
392
|
if mpn_equal_bits_shifted(S2.data.bits, S1.data.bits,
|
393
|
-
|
393
|
+
S2.length * S2.itembitsize,
|
394
|
+
index * S2.itembitsize):
|
394
395
|
sig_off()
|
395
396
|
return index
|
396
397
|
sig_off()
|
@@ -425,7 +426,8 @@ cdef mp_size_t biseq_startswith_tail(biseq_t S1, biseq_t S2, mp_size_t start) ex
|
|
425
426
|
sig_on()
|
426
427
|
for index from start <= index < S2.length:
|
427
428
|
if mpn_equal_bits_shifted(S1.data.bits, S2.data.bits,
|
428
|
-
|
429
|
+
(S2.length - index) * S2.itembitsize,
|
430
|
+
index * S2.itembitsize):
|
429
431
|
sig_off()
|
430
432
|
return index
|
431
433
|
sig_off()
|
@@ -1382,35 +1384,35 @@ def _biseq_stresstest():
|
|
1382
1384
|
cdef list L = [BoundedIntegerSequence(6, [randint(0, 5) for z in range(randint(4, 10))]) for y in range(100)]
|
1383
1385
|
cdef BoundedIntegerSequence S, T
|
1384
1386
|
while True:
|
1385
|
-
branch = randint(0,4)
|
1387
|
+
branch = randint(0, 4)
|
1386
1388
|
if branch == 0:
|
1387
|
-
L[randint(0,99)] = L[randint(0,99)]+L[randint(0,99)]
|
1389
|
+
L[randint(0, 99)] = L[randint(0, 99)] + L[randint(0, 99)]
|
1388
1390
|
elif branch == 1:
|
1389
|
-
x = randint(0,99)
|
1391
|
+
x = randint(0, 99)
|
1390
1392
|
if len(L[x]):
|
1391
|
-
y = randint(0,len(L[x])-1)
|
1392
|
-
z = randint(y,len(L[x])-1)
|
1393
|
-
L[randint(0,99)] = L[x][y:z]
|
1393
|
+
y = randint(0, len(L[x]) - 1)
|
1394
|
+
z = randint(y, len(L[x]) - 1)
|
1395
|
+
L[randint(0, 99)] = L[x][y:z]
|
1394
1396
|
else:
|
1395
|
-
L[x] = BoundedIntegerSequence(6, [randint(0,5) for z in range(randint(4,10))])
|
1397
|
+
L[x] = BoundedIntegerSequence(6, [randint(0, 5) for z in range(randint(4, 10))])
|
1396
1398
|
elif branch == 2:
|
1397
|
-
t = list(L[randint(0,99)])
|
1398
|
-
t = repr(L[randint(0,99)])
|
1399
|
-
t = L[randint(0,99)].list()
|
1399
|
+
t = list(L[randint(0, 99)])
|
1400
|
+
t = repr(L[randint(0, 99)])
|
1401
|
+
t = L[randint(0, 99)].list()
|
1400
1402
|
elif branch == 3:
|
1401
|
-
x = randint(0,99)
|
1403
|
+
x = randint(0, 99)
|
1402
1404
|
if len(L[x]):
|
1403
|
-
y = randint(0,len(L[x])-1)
|
1405
|
+
y = randint(0, len(L[x])-1)
|
1404
1406
|
t = L[x][y]
|
1405
1407
|
try:
|
1406
1408
|
t = L[x].index(t)
|
1407
1409
|
except ValueError:
|
1408
|
-
raise ValueError("{} should be in {} (bound {}) at position {}".format(t,L[x],L[x].bound(),y))
|
1410
|
+
raise ValueError("{} should be in {} (bound {}) at position {}".format(t, L[x], L[x].bound(), y))
|
1409
1411
|
else:
|
1410
|
-
L[x] = BoundedIntegerSequence(6, [randint(0,5) for z in range(randint(4,10))])
|
1412
|
+
L[x] = BoundedIntegerSequence(6, [randint(0, 5) for z in range(randint(4, 10))])
|
1411
1413
|
elif branch == 4:
|
1412
|
-
S = L[randint(0,99)]
|
1413
|
-
T = L[randint(0,99)]
|
1414
|
-
biseq_startswith(S.data,T.data)
|
1414
|
+
S = L[randint(0, 99)]
|
1415
|
+
T = L[randint(0, 99)]
|
1416
|
+
biseq_startswith(S.data, T.data)
|
1415
1417
|
biseq_contains(S.data, T.data, 0)
|
1416
1418
|
biseq_startswith_tail(S.data, T.data, 0)
|
@@ -11,8 +11,9 @@ AUTHORS:
|
|
11
11
|
|
12
12
|
REFERENCE:
|
13
13
|
|
14
|
-
|
15
|
-
|
14
|
+
See [Rea1968]_ and the :wikipedia:`Chromatic_polynomial` for more details
|
15
|
+
on this notion in graphs.
|
16
|
+
|
16
17
|
"""
|
17
18
|
|
18
19
|
# ****************************************************************************
|
@@ -42,7 +43,7 @@ def chromatic_polynomial(G, return_tree_basis=False, algorithm='C', cache=None):
|
|
42
43
|
Compute the chromatic polynomial of the graph G.
|
43
44
|
|
44
45
|
The algorithm used is a recursive one, based on the following observations
|
45
|
-
of Read:
|
46
|
+
of Read [Rea1968]_:
|
46
47
|
|
47
48
|
- The chromatic polynomial of a tree on n vertices is x(x-1)^(n-1).
|
48
49
|
|
@@ -20,8 +20,8 @@ cdef extern from "flint_wrap.h":
|
|
20
20
|
void * flint_realloc(void * ptr, size_t size) noexcept
|
21
21
|
void * flint_calloc(size_t num, size_t size) noexcept
|
22
22
|
void flint_free(void * ptr) noexcept
|
23
|
-
|
24
|
-
void flint_rand_free(
|
23
|
+
flint_rand_struct * flint_rand_alloc() noexcept
|
24
|
+
void flint_rand_free(flint_rand_struct * state) noexcept
|
25
25
|
void flint_randinit(flint_rand_t state) noexcept
|
26
26
|
void flint_randclear(flint_rand_t state) noexcept
|
27
27
|
void flint_set_num_threads(int num_threads) noexcept
|
@@ -32,6 +32,10 @@
|
|
32
32
|
#pragma push_macro("I")
|
33
33
|
#define I Iv
|
34
34
|
|
35
|
+
/* flint 3.2 will rename flint_rand_s to flint_rand_struct
|
36
|
+
* the following line can be removed when flint 3.1 is gone */
|
37
|
+
#define flint_rand_s flint_rand_struct
|
38
|
+
|
35
39
|
#include <flint/flint.h>
|
36
40
|
|
37
41
|
/* If flint was already previously included via another header (e.g.
|
{passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/libs/flint/nmod_poly_linkage.pxi
RENAMED
@@ -6,8 +6,9 @@ This file provides the backend for \class{Polynomial_zmod_flint} via
|
|
6
6
|
templating.
|
7
7
|
|
8
8
|
AUTHOR:
|
9
|
-
|
10
|
-
|
9
|
+
|
10
|
+
- Martin Albrecht (2009-01) another initial implementation
|
11
|
+
- Burcin Erocal (2008-11) initial implementation
|
11
12
|
"""
|
12
13
|
#*****************************************************************************
|
13
14
|
# Copyright (C) 2008-2009 Burcin Erocal <burcin@erocal.org>
|
@@ -15,7 +16,7 @@ AUTHOR:
|
|
15
16
|
#
|
16
17
|
# Distributed under the terms of the GNU General Public License (GPL),
|
17
18
|
# version 2 or any later version. The full text of the GPL is available at:
|
18
|
-
#
|
19
|
+
# https://www.gnu.org/licenses/
|
19
20
|
#*****************************************************************************
|
20
21
|
|
21
22
|
from cysignals.signals cimport sig_on, sig_off
|
@@ -338,7 +339,7 @@ cdef inline int celement_mul_scalar(nmod_poly_t res, nmod_poly_t p,
|
|
338
339
|
sage: (p*9836).coefficients() == [x*9836 for x in p.coefficients()]
|
339
340
|
True
|
340
341
|
"""
|
341
|
-
nmod_poly_scalar_mul_nmod(res, p, (<unsigned long>c)%n)
|
342
|
+
nmod_poly_scalar_mul_nmod(res, p, (<unsigned long>c) % n)
|
342
343
|
|
343
344
|
cdef inline int celement_mul(nmod_poly_t res, nmod_poly_t a, nmod_poly_t b, unsigned long n) except -2:
|
344
345
|
"""
|
@@ -267,9 +267,9 @@ cdef extern from "flint_wrap.h":
|
|
267
267
|
|
268
268
|
|
269
269
|
# flint/flint.h
|
270
|
-
ctypedef struct
|
270
|
+
ctypedef struct flint_rand_struct:
|
271
271
|
pass
|
272
|
-
ctypedef
|
272
|
+
ctypedef flint_rand_struct flint_rand_t[1]
|
273
273
|
|
274
274
|
cdef long FLINT_BITS
|
275
275
|
cdef long FLINT_D_BITS
|
{passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_cyclo_dense.pyx
RENAMED
@@ -1230,7 +1230,7 @@ cdef class Matrix_cyclo_dense(Matrix_dense):
|
|
1230
1230
|
sage: Matrix(CyclotomicField(10),0).charpoly()
|
1231
1231
|
1
|
1232
1232
|
"""
|
1233
|
-
key = 'charpoly-%s-%s'%(algorithm,proof)
|
1233
|
+
key = 'charpoly-%s-%s' % (algorithm, proof)
|
1234
1234
|
f = self.fetch(key)
|
1235
1235
|
if f is not None:
|
1236
1236
|
return f.change_variable_name(var)
|
@@ -1525,7 +1525,7 @@ cdef class Matrix_cyclo_dense(Matrix_dense):
|
|
1525
1525
|
sage: a == b # long time (depends on previous)
|
1526
1526
|
True
|
1527
1527
|
"""
|
1528
|
-
key = 'echelon_form-%s'%algorithm
|
1528
|
+
key = 'echelon_form-%s' % algorithm
|
1529
1529
|
E = self.fetch(key)
|
1530
1530
|
if E is not None:
|
1531
1531
|
return E
|
@@ -1631,7 +1631,7 @@ cdef class Matrix_cyclo_dense(Matrix_dense):
|
|
1631
1631
|
...
|
1632
1632
|
ValueError: echelon form mod 7 not defined
|
1633
1633
|
"""
|
1634
|
-
cdef
|
1634
|
+
cdef Py_ssize_t i
|
1635
1635
|
|
1636
1636
|
# Initialize variables
|
1637
1637
|
ls, _ = self._reductions(p)
|
{passagemath_flint-10.5.43 → passagemath_flint-10.6.1rc1}/sage/matrix/matrix_integer_dense.pyx
RENAMED
@@ -60,7 +60,7 @@ TESTS::
|
|
60
60
|
from libc.stdint cimport int64_t
|
61
61
|
from libc.string cimport strcpy, strlen
|
62
62
|
|
63
|
-
from sage.cpython.string cimport char_to_str
|
63
|
+
from sage.cpython.string cimport char_to_str
|
64
64
|
from sage.ext.stdsage cimport PY_NEW
|
65
65
|
from cysignals.signals cimport sig_check, sig_on, sig_str, sig_off
|
66
66
|
from cysignals.memory cimport sig_malloc, sig_free, check_allocarray
|
@@ -446,7 +446,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
446
446
|
sage: matrix(ZZ,1,3,[1,193,15])._pickle() == (b'1 61 f', 0) # indirect doctest
|
447
447
|
True
|
448
448
|
"""
|
449
|
-
return
|
449
|
+
return self._export_as_string(32).encode('ascii')
|
450
450
|
|
451
451
|
cpdef _export_as_string(self, int base=10):
|
452
452
|
"""
|
@@ -467,7 +467,8 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
467
467
|
"""
|
468
468
|
# TODO: *maybe* redo this to use mpz_import and mpz_export
|
469
469
|
# from sec 5.14 of the GMP manual. ??
|
470
|
-
cdef
|
470
|
+
cdef Py_ssize_t i, j, len_so_far
|
471
|
+
cdef int m, n
|
471
472
|
cdef char *s
|
472
473
|
cdef char *t
|
473
474
|
cdef char *tmp
|
@@ -530,18 +531,18 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
530
531
|
self._unpickle_matrix_2x2_version0(data)
|
531
532
|
else:
|
532
533
|
raise RuntimeError("invalid pickle data")
|
534
|
+
|
533
535
|
else:
|
534
|
-
raise RuntimeError("unknown matrix version (
|
536
|
+
raise RuntimeError(f"unknown matrix version (={version})")
|
535
537
|
|
536
538
|
cdef _unpickle_version0(self, data):
|
537
|
-
cdef Py_ssize_t i, j,
|
539
|
+
cdef Py_ssize_t i, j, k
|
538
540
|
data = data.split()
|
539
|
-
|
540
|
-
if len(data) != n:
|
541
|
+
if len(data) != self._nrows * self._ncols:
|
541
542
|
raise RuntimeError("invalid pickle data")
|
542
543
|
k = 0
|
543
|
-
for i
|
544
|
-
for j
|
544
|
+
for i in range(self._nrows):
|
545
|
+
for j in range(self._ncols):
|
545
546
|
s = data[k]
|
546
547
|
k += 1
|
547
548
|
if fmpz_set_str(fmpz_mat_entry(self._matrix, i, j), s, 32):
|
@@ -1321,7 +1322,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
1321
1322
|
elif algorithm == 'generic':
|
1322
1323
|
g = Matrix_dense.charpoly(self, var)
|
1323
1324
|
else:
|
1324
|
-
raise ValueError("no algorithm '%s'"%algorithm)
|
1325
|
+
raise ValueError("no algorithm '%s'" % algorithm)
|
1325
1326
|
|
1326
1327
|
self.cache(cache_key, g)
|
1327
1328
|
return g
|
@@ -1396,7 +1397,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
1396
1397
|
else:
|
1397
1398
|
algorithm = 'linbox'
|
1398
1399
|
|
1399
|
-
key = 'minpoly_%s'%(algorithm)
|
1400
|
+
key = 'minpoly_%s' % (algorithm)
|
1400
1401
|
g = self.fetch(key)
|
1401
1402
|
if g is not None:
|
1402
1403
|
return g.change_variable_name(var)
|
@@ -1407,7 +1408,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
1407
1408
|
elif algorithm == 'generic':
|
1408
1409
|
g = Matrix_dense.minpoly(self, var)
|
1409
1410
|
else:
|
1410
|
-
raise ValueError("no algorithm '%s'"%algorithm)
|
1411
|
+
raise ValueError("no algorithm '%s'" % algorithm)
|
1411
1412
|
|
1412
1413
|
self.cache(key, g)
|
1413
1414
|
return g
|
@@ -1561,7 +1562,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
1561
1562
|
[ 1 -2 -45]
|
1562
1563
|
"""
|
1563
1564
|
w = self._export_as_string(base=10)
|
1564
|
-
return 'Matrix(IntegerRing(),%s,%s,StringToIntegerSequence("%s"))'%(
|
1565
|
+
return 'Matrix(IntegerRing(),%s,%s,StringToIntegerSequence("%s"))' % (
|
1565
1566
|
self.nrows(), self.ncols(), w)
|
1566
1567
|
|
1567
1568
|
def symplectic_form(self):
|
@@ -1864,7 +1865,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
1864
1865
|
sage: H == U*m
|
1865
1866
|
True
|
1866
1867
|
"""
|
1867
|
-
key = 'hnf-%s-%s'%(include_zero_rows,transformation)
|
1868
|
+
key = 'hnf-%s-%s' % (include_zero_rows, transformation)
|
1868
1869
|
ans = self.fetch(key)
|
1869
1870
|
if ans is not None:
|
1870
1871
|
return ans
|
@@ -2261,7 +2262,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
2261
2262
|
if i > 0:
|
2262
2263
|
d = d[i:] + [d[0]]*i
|
2263
2264
|
else:
|
2264
|
-
raise ValueError("algorithm (='%s') unknown"%algorithm)
|
2265
|
+
raise ValueError("algorithm (='%s') unknown" % algorithm)
|
2265
2266
|
|
2266
2267
|
self.cache('elementary_divisors', d)
|
2267
2268
|
return d[:]
|
@@ -2615,7 +2616,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
2615
2616
|
K = _rational_kernel_iml(self).transpose().saturation(proof=proof)
|
2616
2617
|
format = 'computed-iml-int'
|
2617
2618
|
else:
|
2618
|
-
raise ValueError('unknown algorithm: %s'%algorithm)
|
2619
|
+
raise ValueError('unknown algorithm: %s' % algorithm)
|
2619
2620
|
tm = verbose("done computing right kernel matrix over the integers for %sx%s matrix" % (self.nrows(), self.ncols()),level=1, t=tm)
|
2620
2621
|
return (format, K)
|
2621
2622
|
|
@@ -3093,7 +3094,9 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
3093
3094
|
cdef Matrix_integer_dense R = None # LLL-reduced matrix
|
3094
3095
|
cdef Matrix_integer_dense U = None # transformation matrix
|
3095
3096
|
|
3096
|
-
tm = verbose("LLL of %sx%s matrix (algorithm %s)"%(self.nrows(),
|
3097
|
+
tm = verbose("LLL of %sx%s matrix (algorithm %s)" % (self.nrows(),
|
3098
|
+
self.ncols(),
|
3099
|
+
algorithm))
|
3097
3100
|
import sage.libs.ntl.all
|
3098
3101
|
ntl_ZZ = sage.libs.ntl.all.ZZ
|
3099
3102
|
|
@@ -3171,7 +3174,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
3171
3174
|
else:
|
3172
3175
|
r = A.LLL_XD(delta, verbose=verb, return_U=transformation)
|
3173
3176
|
else:
|
3174
|
-
raise TypeError("algorithm %s not supported"%algorithm)
|
3177
|
+
raise TypeError("algorithm %s not supported" % algorithm)
|
3175
3178
|
|
3176
3179
|
if isinstance(r, tuple):
|
3177
3180
|
r, UNTL = r
|
@@ -3209,7 +3212,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
3209
3212
|
from .matrix_integer_pari import _lll_pari
|
3210
3213
|
R, U, r = _lll_pari(self)
|
3211
3214
|
else:
|
3212
|
-
raise TypeError("algorithm %s not supported"%algorithm)
|
3215
|
+
raise TypeError("algorithm %s not supported" % algorithm)
|
3213
3216
|
|
3214
3217
|
verbose("LLL finished", tm)
|
3215
3218
|
if r is not None:
|
@@ -3455,7 +3458,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
3455
3458
|
num_per_row = int(density * nc)
|
3456
3459
|
for i from 0 <= i < self._nrows:
|
3457
3460
|
for j from 0 <= j < num_per_row:
|
3458
|
-
k = rstate.c_random()%nc
|
3461
|
+
k = rstate.c_random() % nc
|
3459
3462
|
the_integer_ring._randomize_mpz(tmp,
|
3460
3463
|
x, y, distribution)
|
3461
3464
|
self.set_unsafe_mpz(i,k,tmp)
|
@@ -3759,7 +3762,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
3759
3762
|
elif algorithm == 'ntl':
|
3760
3763
|
d = self._det_ntl()
|
3761
3764
|
else:
|
3762
|
-
raise TypeError("algorithm '%s' not known"%(algorithm))
|
3765
|
+
raise TypeError("algorithm '%s' not known" % (algorithm))
|
3763
3766
|
|
3764
3767
|
self.cache('det', d)
|
3765
3768
|
return d
|
@@ -3977,7 +3980,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
3977
3980
|
cdef fmpz_t fden
|
3978
3981
|
fmpz_init(fden)
|
3979
3982
|
M = self._new(self._nrows,self._ncols)
|
3980
|
-
verbose('computing inverse of %s x %s matrix using FLINT'%(self._nrows, self._ncols))
|
3983
|
+
verbose('computing inverse of %s x %s matrix using FLINT' % (self._nrows, self._ncols))
|
3981
3984
|
sig_on()
|
3982
3985
|
res = fmpz_mat_inv(M._matrix,fden,self._matrix)
|
3983
3986
|
fmpz_get_mpz(den.value,fden)
|
@@ -4190,13 +4193,13 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
4190
4193
|
from .matrix_integer_iml import _solve_iml
|
4191
4194
|
X, d = _solve_iml(self, C, right=True)
|
4192
4195
|
else:
|
4193
|
-
raise ValueError("Unknown algorithm '%s'"%algorithm)
|
4196
|
+
raise ValueError("Unknown algorithm '%s'" % algorithm)
|
4194
4197
|
if d != 1:
|
4195
4198
|
X = (1/d) * X
|
4196
4199
|
if not matrix:
|
4197
4200
|
# Convert back to a vector
|
4198
4201
|
X = (X.base_ring() ** X.nrows())(X.list())
|
4199
|
-
verbose('finished solve_right via %s'%algorithm, t)
|
4202
|
+
verbose('finished solve_right via %s' % algorithm, t)
|
4200
4203
|
return X
|
4201
4204
|
|
4202
4205
|
def _solve_iml(self, Matrix_integer_dense B, right=True):
|
@@ -4560,13 +4563,15 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
4560
4563
|
pivots_ = set(pivots)
|
4561
4564
|
non_pivots = [i for i in range(B.ncols()) if i not in pivots_]
|
4562
4565
|
D = B.matrix_from_columns(non_pivots)
|
4563
|
-
t = verbose('calling %s solver'%solver,
|
4566
|
+
t = verbose('calling %s solver' % solver,
|
4567
|
+
level=2, caller_name='p-adic echelon')
|
4564
4568
|
if solver == 'iml':
|
4565
4569
|
from .matrix_integer_iml import _solve_iml
|
4566
4570
|
X, d = _solve_iml(C, D, right=True)
|
4567
4571
|
else:
|
4568
4572
|
X, d = C._solve_flint(D, right=True)
|
4569
|
-
t = verbose('finished %s solver'%solver,
|
4573
|
+
t = verbose('finished %s solver' % solver,
|
4574
|
+
level=2, caller_name='p-adic echelon', t=t)
|
4570
4575
|
|
4571
4576
|
# Step 6: Verify that we had chosen the correct pivot columns.
|
4572
4577
|
pivots_are_right = True
|
@@ -4786,7 +4791,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
4786
4791
|
new_pivots = list(pivots)
|
4787
4792
|
if v != 0:
|
4788
4793
|
i = v.nonzero_positions()[0]
|
4789
|
-
assert not (i in pivots), 'WARNING: bug in add_row -- i (=%s) should not be a pivot'%i
|
4794
|
+
assert not (i in pivots), 'WARNING: bug in add_row -- i (=%s) should not be a pivot' % i
|
4790
4795
|
|
4791
4796
|
# If pivot entry is negative negate this row.
|
4792
4797
|
if v[i] < 0:
|
@@ -4929,7 +4934,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
4929
4934
|
for k from 0 <= k < i:
|
4930
4935
|
res_rows[i][k] = 0
|
4931
4936
|
for k from i <= k < ncols:
|
4932
|
-
t = ((<int64_t>u)*T_rows[i][k])%R
|
4937
|
+
t = ((<int64_t>u)*T_rows[i][k]) % R
|
4933
4938
|
if t < 0:
|
4934
4939
|
t += R
|
4935
4940
|
res_rows[i][k] = t
|
@@ -4939,7 +4944,7 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
4939
4944
|
for j from 0 <= j < i:
|
4940
4945
|
q = res_rows[j][i]/d
|
4941
4946
|
for k from i <= k < ncols:
|
4942
|
-
u = (res_rows[j][k] - (<int64_t>q)*res_rows[i][k])%R
|
4947
|
+
u = (res_rows[j][k] - (<int64_t>q)*res_rows[i][k]) % R
|
4943
4948
|
if u < 0:
|
4944
4949
|
u += R
|
4945
4950
|
res_rows[j][k] = u
|
@@ -4962,11 +4967,11 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
4962
4967
|
d = ai.c_xgcd_int(T_i_i, T_j_i, &u, &v)
|
4963
4968
|
if d != T_i_i:
|
4964
4969
|
for k from i <= k < ncols:
|
4965
|
-
B[k] = ((<int64_t>u)*T_rows[i][k] + (<int64_t>v)*T_rows[j][k])%R
|
4970
|
+
B[k] = ((<int64_t>u)*T_rows[i][k] + (<int64_t>v)*T_rows[j][k]) % R
|
4966
4971
|
c1 = T_i_i/d
|
4967
4972
|
c2 = -T_j_i/d
|
4968
4973
|
for k from i <= k < ncols:
|
4969
|
-
T_rows[j][k] = ((<int64_t>c1)*T_rows[j][k] + (<int64_t>c2)*T_rows[i][k])%R
|
4974
|
+
T_rows[j][k] = ((<int64_t>c1)*T_rows[j][k] + (<int64_t>c2)*T_rows[i][k]) % R
|
4970
4975
|
if d != T_i_i:
|
4971
4976
|
for k from i <= k < ncols:
|
4972
4977
|
T_rows[i][k] = B[k]
|
@@ -5239,6 +5244,16 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
5239
5244
|
[ 3 4 5]
|
5240
5245
|
[ 6 7 8]
|
5241
5246
|
[ 1 5 -10]
|
5247
|
+
|
5248
|
+
TESTS:
|
5249
|
+
|
5250
|
+
Ensure that :issue:`11328` is fixed::
|
5251
|
+
|
5252
|
+
sage: m = matrix([[int(1),int(1)],[int(1),int(1)]])
|
5253
|
+
sage: m.insert_row(1,[int(2),int(3)])
|
5254
|
+
[1 1]
|
5255
|
+
[2 3]
|
5256
|
+
[1 1]
|
5242
5257
|
"""
|
5243
5258
|
cdef Matrix_integer_dense res = self._new(self._nrows + 1, self._ncols)
|
5244
5259
|
cdef Py_ssize_t j
|
@@ -5254,7 +5269,8 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
5254
5269
|
for i from 0 <= i < index:
|
5255
5270
|
fmpz_init_set(fmpz_mat_entry(res._matrix,i,j), fmpz_mat_entry(self._matrix,i,j))
|
5256
5271
|
|
5257
|
-
z = row[j]
|
5272
|
+
z = ZZ(row[j])
|
5273
|
+
|
5258
5274
|
fmpz_set_mpz(zflint,z.value)
|
5259
5275
|
fmpz_init_set(fmpz_mat_entry(res._matrix,index,j), zflint)
|
5260
5276
|
|
@@ -5437,7 +5453,8 @@ cdef class Matrix_integer_dense(Matrix_dense):
|
|
5437
5453
|
|
5438
5454
|
name = singular._next_var_name()
|
5439
5455
|
values = str(self.list())[1:-1]
|
5440
|
-
singular.eval("intmat %s[%d][%d] = %s"%(name, self.nrows(),
|
5456
|
+
singular.eval("intmat %s[%d][%d] = %s" % (name, self.nrows(),
|
5457
|
+
self.ncols(), values))
|
5441
5458
|
|
5442
5459
|
from sage.interfaces.singular import SingularElement
|
5443
5460
|
return SingularElement(singular, 'foobar', name, True)
|