passagemath-modules 10.5.34__cp313-cp313-macosx_13_0_x86_64.whl → 10.6.40__cp313-cp313-macosx_13_0_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {passagemath_modules.dylibs → passagemath_modules/.dylibs}/libgfortran.5.dylib +0 -0
- passagemath_modules/.dylibs/libgmp.10.dylib +0 -0
- passagemath_modules/.dylibs/libgsl.28.dylib +0 -0
- passagemath_modules/.dylibs/libmpc.3.dylib +0 -0
- passagemath_modules/.dylibs/libmpfr.6.dylib +0 -0
- passagemath_modules/.dylibs/libopenblasp-r0.3.29.dylib +0 -0
- {passagemath_modules.dylibs → passagemath_modules/.dylibs}/libquadmath.0.dylib +0 -0
- passagemath_modules/__init__.py +3 -0
- {passagemath_modules-10.5.34.dist-info → passagemath_modules-10.6.40.dist-info}/METADATA +53 -48
- {passagemath_modules-10.5.34.dist-info → passagemath_modules-10.6.40.dist-info}/RECORD +341 -332
- {passagemath_modules-10.5.34.dist-info → passagemath_modules-10.6.40.dist-info}/WHEEL +2 -2
- passagemath_modules-10.6.40.dist-info/top_level.txt +3 -0
- sage/algebras/clifford_algebra.py +2 -2
- sage/algebras/clifford_algebra_element.cpython-313-darwin.so +0 -0
- sage/algebras/clifford_algebra_element.pyx +4 -2
- sage/algebras/exterior_algebra_groebner.cpython-313-darwin.so +0 -0
- sage/algebras/exterior_algebra_groebner.pyx +2 -0
- sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra.py +83 -5
- sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.cpython-313-darwin.so +0 -0
- sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.pxd +2 -0
- sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.pyx +28 -3
- sage/algebras/finite_gca.py +1 -1
- sage/algebras/lie_algebras/bgg_dual_module.py +18 -11
- sage/algebras/lie_algebras/bgg_resolution.py +9 -9
- sage/algebras/lie_algebras/classical_lie_algebra.py +3 -3
- sage/algebras/lie_algebras/examples.py +2 -2
- sage/algebras/lie_algebras/free_lie_algebra.py +1 -1
- sage/algebras/lie_algebras/heisenberg.py +4 -4
- sage/algebras/lie_algebras/lie_algebra.py +1 -1
- sage/algebras/lie_algebras/lie_algebra_element.cpython-313-darwin.so +0 -0
- sage/algebras/lie_algebras/lie_algebra_element.pyx +65 -28
- sage/algebras/lie_algebras/quotient.py +40 -29
- sage/algebras/lie_algebras/subalgebra.py +76 -53
- sage/algebras/lie_algebras/verma_module.py +1 -3
- sage/algebras/octonion_algebra.cpython-313-darwin.so +0 -0
- sage/algebras/octonion_algebra.pyx +1 -1
- sage/algebras/orlik_solomon.py +4 -4
- sage/algebras/orlik_terao.py +4 -4
- sage/algebras/steenrod/steenrod_algebra.py +37 -30
- sage/algebras/steenrod/steenrod_algebra_bases.py +2 -2
- sage/algebras/steenrod/steenrod_algebra_misc.py +4 -4
- sage/algebras/steenrod/steenrod_algebra_mult.py +2 -2
- sage/all__sagemath_modules.py +1 -0
- sage/calculus/integration.cpython-313-darwin.so +0 -0
- sage/calculus/integration.pyx +6 -5
- sage/calculus/interpolation.cpython-313-darwin.so +0 -0
- sage/calculus/interpolators.cpython-313-darwin.so +0 -0
- sage/calculus/ode.cpython-313-darwin.so +0 -0
- sage/calculus/ode.pxd +2 -2
- sage/calculus/ode.pyx +6 -4
- sage/calculus/riemann.cpython-313-darwin.so +0 -0
- sage/calculus/riemann.pyx +68 -48
- sage/calculus/transforms/dwt.cpython-313-darwin.so +0 -0
- sage/calculus/transforms/fft.cpython-313-darwin.so +0 -0
- sage/coding/ag_code_decoders.cpython-313-darwin.so +0 -0
- sage/coding/ag_code_decoders.pyx +31 -31
- sage/coding/binary_code.cpython-313-darwin.so +0 -0
- sage/coding/binary_code.pxd +6 -6
- sage/coding/binary_code.pyx +212 -173
- sage/coding/cyclic_code.py +1 -1
- sage/coding/guruswami_sudan/utils.py +3 -5
- sage/coding/kasami_codes.cpython-313-darwin.so +0 -0
- sage/coding/kasami_codes.pyx +20 -24
- sage/coding/linear_code.py +2 -2
- sage/coding/linear_code_no_metric.py +5 -5
- sage/coding/linear_rank_metric.py +81 -19
- sage/combinat/cartesian_product.py +1 -1
- sage/combinat/free_module.py +22 -2
- sage/combinat/root_system/all.py +1 -1
- sage/combinat/root_system/ambient_space.py +1 -1
- sage/combinat/root_system/associahedron.py +4 -4
- sage/combinat/root_system/braid_move_calculator.py +2 -2
- sage/combinat/root_system/braid_orbit.cpython-313-darwin.so +0 -0
- sage/combinat/root_system/braid_orbit.pyx +1 -1
- sage/combinat/root_system/branching_rules.py +3 -3
- sage/combinat/root_system/cartan_type.py +14 -14
- sage/combinat/root_system/coxeter_group.py +3 -3
- sage/combinat/root_system/coxeter_matrix.py +1 -1
- sage/combinat/root_system/coxeter_type.py +12 -1
- sage/combinat/root_system/extended_affine_weyl_group.py +9 -9
- sage/combinat/root_system/fundamental_group.py +3 -5
- sage/combinat/root_system/hecke_algebra_representation.py +9 -10
- sage/combinat/root_system/integrable_representations.py +1 -1
- sage/combinat/root_system/pieri_factors.py +3 -3
- sage/combinat/root_system/root_lattice_realization_algebras.py +1 -1
- sage/combinat/root_system/root_lattice_realizations.py +1 -1
- sage/combinat/root_system/root_system.py +4 -4
- sage/combinat/root_system/type_folded.py +3 -3
- sage/combinat/root_system/type_reducible.py +8 -7
- sage/combinat/root_system/type_super_A.py +2 -2
- sage/combinat/root_system/weight_lattice_realizations.py +9 -8
- sage/combinat/root_system/weyl_characters.py +2 -2
- sage/crypto/__init__.py +1 -0
- sage/crypto/block_cipher/des.py +1 -1
- sage/crypto/block_cipher/miniaes.py +3 -3
- sage/crypto/block_cipher/present.py +3 -3
- sage/crypto/block_cipher/sdes.py +3 -3
- sage/crypto/boolean_function.cpython-313-darwin.so +0 -0
- sage/crypto/boolean_function.pyx +22 -23
- sage/crypto/key_exchange/diffie_hellman.py +4 -9
- sage/crypto/mq/rijndael_gf.py +1 -1
- sage/crypto/mq/sr.py +1 -1
- sage/crypto/public_key/blum_goldwasser.py +3 -3
- sage/crypto/sbox.cpython-313-darwin.so +0 -0
- sage/crypto/sbox.pyx +1 -1
- sage/crypto/sboxes.py +22 -0
- sage/crypto/util.py +4 -6
- sage/ext/interpreters/all__sagemath_modules.py +1 -1
- sage/ext/interpreters/wrapper_cc.cpython-313-darwin.so +0 -0
- sage/ext/interpreters/wrapper_cc.pxd +5 -5
- sage/ext/interpreters/wrapper_cc.pyx +1 -1
- sage/ext/interpreters/wrapper_cdf.cpython-313-darwin.so +0 -0
- sage/ext/interpreters/wrapper_cdf.pxd +5 -7
- sage/ext/interpreters/wrapper_cdf.pyx +4 -10
- sage/ext/interpreters/wrapper_rdf.cpython-313-darwin.so +0 -0
- sage/ext/interpreters/wrapper_rdf.pxd +1 -1
- sage/ext/interpreters/wrapper_rdf.pyx +1 -1
- sage/ext/interpreters/wrapper_rr.cpython-313-darwin.so +0 -0
- sage/ext/interpreters/wrapper_rr.pxd +5 -5
- sage/ext/interpreters/wrapper_rr.pyx +1 -2
- sage/geometry/toric_lattice.py +3 -3
- sage/geometry/toric_lattice_element.cpython-313-darwin.so +0 -0
- sage/groups/additive_abelian/additive_abelian_group.py +1 -1
- sage/groups/additive_abelian/qmodnz.py +4 -4
- sage/groups/matrix_gps/coxeter_group.py +17 -4
- sage/groups/matrix_gps/group_element.cpython-313-darwin.so +0 -0
- sage/groups/misc_gps/argument_groups.py +2 -2
- sage/groups/misc_gps/imaginary_groups.py +4 -4
- sage/groups/perm_gps/partn_ref/refinement_binary.cpython-313-darwin.so +0 -0
- sage/groups/perm_gps/partn_ref/refinement_matrices.cpython-313-darwin.so +0 -0
- sage/homology/chain_complex.py +0 -2
- sage/homology/hochschild_complex.py +3 -3
- sage/homology/homology_morphism.py +6 -6
- sage/homology/homology_vector_space_with_basis.py +1 -1
- sage/libs/gsl/array.cpython-313-darwin.so +0 -0
- sage/libs/mpmath/utils.cpython-313-darwin.so +0 -0
- sage/matrix/action.cpython-313-darwin.so +0 -0
- sage/matrix/args.cpython-313-darwin.so +0 -0
- sage/matrix/args.pxd +2 -1
- sage/matrix/args.pyx +143 -21
- sage/matrix/benchmark.py +8 -4
- sage/matrix/compute_J_ideal.py +2 -2
- sage/matrix/constructor.cpython-313-darwin.so +0 -0
- sage/matrix/echelon_matrix.cpython-313-darwin.so +0 -0
- sage/matrix/echelon_matrix.pyx +1 -1
- sage/matrix/matrix0.cpython-313-darwin.so +0 -0
- sage/matrix/matrix0.pxd +3 -3
- sage/matrix/matrix0.pyx +9 -7
- sage/matrix/matrix1.cpython-313-darwin.so +0 -0
- sage/matrix/matrix1.pyx +87 -48
- sage/matrix/matrix2.cpython-313-darwin.so +0 -0
- sage/matrix/matrix2.pxd +3 -3
- sage/matrix/matrix2.pyx +1261 -63
- sage/matrix/matrix_cdv.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_complex_double_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_complex_double_dense.pyx +1 -1
- sage/matrix/matrix_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_dense.pyx +2 -3
- sage/matrix/matrix_double_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_double_dense.pyx +11 -5
- sage/matrix/matrix_double_sparse.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_generic_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_generic_sparse.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_generic_sparse.pyx +1 -1
- sage/matrix/matrix_laurent_mpolynomial_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_numpy_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_numpy_integer_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_polynomial_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_polynomial_dense.pyx +952 -261
- sage/matrix/matrix_real_double_dense.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_space.py +18 -9
- sage/matrix/matrix_sparse.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_sparse.pyx +6 -7
- sage/matrix/matrix_window.cpython-313-darwin.so +0 -0
- sage/matrix/matrix_window.pyx +2 -2
- sage/matrix/misc_mpfr.cpython-313-darwin.so +0 -0
- sage/matrix/operation_table.py +0 -2
- sage/matrix/special.py +5 -1
- sage/matrix/strassen.cpython-313-darwin.so +0 -0
- sage/matrix/strassen.pyx +1 -1
- sage/matroids/basis_exchange_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/basis_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/chow_ring.py +68 -65
- sage/matroids/chow_ring_ideal.py +41 -38
- sage/matroids/circuit_closures_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/circuits_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/database_matroids.py +16 -5
- sage/matroids/dual_matroid.py +2 -2
- sage/matroids/extension.cpython-313-darwin.so +0 -0
- sage/matroids/flats_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/gammoid.py +1 -1
- sage/matroids/graphic_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/graphic_matroid.pyx +3 -3
- sage/matroids/lean_matrix.cpython-313-darwin.so +0 -0
- sage/matroids/lean_matrix.pyx +22 -22
- sage/matroids/linear_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/linear_matroid.pyx +13 -13
- sage/matroids/matroid.cpython-313-darwin.so +0 -0
- sage/matroids/matroid.pyx +25 -16
- sage/matroids/matroids_plot_helpers.py +48 -46
- sage/matroids/minor_matroid.py +2 -2
- sage/matroids/set_system.cpython-313-darwin.so +0 -0
- sage/matroids/transversal_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/transversal_matroid.pyx +3 -3
- sage/matroids/union_matroid.cpython-313-darwin.so +0 -0
- sage/matroids/union_matroid.pyx +3 -0
- sage/matroids/unpickling.cpython-313-darwin.so +0 -0
- sage/matroids/utilities.py +2 -2
- sage/misc/c3.cpython-313-darwin.so +0 -0
- sage/misc/compat.py +1 -2
- sage/misc/pickle_old.cpython-313-darwin.so +0 -0
- sage/modules/diamond_cutting.py +117 -30
- sage/modules/fg_pid/fgp_module.py +3 -3
- sage/modules/filtered_vector_space.py +4 -4
- sage/modules/finite_submodule_iter.cpython-313-darwin.so +0 -0
- sage/modules/fp_graded/free_module.py +2 -2
- sage/modules/fp_graded/module.py +2 -2
- sage/modules/fp_graded/morphism.py +4 -4
- sage/modules/fp_graded/steenrod/morphism.py +1 -1
- sage/modules/free_module.py +163 -27
- sage/modules/free_module_element.cpython-313-darwin.so +0 -0
- sage/modules/free_module_element.pyx +4 -4
- sage/modules/free_module_integer.py +2 -2
- sage/modules/free_module_morphism.py +3 -3
- sage/modules/free_module_pseudohomspace.py +352 -0
- sage/modules/free_module_pseudomorphism.py +578 -0
- sage/modules/free_quadratic_module_integer_symmetric.py +24 -13
- sage/modules/matrix_morphism.py +9 -9
- sage/modules/multi_filtered_vector_space.py +4 -4
- sage/modules/ore_module.py +2208 -0
- sage/modules/ore_module_element.py +178 -0
- sage/modules/ore_module_homspace.py +147 -0
- sage/modules/ore_module_morphism.py +968 -0
- sage/modules/quotient_module.py +11 -1
- sage/modules/submodule.py +2 -2
- sage/modules/torsion_quadratic_module.py +1 -1
- sage/modules/tutorial_free_modules.py +1 -1
- sage/modules/vector_complex_double_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_double_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_integer_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_integer_sparse.cpython-313-darwin.so +0 -0
- sage/modules/vector_integer_sparse.pyx +4 -4
- sage/modules/vector_modn_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_modn_sparse.cpython-313-darwin.so +0 -0
- sage/modules/vector_numpy_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_numpy_integer_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_rational_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_rational_dense.pyx +1 -1
- sage/modules/vector_rational_sparse.cpython-313-darwin.so +0 -0
- sage/modules/vector_rational_sparse.pyx +5 -5
- sage/modules/vector_real_double_dense.cpython-313-darwin.so +0 -0
- sage/modules/vector_space_morphism.py +2 -2
- sage/modules/with_basis/cell_module.py +17 -0
- sage/modules/with_basis/indexed_element.cpython-313-darwin.so +0 -0
- sage/modules/with_basis/indexed_element.pyx +2 -2
- sage/modules/with_basis/invariant.py +1 -1
- sage/modules/with_basis/representation.py +3 -4
- sage/modules/with_basis/subquotient.py +2 -2
- sage/numerical/gauss_legendre.cpython-313-darwin.so +0 -0
- sage/probability/probability_distribution.cpython-313-darwin.so +0 -0
- sage/quadratic_forms/binary_qf.py +11 -11
- sage/quadratic_forms/bqf_class_group.py +26 -92
- sage/quadratic_forms/count_local_2.cpython-313-darwin.so +0 -0
- sage/quadratic_forms/extras.py +1 -1
- sage/quadratic_forms/quadratic_form.py +5 -4
- sage/quadratic_forms/quadratic_form__equivalence_testing.py +7 -4
- sage/quadratic_forms/quadratic_form__evaluate.cpython-313-darwin.so +0 -0
- sage/quadratic_forms/quadratic_form__local_field_invariants.py +10 -10
- sage/quadratic_forms/quadratic_form__ternary_Tornaria.py +2 -2
- sage/quadratic_forms/ternary.cpython-313-darwin.so +0 -0
- sage/quadratic_forms/ternary_qf.py +50 -83
- sage/rings/cfinite_sequence.py +16 -17
- sage/rings/complex_conversion.cpython-313-darwin.so +0 -0
- sage/rings/complex_double.cpython-313-darwin.so +0 -0
- sage/rings/complex_double.pxd +1 -0
- sage/rings/complex_double.pyx +37 -32
- sage/rings/complex_mpc.cpython-313-darwin.so +0 -0
- sage/rings/complex_mpc.pyx +27 -23
- sage/rings/complex_mpfr.cpython-313-darwin.so +0 -0
- sage/rings/complex_mpfr.pyx +11 -11
- sage/rings/function_field/drinfeld_modules/charzero_drinfeld_module.py +277 -21
- sage/rings/function_field/drinfeld_modules/drinfeld_module.py +10 -1
- sage/rings/function_field/drinfeld_modules/finite_drinfeld_module.py +1 -1
- sage/rings/function_field/drinfeld_modules/homset.py +1 -2
- sage/rings/function_field/drinfeld_modules/morphism.py +2 -2
- sage/rings/function_field/hermite_form_polynomial.cpython-313-darwin.so +0 -0
- sage/rings/function_field/khuri_makdisi.cpython-313-darwin.so +0 -0
- sage/rings/function_field/khuri_makdisi.pyx +27 -25
- sage/rings/invariants/invariant_theory.py +61 -60
- sage/rings/invariants/reconstruction.py +8 -8
- sage/rings/polynomial/laurent_polynomial_mpair.cpython-313-darwin.so +0 -0
- sage/rings/polynomial/ore_function_element.py +1 -1
- sage/rings/polynomial/ore_polynomial_element.cpython-313-darwin.so +0 -0
- sage/rings/polynomial/ore_polynomial_element.pyx +8 -8
- sage/rings/polynomial/ore_polynomial_ring.py +134 -17
- sage/rings/polynomial/polynomial_real_mpfr_dense.cpython-313-darwin.so +0 -0
- sage/rings/polynomial/skew_polynomial_element.cpython-313-darwin.so +0 -0
- sage/rings/polynomial/skew_polynomial_finite_field.cpython-313-darwin.so +0 -0
- sage/rings/polynomial/skew_polynomial_finite_field.pyx +3 -4
- sage/rings/polynomial/skew_polynomial_finite_order.cpython-313-darwin.so +0 -0
- sage/rings/polynomial/skew_polynomial_finite_order.pyx +2 -5
- sage/rings/real_double_element_gsl.cpython-313-darwin.so +0 -0
- sage/rings/real_mpfr.cpython-313-darwin.so +0 -0
- sage/rings/real_mpfr.pyx +57 -17
- sage/rings/ring_extension.cpython-313-darwin.so +0 -0
- sage/rings/ring_extension.pyx +4 -2
- sage/rings/ring_extension_conversion.cpython-313-darwin.so +0 -0
- sage/rings/ring_extension_element.cpython-313-darwin.so +0 -0
- sage/rings/ring_extension_element.pyx +42 -0
- sage/rings/ring_extension_morphism.cpython-313-darwin.so +0 -0
- sage/schemes/all__sagemath_modules.py +1 -0
- sage/schemes/projective/all__sagemath_modules.py +1 -0
- sage/schemes/projective/coherent_sheaf.py +300 -0
- sage/schemes/projective/cohomology.py +510 -0
- sage/stats/basic_stats.py +17 -15
- sage/stats/distributions/dgs_misc.h +11 -4
- sage/stats/distributions/discrete_gaussian_integer.cpython-313-darwin.so +0 -0
- sage/stats/distributions/discrete_gaussian_integer.pyx +9 -7
- sage/stats/hmm/chmm.cpython-313-darwin.so +0 -0
- sage/stats/hmm/chmm.pyx +13 -13
- sage/stats/hmm/distributions.cpython-313-darwin.so +0 -0
- sage/stats/hmm/distributions.pxd +3 -3
- sage/stats/hmm/distributions.pyx +3 -3
- sage/stats/hmm/hmm.cpython-313-darwin.so +0 -0
- sage/stats/hmm/hmm.pxd +3 -3
- sage/stats/hmm/hmm.pyx +6 -6
- sage/stats/hmm/util.cpython-313-darwin.so +0 -0
- sage/stats/hmm/util.pyx +6 -6
- sage/stats/intlist.cpython-313-darwin.so +0 -0
- sage/stats/intlist.pxd +3 -3
- sage/stats/time_series.cpython-313-darwin.so +0 -0
- sage/tensor/modules/alternating_contr_tensor.py +3 -3
- sage/tensor/modules/comp.py +3 -3
- sage/tensor/modules/ext_pow_free_module.py +3 -3
- sage/tensor/modules/format_utilities.py +3 -3
- sage/tensor/modules/free_module_linear_group.py +3 -3
- sage/tensor/modules/free_module_morphism.py +0 -1
- sage/tensor/modules/tensor_free_module.py +3 -3
- sage/tensor/modules/tensor_free_submodule.py +1 -1
- sage/tensor/modules/tensor_free_submodule_basis.py +1 -1
- sage/tensor/modules/tensor_with_indices.py +5 -5
- passagemath_modules-10.5.34.dist-info/top_level.txt +0 -2
- passagemath_modules.dylibs/libgcc_s.1.1.dylib +0 -0
- passagemath_modules.dylibs/libgmp.10.dylib +0 -0
- passagemath_modules.dylibs/libgsl.28.dylib +0 -0
- passagemath_modules.dylibs/libmpc.3.dylib +0 -0
- passagemath_modules.dylibs/libmpfr.6.dylib +0 -0
- passagemath_modules.dylibs/libopenblas_sandybridgep-r0.3.28.dylib +0 -0
- sage/ext/interpreters/__init__.py +0 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: passagemath-modules
|
|
3
|
-
Version: 10.
|
|
3
|
+
Version: 10.6.40
|
|
4
4
|
Summary: passagemath: Vectors, matrices, tensors, vector spaces, affine spaces, modules and algebras, additive groups, quadratic forms, homology, coding theory, matroids
|
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
|
7
|
-
License:
|
|
7
|
+
License-Expression: GPL-2.0-or-later
|
|
8
8
|
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
|
9
9
|
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
|
10
10
|
Project-URL: repo, https://github.com/passagemath/passagemath
|
|
11
|
-
Project-URL: documentation, https://
|
|
11
|
+
Project-URL: documentation, https://passagemath.org/docs/latest
|
|
12
12
|
Project-URL: homepage (upstream), https://www.sagemath.org
|
|
13
13
|
Project-URL: discourse, https://passagemath.discourse.group
|
|
14
14
|
Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
|
|
@@ -16,23 +16,25 @@ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
|
|
|
16
16
|
Classifier: Development Status :: 6 - Mature
|
|
17
17
|
Classifier: Intended Audience :: Education
|
|
18
18
|
Classifier: Intended Audience :: Science/Research
|
|
19
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
20
19
|
Classifier: Operating System :: POSIX
|
|
20
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
21
21
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
22
23
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
27
27
|
Classifier: Programming Language :: Python :: 3.13
|
|
28
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
29
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
30
|
-
Requires-Python: <3.
|
|
30
|
+
Requires-Python: <3.15,>=3.10
|
|
31
31
|
Description-Content-Type: text/x-rst
|
|
32
32
|
Requires-Dist: gmpy2~=2.1.b999
|
|
33
|
-
Requires-Dist: cysignals
|
|
33
|
+
Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
|
|
34
|
+
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
34
35
|
Requires-Dist: memory_allocator
|
|
35
|
-
Requires-Dist: passagemath-categories~=10.
|
|
36
|
+
Requires-Dist: passagemath-categories~=10.6.40.0
|
|
37
|
+
Requires-Dist: passagemath-environment~=10.6.40.0
|
|
36
38
|
Requires-Dist: mpmath<1.4,>=1.1.0
|
|
37
39
|
Provides-Extra: test
|
|
38
40
|
Requires-Dist: passagemath-repl; extra == "test"
|
|
@@ -123,80 +125,83 @@ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
|
123
125
|
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
124
126
|
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
125
127
|
|
|
126
|
-
The passagemath fork
|
|
127
|
-
|
|
128
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
129
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
130
|
+
It was created in October 2024 with the following goals:
|
|
128
131
|
|
|
129
|
-
- providing modularized installation with pip,
|
|
130
|
-
project started in 2020 in the Sage
|
|
131
|
-
codebase <https://github.com/sagemath/sage/issues/29705>`__,
|
|
132
|
+
- providing modularized installation with pip,
|
|
132
133
|
- establishing first-class membership in the scientific Python
|
|
133
134
|
ecosystem,
|
|
134
135
|
- giving `clear attribution of upstream
|
|
135
136
|
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
136
137
|
- providing independently usable Python interfaces to upstream
|
|
137
138
|
libraries,
|
|
138
|
-
-
|
|
139
|
+
- offering `platform portability and integration testing
|
|
139
140
|
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
140
141
|
to upstream projects,
|
|
141
142
|
- inviting collaborations with upstream projects,
|
|
142
143
|
- `building a professional, respectful, inclusive
|
|
143
144
|
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
145
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
146
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
144
147
|
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
145
148
|
serverless deployment with Javascript,
|
|
146
149
|
- developing a native Windows port.
|
|
147
150
|
|
|
148
|
-
`Full documentation <https://
|
|
151
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
149
152
|
available online.
|
|
150
153
|
|
|
151
|
-
passagemath attempts to support
|
|
152
|
-
|
|
153
|
-
virtualization.
|
|
154
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
155
|
+
all major Linux distributions and recent versions of macOS.
|
|
154
156
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
157
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
158
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
159
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
160
|
+
or virtualization.
|
|
161
|
+
|
|
162
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
158
163
|
|
|
159
164
|
|
|
160
165
|
About this pip-installable distribution package
|
|
161
166
|
-----------------------------------------------
|
|
162
167
|
|
|
163
|
-
This pip-installable
|
|
168
|
+
This pip-installable distribution ``passagemath-modules`` is a distribution of a part of the Sage Library. It provides a subset of the modules of the Sage library ("sagelib", `passagemath-standard`).
|
|
164
169
|
|
|
165
170
|
|
|
166
171
|
What is included
|
|
167
172
|
----------------
|
|
168
173
|
|
|
169
|
-
* `Vectors, Vector Spaces, Modules <https://
|
|
174
|
+
* `Vectors, Vector Spaces, Modules <https://passagemath.org/docs/latest/html/en/reference/modules/index.html>`_
|
|
170
175
|
|
|
171
|
-
* `Matrices and Spaces of Matrices <https://
|
|
176
|
+
* `Matrices and Spaces of Matrices <https://passagemath.org/docs/latest/html/en/reference/matrices/index.html>`_
|
|
172
177
|
|
|
173
178
|
* Fields of real and complex numbers in arbitrary precision floating point arithmetic (using MPFR, GSL, mpmath, MPC)
|
|
174
179
|
|
|
175
|
-
* `Free Modules with Combinatorial Bases <https://
|
|
180
|
+
* `Free Modules with Combinatorial Bases <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/free_module.html>`_
|
|
176
181
|
|
|
177
|
-
* `Tensor Modules <https://
|
|
182
|
+
* `Tensor Modules <https://passagemath.org/docs/latest/html/en/reference/tensor_free_modules/index.html>`_
|
|
178
183
|
|
|
179
|
-
* `Additive Abelian Groups <https://
|
|
184
|
+
* `Additive Abelian Groups <https://passagemath.org/docs/latest/html/en/reference/groups/sage/groups/additive_abelian/additive_abelian_group.html>`_
|
|
180
185
|
|
|
181
|
-
* `Matrix and Affine Groups <https://
|
|
186
|
+
* `Matrix and Affine Groups <https://passagemath.org/docs/latest/html/en/reference/groups/index.html#matrix-and-affine-groups>`_
|
|
182
187
|
|
|
183
|
-
* `Root Systems <https://
|
|
188
|
+
* `Root Systems <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/root_system/all.html#sage-combinat-root-system-all>`_
|
|
184
189
|
|
|
185
|
-
* `Quadratic Forms <https://
|
|
190
|
+
* `Quadratic Forms <https://passagemath.org/docs/latest/html/en/reference/quadratic_forms/index.html>`_
|
|
186
191
|
|
|
187
|
-
* `Ring Extensions <https://
|
|
192
|
+
* `Ring Extensions <https://passagemath.org/docs/latest/html/en/reference/rings/sage/rings/ring_extension.html>`_ and `Derivations <https://passagemath.org/docs/latest/html/en/reference/rings/sage/rings/derivation.html>`_
|
|
188
193
|
|
|
189
|
-
* `Clifford, Exterior <https://
|
|
194
|
+
* `Clifford, Exterior <https://passagemath.org/docs/latest/html/en/reference/algebras/sage/algebras/clifford_algebra.html>`_, and `Weyl Algebras <https://passagemath.org/docs/latest/html/en/reference/algebras/sage/algebras/weyl_algebra.html>`_
|
|
190
195
|
|
|
191
|
-
* `Chain Complexes, Homology <https://
|
|
196
|
+
* `Chain Complexes, Homology <https://passagemath.org/docs/latest/html/en/reference/homology/index.html>`_, `Free Resolutions <https://passagemath.org/docs/latest/html/en/reference/resolutions/index.html>`_
|
|
192
197
|
|
|
193
|
-
* `Matroid Theory <https://
|
|
198
|
+
* `Matroid Theory <https://passagemath.org/docs/latest/html/en/reference/matroids/index.html>`_
|
|
194
199
|
|
|
195
|
-
* `Coding Theory <https://
|
|
200
|
+
* `Coding Theory <https://passagemath.org/docs/latest/html/en/reference/coding/index.html>`_
|
|
196
201
|
|
|
197
|
-
* `Cryptography <https://
|
|
202
|
+
* `Cryptography <https://passagemath.org/docs/latest/html/en/reference/cryptography/index.html>`_
|
|
198
203
|
|
|
199
|
-
* `Probability Spaces and Distributions <https://
|
|
204
|
+
* `Probability Spaces and Distributions <https://passagemath.org/docs/latest/html/en/reference/probability/index.html>`_, `Statistics <https://passagemath.org/docs/latest/html/en/reference/stats/index.html>`_
|
|
200
205
|
|
|
201
206
|
|
|
202
207
|
Examples
|
|
@@ -206,7 +211,7 @@ A quick way to try it out interactively::
|
|
|
206
211
|
|
|
207
212
|
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-modules[test]" ipython
|
|
208
213
|
|
|
209
|
-
In [1]: from
|
|
214
|
+
In [1]: from passagemath_modules import *
|
|
210
215
|
|
|
211
216
|
In [2]: M = matroids.Wheel(5); M
|
|
212
217
|
Out[2]: Wheel(5): Regular matroid of rank 5 on 10 elements with 121 bases
|
|
@@ -223,24 +228,24 @@ A quick way to try it out interactively::
|
|
|
223
228
|
Available as extras, from other distributions
|
|
224
229
|
---------------------------------------------
|
|
225
230
|
|
|
226
|
-
``pip install "
|
|
231
|
+
``pip install "passagemath-modules[RDF,CDF]"``
|
|
227
232
|
Linear algebra over fields of real and complex numbers using NumPy
|
|
228
233
|
|
|
229
|
-
``pip install "
|
|
234
|
+
``pip install "passagemath-modules[RBF,CBF]"``
|
|
230
235
|
Linear algebra over fields of real and complex numbers with ball arithmetic using FLINT/arb
|
|
231
236
|
|
|
232
|
-
``pip install "
|
|
237
|
+
``pip install "passagemath-modules[GF,GF2,GF2e,GFpn]"``
|
|
233
238
|
Linear algebra over finite fields (various implementations)
|
|
234
239
|
|
|
235
|
-
``pip install "
|
|
240
|
+
``pip install "passagemath-modules[QQbar,NumberField,CyclotomicField]"``
|
|
236
241
|
Linear algebra over the algebraic numbers or number fields
|
|
237
242
|
|
|
238
|
-
``pip install "
|
|
243
|
+
``pip install "passagemath-modules[flint,fpylll,linbox]"``
|
|
239
244
|
Lattice basis reduction (LLL, BKZ)::
|
|
240
245
|
|
|
241
246
|
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-modules[flint,fpylll,linbox,test]" ipython
|
|
242
247
|
|
|
243
|
-
In [1]: from
|
|
248
|
+
In [1]: from passagemath_modules import *
|
|
244
249
|
|
|
245
250
|
In [2]: M = matrix(ZZ, [[1,2,3],[31,41,51],[101,201,301]])
|
|
246
251
|
|
|
@@ -250,16 +255,16 @@ Available as extras, from other distributions
|
|
|
250
255
|
[-1 0 1]
|
|
251
256
|
[ 1 1 1]
|
|
252
257
|
|
|
253
|
-
|
|
258
|
+
``pip install "passagemath-modules[padics]"``
|
|
254
259
|
Linear algebra over p-adic rings and fields
|
|
255
260
|
|
|
256
|
-
|
|
261
|
+
``pip install "passagemath-modules[combinat]"``
|
|
257
262
|
Modules and algebras with combinatorial bases; algebraic combinatorics
|
|
258
263
|
|
|
259
|
-
|
|
264
|
+
``pip install "passagemath-modules[invariant]"``
|
|
260
265
|
Submodules invariant under group actions
|
|
261
266
|
|
|
262
|
-
|
|
267
|
+
``pip install "passagemath-modules[standard]"``
|
|
263
268
|
All related features as in a standard installation of SageMath
|
|
264
269
|
|
|
265
270
|
|