passagemath-combinat 10.6.31rc3__cp314-cp314-musllinux_1_2_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.
Potentially problematic release.
This version of passagemath-combinat might be problematic. Click here for more details.
- passagemath_combinat-10.6.31rc3.dist-info/METADATA +159 -0
- passagemath_combinat-10.6.31rc3.dist-info/RECORD +399 -0
- passagemath_combinat-10.6.31rc3.dist-info/WHEEL +5 -0
- passagemath_combinat-10.6.31rc3.dist-info/top_level.txt +2 -0
- passagemath_combinat.libs/libgmp-0e7fc84e.so.10.5.0 +0 -0
- passagemath_combinat.libs/libsymmetrica-81fe8739.so.3.0.0 +0 -0
- sage/algebras/affine_nil_temperley_lieb.py +263 -0
- sage/algebras/all.py +25 -0
- sage/algebras/all__sagemath_combinat.py +35 -0
- sage/algebras/askey_wilson.py +935 -0
- sage/algebras/associated_graded.py +345 -0
- sage/algebras/cellular_basis.py +350 -0
- sage/algebras/cluster_algebra.py +2766 -0
- sage/algebras/down_up_algebra.py +860 -0
- sage/algebras/free_algebra.py +1698 -0
- sage/algebras/free_algebra_element.py +345 -0
- sage/algebras/free_algebra_quotient.py +405 -0
- sage/algebras/free_algebra_quotient_element.py +295 -0
- sage/algebras/free_zinbiel_algebra.py +885 -0
- sage/algebras/hall_algebra.py +783 -0
- sage/algebras/hecke_algebras/all.py +4 -0
- sage/algebras/hecke_algebras/ariki_koike_algebra.py +1796 -0
- sage/algebras/hecke_algebras/ariki_koike_specht_modules.py +475 -0
- sage/algebras/hecke_algebras/cubic_hecke_algebra.py +3520 -0
- sage/algebras/hecke_algebras/cubic_hecke_base_ring.py +1473 -0
- sage/algebras/hecke_algebras/cubic_hecke_matrix_rep.py +1079 -0
- sage/algebras/iwahori_hecke_algebra.py +3095 -0
- sage/algebras/jordan_algebra.py +1773 -0
- sage/algebras/lie_conformal_algebras/abelian_lie_conformal_algebra.py +113 -0
- sage/algebras/lie_conformal_algebras/affine_lie_conformal_algebra.py +156 -0
- sage/algebras/lie_conformal_algebras/all.py +18 -0
- sage/algebras/lie_conformal_algebras/bosonic_ghosts_lie_conformal_algebra.py +134 -0
- sage/algebras/lie_conformal_algebras/examples.py +43 -0
- sage/algebras/lie_conformal_algebras/fermionic_ghosts_lie_conformal_algebra.py +131 -0
- sage/algebras/lie_conformal_algebras/finitely_freely_generated_lca.py +139 -0
- sage/algebras/lie_conformal_algebras/free_bosons_lie_conformal_algebra.py +174 -0
- sage/algebras/lie_conformal_algebras/free_fermions_lie_conformal_algebra.py +167 -0
- sage/algebras/lie_conformal_algebras/freely_generated_lie_conformal_algebra.py +107 -0
- sage/algebras/lie_conformal_algebras/graded_lie_conformal_algebra.py +135 -0
- sage/algebras/lie_conformal_algebras/lie_conformal_algebra.py +353 -0
- sage/algebras/lie_conformal_algebras/lie_conformal_algebra_element.py +236 -0
- sage/algebras/lie_conformal_algebras/lie_conformal_algebra_with_basis.py +78 -0
- sage/algebras/lie_conformal_algebras/lie_conformal_algebra_with_structure_coefs.py +328 -0
- sage/algebras/lie_conformal_algebras/n2_lie_conformal_algebra.py +117 -0
- sage/algebras/lie_conformal_algebras/neveu_schwarz_lie_conformal_algebra.py +86 -0
- sage/algebras/lie_conformal_algebras/virasoro_lie_conformal_algebra.py +82 -0
- sage/algebras/lie_conformal_algebras/weyl_lie_conformal_algebra.py +205 -0
- sage/algebras/nil_coxeter_algebra.py +191 -0
- sage/algebras/q_commuting_polynomials.py +673 -0
- sage/algebras/q_system.py +608 -0
- sage/algebras/quantum_clifford.py +959 -0
- sage/algebras/quantum_groups/ace_quantum_onsager.py +693 -0
- sage/algebras/quantum_groups/all.py +9 -0
- sage/algebras/quantum_groups/fock_space.py +2219 -0
- sage/algebras/quantum_groups/q_numbers.py +207 -0
- sage/algebras/quantum_groups/quantum_group_gap.py +2695 -0
- sage/algebras/quantum_groups/representations.py +591 -0
- sage/algebras/quantum_matrix_coordinate_algebra.py +1006 -0
- sage/algebras/quantum_oscillator.py +623 -0
- sage/algebras/quaternion_algebra.py +20 -0
- sage/algebras/quaternion_algebra_element.py +55 -0
- sage/algebras/rational_cherednik_algebra.py +525 -0
- sage/algebras/schur_algebra.py +670 -0
- sage/algebras/shuffle_algebra.py +1011 -0
- sage/algebras/splitting_algebra.py +779 -0
- sage/algebras/tensor_algebra.py +709 -0
- sage/algebras/yangian.py +1082 -0
- sage/algebras/yokonuma_hecke_algebra.py +1018 -0
- sage/all__sagemath_combinat.py +35 -0
- sage/combinat/SJT.py +255 -0
- sage/combinat/affine_permutation.py +2405 -0
- sage/combinat/algebraic_combinatorics.py +55 -0
- sage/combinat/all.py +53 -0
- sage/combinat/all__sagemath_combinat.py +195 -0
- sage/combinat/alternating_sign_matrix.py +2063 -0
- sage/combinat/baxter_permutations.py +346 -0
- sage/combinat/bijectionist.py +3220 -0
- sage/combinat/binary_recurrence_sequences.py +1180 -0
- sage/combinat/blob_algebra.py +685 -0
- sage/combinat/catalog_partitions.py +27 -0
- sage/combinat/chas/all.py +23 -0
- sage/combinat/chas/fsym.py +1180 -0
- sage/combinat/chas/wqsym.py +2601 -0
- sage/combinat/cluster_complex.py +326 -0
- sage/combinat/colored_permutations.py +2039 -0
- sage/combinat/colored_permutations_representations.py +964 -0
- sage/combinat/composition_signed.py +142 -0
- sage/combinat/composition_tableau.py +855 -0
- sage/combinat/constellation.py +1729 -0
- sage/combinat/core.py +751 -0
- sage/combinat/counting.py +12 -0
- sage/combinat/crystals/affine.py +742 -0
- sage/combinat/crystals/affine_factorization.py +518 -0
- sage/combinat/crystals/affinization.py +331 -0
- sage/combinat/crystals/alcove_path.py +2013 -0
- sage/combinat/crystals/all.py +22 -0
- sage/combinat/crystals/bkk_crystals.py +141 -0
- sage/combinat/crystals/catalog.py +115 -0
- sage/combinat/crystals/catalog_elementary_crystals.py +18 -0
- sage/combinat/crystals/catalog_infinity_crystals.py +33 -0
- sage/combinat/crystals/catalog_kirillov_reshetikhin.py +18 -0
- sage/combinat/crystals/crystals.py +257 -0
- sage/combinat/crystals/direct_sum.py +260 -0
- sage/combinat/crystals/elementary_crystals.py +1251 -0
- sage/combinat/crystals/fast_crystals.py +441 -0
- sage/combinat/crystals/fully_commutative_stable_grothendieck.py +1205 -0
- sage/combinat/crystals/generalized_young_walls.py +1076 -0
- sage/combinat/crystals/highest_weight_crystals.py +436 -0
- sage/combinat/crystals/induced_structure.py +695 -0
- sage/combinat/crystals/infinity_crystals.py +730 -0
- sage/combinat/crystals/kac_modules.py +863 -0
- sage/combinat/crystals/kirillov_reshetikhin.py +4196 -0
- sage/combinat/crystals/kyoto_path_model.py +497 -0
- sage/combinat/crystals/letters.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/crystals/letters.pxd +79 -0
- sage/combinat/crystals/letters.pyx +3056 -0
- sage/combinat/crystals/littelmann_path.py +1518 -0
- sage/combinat/crystals/monomial_crystals.py +1262 -0
- sage/combinat/crystals/multisegments.py +462 -0
- sage/combinat/crystals/mv_polytopes.py +467 -0
- sage/combinat/crystals/pbw_crystal.py +511 -0
- sage/combinat/crystals/pbw_datum.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/crystals/pbw_datum.pxd +4 -0
- sage/combinat/crystals/pbw_datum.pyx +487 -0
- sage/combinat/crystals/polyhedral_realization.py +372 -0
- sage/combinat/crystals/spins.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/crystals/spins.pxd +21 -0
- sage/combinat/crystals/spins.pyx +756 -0
- sage/combinat/crystals/star_crystal.py +290 -0
- sage/combinat/crystals/subcrystal.py +464 -0
- sage/combinat/crystals/tensor_product.py +1177 -0
- sage/combinat/crystals/tensor_product_element.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/crystals/tensor_product_element.pxd +35 -0
- sage/combinat/crystals/tensor_product_element.pyx +1870 -0
- sage/combinat/crystals/virtual_crystal.py +420 -0
- sage/combinat/cyclic_sieving_phenomenon.py +204 -0
- sage/combinat/debruijn_sequence.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/debruijn_sequence.pyx +355 -0
- sage/combinat/decorated_permutation.py +270 -0
- sage/combinat/degree_sequences.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/degree_sequences.pyx +588 -0
- sage/combinat/derangements.py +527 -0
- sage/combinat/descent_algebra.py +1008 -0
- sage/combinat/diagram.py +1551 -0
- sage/combinat/diagram_algebras.py +5886 -0
- sage/combinat/dyck_word.py +4349 -0
- sage/combinat/e_one_star.py +1623 -0
- sage/combinat/enumerated_sets.py +123 -0
- sage/combinat/expnums.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/expnums.pyx +148 -0
- sage/combinat/fast_vector_partitions.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/fast_vector_partitions.pyx +346 -0
- sage/combinat/fqsym.py +1977 -0
- sage/combinat/free_dendriform_algebra.py +954 -0
- sage/combinat/free_prelie_algebra.py +1141 -0
- sage/combinat/fully_commutative_elements.py +1077 -0
- sage/combinat/fully_packed_loop.py +1523 -0
- sage/combinat/gelfand_tsetlin_patterns.py +1409 -0
- sage/combinat/gray_codes.py +311 -0
- sage/combinat/grossman_larson_algebras.py +667 -0
- sage/combinat/growth.py +4352 -0
- sage/combinat/hall_polynomial.py +188 -0
- sage/combinat/hillman_grassl.py +866 -0
- sage/combinat/integer_matrices.py +329 -0
- sage/combinat/integer_vectors_mod_permgroup.py +1238 -0
- sage/combinat/k_tableau.py +4564 -0
- sage/combinat/kazhdan_lusztig.py +215 -0
- sage/combinat/key_polynomial.py +885 -0
- sage/combinat/knutson_tao_puzzles.py +2286 -0
- sage/combinat/lr_tableau.py +311 -0
- sage/combinat/matrices/all.py +24 -0
- sage/combinat/matrices/hadamard_matrix.py +3790 -0
- sage/combinat/matrices/latin.py +2912 -0
- sage/combinat/misc.py +401 -0
- sage/combinat/multiset_partition_into_sets_ordered.py +3541 -0
- sage/combinat/ncsf_qsym/all.py +21 -0
- sage/combinat/ncsf_qsym/combinatorics.py +317 -0
- sage/combinat/ncsf_qsym/generic_basis_code.py +1427 -0
- sage/combinat/ncsf_qsym/ncsf.py +5637 -0
- sage/combinat/ncsf_qsym/qsym.py +4053 -0
- sage/combinat/ncsf_qsym/tutorial.py +447 -0
- sage/combinat/ncsym/all.py +21 -0
- sage/combinat/ncsym/bases.py +855 -0
- sage/combinat/ncsym/dual.py +593 -0
- sage/combinat/ncsym/ncsym.py +2076 -0
- sage/combinat/necklace.py +551 -0
- sage/combinat/non_decreasing_parking_function.py +634 -0
- sage/combinat/nu_dyck_word.py +1474 -0
- sage/combinat/output.py +861 -0
- sage/combinat/parallelogram_polyomino.py +4326 -0
- sage/combinat/parking_functions.py +1602 -0
- sage/combinat/partition_algebra.py +1998 -0
- sage/combinat/partition_kleshchev.py +1982 -0
- sage/combinat/partition_shifting_algebras.py +584 -0
- sage/combinat/partition_tuple.py +3114 -0
- sage/combinat/path_tableaux/all.py +13 -0
- sage/combinat/path_tableaux/catalog.py +29 -0
- sage/combinat/path_tableaux/dyck_path.py +380 -0
- sage/combinat/path_tableaux/frieze.py +476 -0
- sage/combinat/path_tableaux/path_tableau.py +728 -0
- sage/combinat/path_tableaux/semistandard.py +510 -0
- sage/combinat/perfect_matching.py +779 -0
- sage/combinat/plane_partition.py +3300 -0
- sage/combinat/q_bernoulli.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/q_bernoulli.pyx +128 -0
- sage/combinat/quickref.py +81 -0
- sage/combinat/recognizable_series.py +2051 -0
- sage/combinat/regular_sequence.py +4316 -0
- sage/combinat/regular_sequence_bounded.py +543 -0
- sage/combinat/restricted_growth.py +81 -0
- sage/combinat/ribbon.py +20 -0
- sage/combinat/ribbon_shaped_tableau.py +489 -0
- sage/combinat/ribbon_tableau.py +1180 -0
- sage/combinat/rigged_configurations/all.py +46 -0
- sage/combinat/rigged_configurations/bij_abstract_class.py +548 -0
- sage/combinat/rigged_configurations/bij_infinity.py +370 -0
- sage/combinat/rigged_configurations/bij_type_A.py +163 -0
- sage/combinat/rigged_configurations/bij_type_A2_dual.py +338 -0
- sage/combinat/rigged_configurations/bij_type_A2_even.py +218 -0
- sage/combinat/rigged_configurations/bij_type_A2_odd.py +199 -0
- sage/combinat/rigged_configurations/bij_type_B.py +900 -0
- sage/combinat/rigged_configurations/bij_type_C.py +267 -0
- sage/combinat/rigged_configurations/bij_type_D.py +771 -0
- sage/combinat/rigged_configurations/bij_type_D_tri.py +392 -0
- sage/combinat/rigged_configurations/bij_type_D_twisted.py +576 -0
- sage/combinat/rigged_configurations/bij_type_E67.py +402 -0
- sage/combinat/rigged_configurations/bijection.py +143 -0
- sage/combinat/rigged_configurations/kleber_tree.py +1475 -0
- sage/combinat/rigged_configurations/kr_tableaux.py +1898 -0
- sage/combinat/rigged_configurations/rc_crystal.py +461 -0
- sage/combinat/rigged_configurations/rc_infinity.py +540 -0
- sage/combinat/rigged_configurations/rigged_configuration_element.py +2403 -0
- sage/combinat/rigged_configurations/rigged_configurations.py +1918 -0
- sage/combinat/rigged_configurations/rigged_partition.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/rigged_configurations/rigged_partition.pxd +15 -0
- sage/combinat/rigged_configurations/rigged_partition.pyx +680 -0
- sage/combinat/rigged_configurations/tensor_product_kr_tableaux.py +499 -0
- sage/combinat/rigged_configurations/tensor_product_kr_tableaux_element.py +428 -0
- sage/combinat/rsk.py +3438 -0
- sage/combinat/schubert_polynomial.py +508 -0
- sage/combinat/set_partition.py +3318 -0
- sage/combinat/set_partition_iterator.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/set_partition_iterator.pyx +136 -0
- sage/combinat/set_partition_ordered.py +1590 -0
- sage/combinat/sf/abreu_nigro.py +346 -0
- sage/combinat/sf/all.py +52 -0
- sage/combinat/sf/character.py +576 -0
- sage/combinat/sf/classical.py +319 -0
- sage/combinat/sf/dual.py +996 -0
- sage/combinat/sf/elementary.py +549 -0
- sage/combinat/sf/hall_littlewood.py +1028 -0
- sage/combinat/sf/hecke.py +336 -0
- sage/combinat/sf/homogeneous.py +464 -0
- sage/combinat/sf/jack.py +1428 -0
- sage/combinat/sf/k_dual.py +1458 -0
- sage/combinat/sf/kfpoly.py +447 -0
- sage/combinat/sf/llt.py +789 -0
- sage/combinat/sf/macdonald.py +2019 -0
- sage/combinat/sf/monomial.py +525 -0
- sage/combinat/sf/multiplicative.py +113 -0
- sage/combinat/sf/new_kschur.py +1786 -0
- sage/combinat/sf/ns_macdonald.py +964 -0
- sage/combinat/sf/orthogonal.py +246 -0
- sage/combinat/sf/orthotriang.py +355 -0
- sage/combinat/sf/powersum.py +963 -0
- sage/combinat/sf/schur.py +880 -0
- sage/combinat/sf/sf.py +1653 -0
- sage/combinat/sf/sfa.py +7053 -0
- sage/combinat/sf/symplectic.py +253 -0
- sage/combinat/sf/witt.py +721 -0
- sage/combinat/shifted_primed_tableau.py +2735 -0
- sage/combinat/shuffle.py +830 -0
- sage/combinat/sidon_sets.py +146 -0
- sage/combinat/similarity_class_type.py +1721 -0
- sage/combinat/sine_gordon.py +618 -0
- sage/combinat/six_vertex_model.py +784 -0
- sage/combinat/skew_partition.py +2053 -0
- sage/combinat/skew_tableau.py +2989 -0
- sage/combinat/sloane_functions.py +8935 -0
- sage/combinat/specht_module.py +1403 -0
- sage/combinat/species/all.py +48 -0
- sage/combinat/species/characteristic_species.py +321 -0
- sage/combinat/species/composition_species.py +273 -0
- sage/combinat/species/cycle_species.py +284 -0
- sage/combinat/species/empty_species.py +155 -0
- sage/combinat/species/functorial_composition_species.py +148 -0
- sage/combinat/species/generating_series.py +673 -0
- sage/combinat/species/library.py +148 -0
- sage/combinat/species/linear_order_species.py +169 -0
- sage/combinat/species/misc.py +83 -0
- sage/combinat/species/partition_species.py +290 -0
- sage/combinat/species/permutation_species.py +268 -0
- sage/combinat/species/product_species.py +423 -0
- sage/combinat/species/recursive_species.py +476 -0
- sage/combinat/species/set_species.py +192 -0
- sage/combinat/species/species.py +820 -0
- sage/combinat/species/structure.py +539 -0
- sage/combinat/species/subset_species.py +243 -0
- sage/combinat/species/sum_species.py +225 -0
- sage/combinat/subword.py +564 -0
- sage/combinat/subword_complex.py +2122 -0
- sage/combinat/subword_complex_c.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/subword_complex_c.pyx +119 -0
- sage/combinat/super_tableau.py +821 -0
- sage/combinat/superpartition.py +1154 -0
- sage/combinat/symmetric_group_algebra.py +3774 -0
- sage/combinat/symmetric_group_representations.py +1830 -0
- sage/combinat/t_sequences.py +877 -0
- sage/combinat/tableau.py +9506 -0
- sage/combinat/tableau_residues.py +860 -0
- sage/combinat/tableau_tuple.py +5353 -0
- sage/combinat/tiling.py +2432 -0
- sage/combinat/triangles_FHM.py +777 -0
- sage/combinat/tutorial.py +1857 -0
- sage/combinat/vector_partition.py +337 -0
- sage/combinat/words/abstract_word.py +1722 -0
- sage/combinat/words/all.py +59 -0
- sage/combinat/words/alphabet.py +268 -0
- sage/combinat/words/finite_word.py +7201 -0
- sage/combinat/words/infinite_word.py +113 -0
- sage/combinat/words/lyndon_word.py +652 -0
- sage/combinat/words/morphic.py +351 -0
- sage/combinat/words/morphism.py +3878 -0
- sage/combinat/words/paths.py +2932 -0
- sage/combinat/words/shuffle_product.py +278 -0
- sage/combinat/words/suffix_trees.py +1873 -0
- sage/combinat/words/word.py +765 -0
- sage/combinat/words/word_char.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/words/word_char.pyx +847 -0
- sage/combinat/words/word_datatypes.cpython-314-x86_64-linux-musl.so +0 -0
- sage/combinat/words/word_datatypes.pxd +4 -0
- sage/combinat/words/word_datatypes.pyx +1067 -0
- sage/combinat/words/word_generators.py +2026 -0
- sage/combinat/words/word_infinite_datatypes.py +1218 -0
- sage/combinat/words/word_options.py +99 -0
- sage/combinat/words/words.py +2396 -0
- sage/data_structures/all__sagemath_combinat.py +1 -0
- sage/databases/all__sagemath_combinat.py +13 -0
- sage/databases/findstat.py +4897 -0
- sage/databases/oeis.py +2058 -0
- sage/databases/sloane.py +393 -0
- sage/dynamics/all__sagemath_combinat.py +14 -0
- sage/dynamics/cellular_automata/all.py +7 -0
- sage/dynamics/cellular_automata/catalog.py +34 -0
- sage/dynamics/cellular_automata/elementary.py +612 -0
- sage/dynamics/cellular_automata/glca.py +477 -0
- sage/dynamics/cellular_automata/solitons.py +1463 -0
- sage/dynamics/finite_dynamical_system.py +1249 -0
- sage/dynamics/finite_dynamical_system_catalog.py +382 -0
- sage/games/all.py +7 -0
- sage/games/hexad.py +704 -0
- sage/games/quantumino.py +591 -0
- sage/games/sudoku.py +889 -0
- sage/games/sudoku_backtrack.cpython-314-x86_64-linux-musl.so +0 -0
- sage/games/sudoku_backtrack.pyx +189 -0
- sage/groups/all__sagemath_combinat.py +1 -0
- sage/groups/indexed_free_group.py +489 -0
- sage/libs/all__sagemath_combinat.py +6 -0
- sage/libs/lrcalc/__init__.py +1 -0
- sage/libs/lrcalc/lrcalc.py +525 -0
- sage/libs/symmetrica/__init__.py +7 -0
- sage/libs/symmetrica/all.py +101 -0
- sage/libs/symmetrica/kostka.pxi +168 -0
- sage/libs/symmetrica/part.pxi +193 -0
- sage/libs/symmetrica/plet.pxi +42 -0
- sage/libs/symmetrica/sab.pxi +196 -0
- sage/libs/symmetrica/sb.pxi +332 -0
- sage/libs/symmetrica/sc.pxi +192 -0
- sage/libs/symmetrica/schur.pxi +956 -0
- sage/libs/symmetrica/symmetrica.cpython-314-x86_64-linux-musl.so +0 -0
- sage/libs/symmetrica/symmetrica.pxi +1172 -0
- sage/libs/symmetrica/symmetrica.pyx +39 -0
- sage/monoids/all.py +13 -0
- sage/monoids/automatic_semigroup.py +1054 -0
- sage/monoids/free_abelian_monoid.py +315 -0
- sage/monoids/free_abelian_monoid_element.cpython-314-x86_64-linux-musl.so +0 -0
- sage/monoids/free_abelian_monoid_element.pxd +16 -0
- sage/monoids/free_abelian_monoid_element.pyx +397 -0
- sage/monoids/free_monoid.py +335 -0
- sage/monoids/free_monoid_element.py +431 -0
- sage/monoids/hecke_monoid.py +65 -0
- sage/monoids/string_monoid.py +817 -0
- sage/monoids/string_monoid_element.py +547 -0
- sage/monoids/string_ops.py +143 -0
- sage/monoids/trace_monoid.py +972 -0
- sage/rings/all__sagemath_combinat.py +2 -0
- sage/sat/all.py +4 -0
- sage/sat/boolean_polynomials.py +405 -0
- sage/sat/converters/__init__.py +6 -0
- sage/sat/converters/anf2cnf.py +14 -0
- sage/sat/converters/polybori.py +611 -0
- sage/sat/solvers/__init__.py +5 -0
- sage/sat/solvers/cryptominisat.py +287 -0
- sage/sat/solvers/dimacs.py +783 -0
- sage/sat/solvers/picosat.py +228 -0
- sage/sat/solvers/sat_lp.py +156 -0
- sage/sat/solvers/satsolver.cpython-314-x86_64-linux-musl.so +0 -0
- sage/sat/solvers/satsolver.pxd +3 -0
- sage/sat/solvers/satsolver.pyx +405 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: passagemath-combinat
|
|
3
|
+
Version: 10.6.31rc3
|
|
4
|
+
Summary: passagemath: Algebraic combinatorics, combinatorial representation theory
|
|
5
|
+
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
|
+
Maintainer: Matthias Köppe, passagemath contributors
|
|
7
|
+
License-Expression: GPL-2.0-or-later
|
|
8
|
+
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
|
9
|
+
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
|
10
|
+
Project-URL: repo, https://github.com/passagemath/passagemath
|
|
11
|
+
Project-URL: documentation, https://passagemath.org/docs/latest
|
|
12
|
+
Project-URL: homepage (upstream), https://www.sagemath.org
|
|
13
|
+
Project-URL: discourse, https://passagemath.discourse.group
|
|
14
|
+
Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
|
|
15
|
+
Project-URL: tracker, https://github.com/passagemath/passagemath/issues
|
|
16
|
+
Classifier: Development Status :: 6 - Mature
|
|
17
|
+
Classifier: Intended Audience :: Education
|
|
18
|
+
Classifier: Intended Audience :: Science/Research
|
|
19
|
+
Classifier: Operating System :: POSIX
|
|
20
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
21
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
23
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
30
|
+
Requires-Python: <3.15,>=3.10
|
|
31
|
+
Description-Content-Type: text/x-rst
|
|
32
|
+
Requires-Dist: gmpy2~=2.1.b999
|
|
33
|
+
Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
|
|
34
|
+
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
35
|
+
Requires-Dist: memory_allocator
|
|
36
|
+
Requires-Dist: passagemath-categories==10.6.31rc3
|
|
37
|
+
Requires-Dist: passagemath-environment==10.6.31rc3
|
|
38
|
+
Provides-Extra: test
|
|
39
|
+
Requires-Dist: passagemath-repl; extra == "test"
|
|
40
|
+
Provides-Extra: glucose
|
|
41
|
+
Requires-Dist: passagemath-glucose; extra == "glucose"
|
|
42
|
+
Provides-Extra: kissat
|
|
43
|
+
Requires-Dist: passagemath-kissat; extra == "kissat"
|
|
44
|
+
Provides-Extra: lrcalc
|
|
45
|
+
Requires-Dist: lrcalc; extra == "lrcalc"
|
|
46
|
+
Provides-Extra: symmetrica
|
|
47
|
+
Provides-Extra: graphs
|
|
48
|
+
Requires-Dist: passagemath-graphs; extra == "graphs"
|
|
49
|
+
Provides-Extra: modules
|
|
50
|
+
Requires-Dist: passagemath-modules; extra == "modules"
|
|
51
|
+
Provides-Extra: findstat
|
|
52
|
+
Requires-Dist: requests>=2.13.0; extra == "findstat"
|
|
53
|
+
Provides-Extra: standard
|
|
54
|
+
Requires-Dist: passagemath-combinat[findstat,graphs,lrcalc,modules,symmetrica]; extra == "standard"
|
|
55
|
+
|
|
56
|
+
======================================================================================================
|
|
57
|
+
passagemath: Algebraic combinatorics, combinatorial representation theory
|
|
58
|
+
======================================================================================================
|
|
59
|
+
|
|
60
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
61
|
+
source mathematical software in Python, released under the GNU General
|
|
62
|
+
Public Licence GPLv2+.
|
|
63
|
+
|
|
64
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
65
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
66
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
67
|
+
|
|
68
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
69
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
70
|
+
It was created in October 2024 with the following goals:
|
|
71
|
+
|
|
72
|
+
- providing modularized installation with pip,
|
|
73
|
+
- establishing first-class membership in the scientific Python
|
|
74
|
+
ecosystem,
|
|
75
|
+
- giving `clear attribution of upstream
|
|
76
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
77
|
+
- providing independently usable Python interfaces to upstream
|
|
78
|
+
libraries,
|
|
79
|
+
- offering `platform portability and integration testing
|
|
80
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
81
|
+
to upstream projects,
|
|
82
|
+
- inviting collaborations with upstream projects,
|
|
83
|
+
- `building a professional, respectful, inclusive
|
|
84
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
85
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
86
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
87
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
88
|
+
serverless deployment with Javascript,
|
|
89
|
+
- developing a native Windows port.
|
|
90
|
+
|
|
91
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
92
|
+
available online.
|
|
93
|
+
|
|
94
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
95
|
+
all major Linux distributions and recent versions of macOS.
|
|
96
|
+
|
|
97
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
98
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
99
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
100
|
+
or virtualization.
|
|
101
|
+
|
|
102
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
About this pip-installable distribution package
|
|
106
|
+
-----------------------------------------------
|
|
107
|
+
|
|
108
|
+
This pip-installable source distribution ``passagemath-combinat`` is a distribution of a part of the Sage library. It provides a subset of the modules of the Sage library ("sagelib", ``passagemath-standard``).
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
What is included
|
|
112
|
+
----------------
|
|
113
|
+
|
|
114
|
+
* `Enumerative Combinatorics <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/enumerated_sets.html#sage-combinat-enumerated-sets>`_: `Partitions, Tableaux <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/catalog_partitions.html>`_
|
|
115
|
+
|
|
116
|
+
* `Combinatorics on Words <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/words/all.html#sage-combinat-words-all>`_, `Free Monoids <https://passagemath.org/docs/latest/html/en/reference/monoids/index.html>`_, `Automatic Semigroups <https://passagemath.org/docs/latest/html/en/reference/monoids/sage/monoids/automatic_semigroup.html>`_
|
|
117
|
+
|
|
118
|
+
* `Symmetric Functions <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/sf/all.html#sage-combinat-sf-all>`_, other `Algebras with combinatorial bases <https://passagemath.org/docs/latest/html/en/reference/algebras/index.html>`_
|
|
119
|
+
|
|
120
|
+
* see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-combinat/MANIFEST.in
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
Examples
|
|
124
|
+
--------
|
|
125
|
+
|
|
126
|
+
A quick way to try it out interactively::
|
|
127
|
+
|
|
128
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-combinat[test]" ipython
|
|
129
|
+
|
|
130
|
+
In [1]: from sage.all__sagemath_combinat import *
|
|
131
|
+
|
|
132
|
+
In [2]: RowStandardTableaux([3,2,1]).cardinality()
|
|
133
|
+
Out[2]: 60
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
Available as extras, from other distribution packages
|
|
137
|
+
-----------------------------------------------------
|
|
138
|
+
|
|
139
|
+
* `passagemath-graphs <https://pypi.org/project/passagemath-graphs>`_:
|
|
140
|
+
Graphs, posets, finite state machines, combinatorial designs, incidence structures, quivers
|
|
141
|
+
|
|
142
|
+
* `passagemath-modules <https://pypi.org/project/passagemath-modules>`_:
|
|
143
|
+
Modules and algebras, root systems, coding theory
|
|
144
|
+
|
|
145
|
+
* `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra>`_:
|
|
146
|
+
Polyhedra, lattice points, hyperplane arrangements
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
Development
|
|
150
|
+
-----------
|
|
151
|
+
|
|
152
|
+
::
|
|
153
|
+
|
|
154
|
+
$ git clone --origin passagemath https://github.com/passagemath/passagemath.git
|
|
155
|
+
$ cd passagemath
|
|
156
|
+
passagemath $ ./bootstrap
|
|
157
|
+
passagemath $ python3 -m venv combinat-venv
|
|
158
|
+
passagemath $ source combinat-venv/bin/activate
|
|
159
|
+
(combinat-venv) passagemath $ pip install -v -e pkgs/sagemath-combinat
|
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
passagemath_combinat.libs/libgmp-0e7fc84e.so.10.5.0,sha256=19mj7ISusOKPTVdhqjzZ-Ts-9Qf82f4a_8Sslp-ypCg,773097
|
|
2
|
+
passagemath_combinat.libs/libsymmetrica-81fe8739.so.3.0.0,sha256=cGlWZVvtaxPqcIqIeU79DpM7mdA1KlmOPntRvWrbNd8,28419801
|
|
3
|
+
sage/all__sagemath_combinat.py,sha256=dneDbuPE3vaqoCddzxe4wJY-h2Z5rRJETKsZowOko0o,1056
|
|
4
|
+
sage/algebras/affine_nil_temperley_lieb.py,sha256=vPc4AxuGzTvKWlLaCDrzeiryF1CZTJuTaEgKYZ-TQyA,8676
|
|
5
|
+
sage/algebras/all.py,sha256=3FXAwnm-BR9ZSBjVUkK_-mMllV4xMveY_lEYcm2aScQ,961
|
|
6
|
+
sage/algebras/all__sagemath_combinat.py,sha256=0FZwVvEEKZmjSdf_zyODSvi6gj-D9y5chZ6oTPyiWc0,1189
|
|
7
|
+
sage/algebras/askey_wilson.py,sha256=0nPANBUnMqlaJ1KXxOOv3MjsBYb3TyUvrbNezOn6uFU,33440
|
|
8
|
+
sage/algebras/associated_graded.py,sha256=nq7Uob314irzVDe835CQ7mlDE65d0PXs6qmmUlUiBcA,12229
|
|
9
|
+
sage/algebras/cellular_basis.py,sha256=P48yArSGH224K42nC20CBcETGtg44IK17-16FBVH-QU,11433
|
|
10
|
+
sage/algebras/cluster_algebra.py,sha256=Z9nS_cIKI_Tvq8hJLO0jAiqJ7HPm2WqNnl_MaQtIhUw,96660
|
|
11
|
+
sage/algebras/down_up_algebra.py,sha256=OIjacjCkd-ZcHsFn5wjUgxFgEHrFwPMiT8A0iFv9PbA,28993
|
|
12
|
+
sage/algebras/free_algebra.py,sha256=hBgGbFxnMqKPQIceYAuFPMqlqbiM-l9EYt3OznpTzJc,57713
|
|
13
|
+
sage/algebras/free_algebra_element.py,sha256=xJ-fi58ckxi27h4xMbVgwC-2cXkxM6-S1QuewsE3g5Q,10248
|
|
14
|
+
sage/algebras/free_algebra_quotient.py,sha256=FPl1UGZh9RY8Ukpb7HTHKJPdVYQrVm70ktHeEhljVkc,13002
|
|
15
|
+
sage/algebras/free_algebra_quotient_element.py,sha256=Zth4xrbht_3YfzAT59bRwrJ6AWEwYRSzxbeQuQndKuk,9817
|
|
16
|
+
sage/algebras/free_zinbiel_algebra.py,sha256=xHIs1TBDAoo9nXi-uu5MeTSXLU1gFtZZNH_iZ1Z4Qmo,28382
|
|
17
|
+
sage/algebras/hall_algebra.py,sha256=bbR1padTgDU-bmIsB2nRJE9z6vRX4w2Hy6LhxPUW14E,27527
|
|
18
|
+
sage/algebras/iwahori_hecke_algebra.py,sha256=N7_-KuchtfIk3MyuBUHz47OYZuenfnWPRnZ5shb42bk,123063
|
|
19
|
+
sage/algebras/jordan_algebra.py,sha256=rzBaT7jI_l-V2lf4lJqZbYn4-EoL3_hgDSxVsVGkIok,55063
|
|
20
|
+
sage/algebras/nil_coxeter_algebra.py,sha256=TEEebNBA_qmAXhoimZ3cse7oK4yOIaw6c8MzVMn6oJo,7554
|
|
21
|
+
sage/algebras/q_commuting_polynomials.py,sha256=xbZ1rI_YiqQuyZcXR1VXxHzRnqiDuZ5-IoS0RGdXdbY,21582
|
|
22
|
+
sage/algebras/q_system.py,sha256=68wIi7Az-t7BTRbpw7_NPB6gaua55LKqAobhsRDn4DE,19584
|
|
23
|
+
sage/algebras/quantum_clifford.py,sha256=ALTLcl6dzDr1CbJEeiaDqKd-GUNeJOX3HtRqi4LmRYQ,32080
|
|
24
|
+
sage/algebras/quantum_matrix_coordinate_algebra.py,sha256=XZ1CynCarcBDp0l_QpUDRs-lTm_fMxc9sbUBwcxAxiE,33956
|
|
25
|
+
sage/algebras/quantum_oscillator.py,sha256=87zXFUsa-x-FhXqjtVhfAKMPZs52RB1ZGgtIwRk1nZo,19955
|
|
26
|
+
sage/algebras/quaternion_algebra.py,sha256=Jr1Jc_JvfREfcgAEy4GshU6GZU_Ke4xFvl6VqHrf8I8,741
|
|
27
|
+
sage/algebras/quaternion_algebra_element.py,sha256=LRK-brtwO6K3PTlJPULVcz99g14eLiBJRSgjWOArW_g,2268
|
|
28
|
+
sage/algebras/rational_cherednik_algebra.py,sha256=TnSkQhZfWD2Tk6kbMMwF9MzBvVsMCXHkl52xtx4hwAo,19334
|
|
29
|
+
sage/algebras/schur_algebra.py,sha256=dS2gxj-RxCUIBIW81Fg6tILQ4HkJVKQSPjOHJJMPim4,22835
|
|
30
|
+
sage/algebras/shuffle_algebra.py,sha256=rr3wH8M_C0OnEJQ2hHuKavjM-AAb_aaIyFjmvrPKF7A,31379
|
|
31
|
+
sage/algebras/splitting_algebra.py,sha256=NZeXS6-hRqsSQHhg6gUesdRjt3411Cri-dmKFGjMcWA,32449
|
|
32
|
+
sage/algebras/tensor_algebra.py,sha256=DMn4CccStdWrAL8bXKD7ns-H9hUxtXKOr5ChzA58ECM,24537
|
|
33
|
+
sage/algebras/yangian.py,sha256=RmtQwrmkUIk_dxCUdqN1M8E4CudMhvZ9Qbq2JSSFTAM,38633
|
|
34
|
+
sage/algebras/yokonuma_hecke_algebra.py,sha256=FGQ6HQCS5G9XgbVGvXUoku2WmI1yly69tUJWEIIFxXg,33472
|
|
35
|
+
sage/algebras/hecke_algebras/all.py,sha256=F2KiJxrkpWAWx91QJqQxQtwC3tOm2vP8_ulsnHFnT_E,70
|
|
36
|
+
sage/algebras/hecke_algebras/ariki_koike_algebra.py,sha256=z7xC1ZwUldWE4VBm3DpfRET9JWQI0jN4p13-TWrtCmw,70081
|
|
37
|
+
sage/algebras/hecke_algebras/ariki_koike_specht_modules.py,sha256=f1dRiwsDnYjLmbojulNYr1xG_uIJBu8TKlq3UVcAZwI,18988
|
|
38
|
+
sage/algebras/hecke_algebras/cubic_hecke_algebra.py,sha256=I7Yb1Y_griPuwAQHmyH38WivbW3j2v_FkIf9PY0c_RE,149506
|
|
39
|
+
sage/algebras/hecke_algebras/cubic_hecke_base_ring.py,sha256=Vbykxef8XjddAgXkXLymJ2KTuzMulbfgQM8RFOXkpwQ,62363
|
|
40
|
+
sage/algebras/hecke_algebras/cubic_hecke_matrix_rep.py,sha256=4tlnrDr7SV2ZaIAiQmG7XhcOHCNxUoq82toIGR94Mq0,45823
|
|
41
|
+
sage/algebras/lie_conformal_algebras/abelian_lie_conformal_algebra.py,sha256=jMT2Mvxk270XYOhBTjcYTqkxD7JsPahFQztvzpX13Ls,3998
|
|
42
|
+
sage/algebras/lie_conformal_algebras/affine_lie_conformal_algebra.py,sha256=a-WYPJXBPH5P65a_mGJwYy1eFsMFLsKI2SNOEgormJQ,5816
|
|
43
|
+
sage/algebras/lie_conformal_algebras/all.py,sha256=FpgRa4vQDbEzzeV7TdbFYo-z0J6jsM-AogWgj435fdA,846
|
|
44
|
+
sage/algebras/lie_conformal_algebras/bosonic_ghosts_lie_conformal_algebra.py,sha256=eBhUauj43whR4wviMlhG9YYmBLgMgBOaDtxpsNEKGT8,5162
|
|
45
|
+
sage/algebras/lie_conformal_algebras/examples.py,sha256=pu6hJlvToRHP5_zsR_1czfwBf6d9pw5QWKIOjkYZbN4,2305
|
|
46
|
+
sage/algebras/lie_conformal_algebras/fermionic_ghosts_lie_conformal_algebra.py,sha256=Xkpdnau2nLervZPoz8mU3XlGzPpZXwm49OsLvxXxnjw,5171
|
|
47
|
+
sage/algebras/lie_conformal_algebras/finitely_freely_generated_lca.py,sha256=MSigpSySM_E1ptPgrlDf7r6RqhIQblDixKULunc5MR8,4524
|
|
48
|
+
sage/algebras/lie_conformal_algebras/free_bosons_lie_conformal_algebra.py,sha256=GjjQJavxY-cxoyAyj9cClOJJra_7-gt7X0N6eidBE3s,6628
|
|
49
|
+
sage/algebras/lie_conformal_algebras/free_fermions_lie_conformal_algebra.py,sha256=055aBXRS_jcm1Yamkbin1yQQ1KHbaSgXkzg1FAaG4vs,6205
|
|
50
|
+
sage/algebras/lie_conformal_algebras/freely_generated_lie_conformal_algebra.py,sha256=v_C5uDLJ58ddqrGIpT8zqEB28jNdaI5Y2xCWXC3orEY,3944
|
|
51
|
+
sage/algebras/lie_conformal_algebras/graded_lie_conformal_algebra.py,sha256=eiqHqxpxRah817Pud7ggZfAIqKKpTghn9SWde0TlJCY,5023
|
|
52
|
+
sage/algebras/lie_conformal_algebras/lie_conformal_algebra.py,sha256=faDDhe-sSmK2DOIZfAHpt3yvkiRvZEDb3Q9o_rMEj_8,13841
|
|
53
|
+
sage/algebras/lie_conformal_algebras/lie_conformal_algebra_element.py,sha256=IQZgy0gvEH08bcIpuWoQDY-r4lMaV7R7pcM8KaOUqys,8386
|
|
54
|
+
sage/algebras/lie_conformal_algebras/lie_conformal_algebra_with_basis.py,sha256=e-WaPF2e-MmomoKVffy1yBGRzLkG8JpuTxC1HyvC_FM,2549
|
|
55
|
+
sage/algebras/lie_conformal_algebras/lie_conformal_algebra_with_structure_coefs.py,sha256=DXgNnK3YJn04-NHjrSLuDiU2M3eBGuuobFoXuoAmcKI,13549
|
|
56
|
+
sage/algebras/lie_conformal_algebras/n2_lie_conformal_algebra.py,sha256=-QyWjGl4oYpsLyI3YwUE9p3g6vKkaHM3oAI17X2xldo,4270
|
|
57
|
+
sage/algebras/lie_conformal_algebras/neveu_schwarz_lie_conformal_algebra.py,sha256=WDitHruu_oxnDnS2fK-svtFTk0eyPVOUJ98V_5UuxZc,3132
|
|
58
|
+
sage/algebras/lie_conformal_algebras/virasoro_lie_conformal_algebra.py,sha256=XaqRGcWGy-AwKPGb5sG88wNvNnrXf2KkNdCMC9MKli4,2563
|
|
59
|
+
sage/algebras/lie_conformal_algebras/weyl_lie_conformal_algebra.py,sha256=d1Mp2Cvn_cUHhyZOap43WGzBOrM0OiT3gLql873zrXo,7678
|
|
60
|
+
sage/algebras/quantum_groups/ace_quantum_onsager.py,sha256=V3AusF1C8X68obxZIk0EPm6FPskSYcDbGL9l-jKGIfI,27722
|
|
61
|
+
sage/algebras/quantum_groups/all.py,sha256=f97pnurtcf3rkzohGw6rlF_z2_G3XWwU_XLc22UvaTc,279
|
|
62
|
+
sage/algebras/quantum_groups/fock_space.py,sha256=cJShyBJXPdIJoW-e7ePHj9u0m71JXj7AUVR3GHznd7k,82721
|
|
63
|
+
sage/algebras/quantum_groups/q_numbers.py,sha256=dBSXa0XHp3lZLObpOiR1om5HKJrBmFhSxicsdMhT6gI,6144
|
|
64
|
+
sage/algebras/quantum_groups/quantum_group_gap.py,sha256=p1U-gJKeh2WYYT5Yu3-Lr18EZebqf5UwFDLOzWLTSK4,88058
|
|
65
|
+
sage/algebras/quantum_groups/representations.py,sha256=4QVFxCNHu9SbebW2wRn_o4RESC6X9fuHK8BL1co8kzo,21398
|
|
66
|
+
sage/combinat/SJT.py,sha256=_G7FZsYaktP9SRGO6XWaAwCUMAfMLlyHD7uUHFqXmtE,8465
|
|
67
|
+
sage/combinat/affine_permutation.py,sha256=TtEcTNQ2YI3hy4uKx7KSRCOEonUwtItI2CUxgkzS_AE,82769
|
|
68
|
+
sage/combinat/algebraic_combinatorics.py,sha256=99s22Wq_A9yX_ENio88lmDeoxEGtBuYE_ywf41fmD6Q,2167
|
|
69
|
+
sage/combinat/all.py,sha256=ZPcafs_RFhY1lIDSAJ0c6_Ul4u9aIZaTN6hG2WNf93s,1506
|
|
70
|
+
sage/combinat/all__sagemath_combinat.py,sha256=ed80ByGIaswdWEs0xVXF95qHOFLnB7geYb5eIT7t5Bg,8546
|
|
71
|
+
sage/combinat/alternating_sign_matrix.py,sha256=UF9PN4FV2feUZNqfMwsNweX5iifvZsM6Gbj9Jq5z8Ic,66312
|
|
72
|
+
sage/combinat/baxter_permutations.py,sha256=FYSDXcTnwRzn-C3xjluHpnvcAxk_uUBIJBlV7j2d8Bc,11592
|
|
73
|
+
sage/combinat/bijectionist.py,sha256=qzuY2DNoiwy0mCdrjtUys6mhmfhjA5VhM4aDyzH284g,147045
|
|
74
|
+
sage/combinat/binary_recurrence_sequences.py,sha256=whF4Yi5NViaqfbXe0pkibkUQ17VwGyfmGEmM-f7bK4I,44277
|
|
75
|
+
sage/combinat/blob_algebra.py,sha256=pzykZHWzgqKEYS3JVgDb--NNo2inIywlvhqkkdthjNM,26106
|
|
76
|
+
sage/combinat/catalog_partitions.py,sha256=iwTpeUcHSoHGfUPuKi9V0HmKn2qQUXgefY7-9zdBHJw,620
|
|
77
|
+
sage/combinat/cluster_complex.py,sha256=15EcMEfeb-irZ0InOQ63iZ9sfSWDr7FP7BN0lHBjLeQ,9944
|
|
78
|
+
sage/combinat/colored_permutations.py,sha256=h10AX1pzrUOyn0rKY9Y90Le9Xp1nwaqThIpiA5zYo7Q,68181
|
|
79
|
+
sage/combinat/colored_permutations_representations.py,sha256=R0gT_S7x-h2s_ohMMip0AqbAnEQage8cBfWsO0pV6iE,34938
|
|
80
|
+
sage/combinat/composition_signed.py,sha256=lIG63-dkr3sZKBKP_ZX_BbyXUDeQHae3KVpCIy8yT8o,3956
|
|
81
|
+
sage/combinat/composition_tableau.py,sha256=SXrC123HRtlOrVigwbNbqDkubwL3vSdX1nvBKUPc9Wg,27466
|
|
82
|
+
sage/combinat/constellation.py,sha256=3ECSilCNq7I8_x4uzjH9m2qYAlz73I2_Jf2CjrMp_HA,52250
|
|
83
|
+
sage/combinat/core.py,sha256=BNjt0mfQN5JXSk3L0C_Yqv-0vLwPj1EnB-osZpQVaUY,23702
|
|
84
|
+
sage/combinat/counting.py,sha256=Um3wjlzMEUWRKXGAT7xjT6YiYYnhbHMXdAlxtOY9VUc,355
|
|
85
|
+
sage/combinat/cyclic_sieving_phenomenon.py,sha256=cacHxfT1S2nGnE0yhqAtIdAHbQyWZpApQbgWNLCNc7U,6524
|
|
86
|
+
sage/combinat/debruijn_sequence.cpython-314-x86_64-linux-musl.so,sha256=fsXnIlVTu45r8lXnF7wdmsZfmSppAsOs361Qp11dh28,666384
|
|
87
|
+
sage/combinat/debruijn_sequence.pyx,sha256=BHrd876sTHetUHfiHRmNYhd4LqcpCzWEshiwmG_lUF4,9729
|
|
88
|
+
sage/combinat/decorated_permutation.py,sha256=vCvDysSuGZE_rAgyY7Henfb1n3UYA5vb9W6d_iep7NA,7636
|
|
89
|
+
sage/combinat/degree_sequences.cpython-314-x86_64-linux-musl.so,sha256=hto4nMemAsCEqFKADE66y4SiWhqhjqefsqNgI7IbZqg,657776
|
|
90
|
+
sage/combinat/degree_sequences.pyx,sha256=8DXx2o3wQedYocpmRn2D8oBSYrpaa7LzhRSpeZCQLWU,19477
|
|
91
|
+
sage/combinat/derangements.py,sha256=QxH8AZ4rzMK8CNaaeZ-nhZV5AZ9OnTLf-qAykwBIG2w,17111
|
|
92
|
+
sage/combinat/descent_algebra.py,sha256=3kMoVwhRngaTWAqu0sqFveDceO-BCj6B3zY8W1ZeOBU,36034
|
|
93
|
+
sage/combinat/diagram.py,sha256=fWZM6GTmC2XEli7lOAnbjFh66Y4pf98x4EBDo2P7G-k,51956
|
|
94
|
+
sage/combinat/diagram_algebras.py,sha256=-xd6iRYzHLKt6OLihQpyw0iDTc7aL3ADXXZk9EJeiJk,212650
|
|
95
|
+
sage/combinat/dyck_word.py,sha256=XG1Og8XIJJSog0jl1PJqJ5H05pAy6E0w-70BBlPsjm4,148228
|
|
96
|
+
sage/combinat/e_one_star.py,sha256=o_W7uAyJOOFqkOuRZ6uEvjgXM0ggTOWbmENy73bjtzc,56900
|
|
97
|
+
sage/combinat/enumerated_sets.py,sha256=2EM3naakb8nZCQEWt5vap0B0UPeY43hSEE2dMKX0VEM,3952
|
|
98
|
+
sage/combinat/expnums.cpython-314-x86_64-linux-musl.so,sha256=q3jOpsH_4ATRpf6hcOSW_7UWXVobK0Epg3jX2S3zPkM,348953
|
|
99
|
+
sage/combinat/expnums.pyx,sha256=Fp5Qbwx2nO0t7Npt7lMma5Q8T2wppUDoGuWlzdUhABE,3287
|
|
100
|
+
sage/combinat/fast_vector_partitions.cpython-314-x86_64-linux-musl.so,sha256=o5OpI1yamZfapOpmcABrqXKkPkxEkXGEtxSSlu7vdCg,517152
|
|
101
|
+
sage/combinat/fast_vector_partitions.pyx,sha256=m_UGqTLWSgYGjHqFCF78Q4m-4LlPLfdPBaRg5Sf8l9g,12953
|
|
102
|
+
sage/combinat/fqsym.py,sha256=gqPeUkhOluZb7uOiuqWKYRp09ABNjongx7Zz1v-9AXY,70978
|
|
103
|
+
sage/combinat/free_dendriform_algebra.py,sha256=kQPanSOBHtZ1B9oDYdi9NCRB9PkHhXOs19BbcrhKIqs,31011
|
|
104
|
+
sage/combinat/free_prelie_algebra.py,sha256=k6zvqWPKpBPmeJXz_TfNt23wK_sx9k_fDE2O_XH6h8I,36756
|
|
105
|
+
sage/combinat/fully_commutative_elements.py,sha256=sHlPmpgnDhOPqYVTFwpf1_FCTrGIHMaWyEGc6iC_BCY,42395
|
|
106
|
+
sage/combinat/fully_packed_loop.py,sha256=oRPqIPJMapULqyHR06t4eIehw8Fjrnxk2KeD7lc_rkU,52796
|
|
107
|
+
sage/combinat/gelfand_tsetlin_patterns.py,sha256=6ABvprOlZ3Mc8l5bYM7_zaIawXZ3HD3_Odyxv7OQcNw,47431
|
|
108
|
+
sage/combinat/gray_codes.py,sha256=VZ-AehEIbuXATTfbuV4gt55gTjwdYIKWigDquRNOnSE,8231
|
|
109
|
+
sage/combinat/grossman_larson_algebras.py,sha256=ymq0jCyYYdY0V2ASL8qAIbdyCSh_5_U1WSvt4-ujhzs,22205
|
|
110
|
+
sage/combinat/growth.py,sha256=PsRtoigSu8o5mV0RFZkMPM74P8V7GQ54b1QLe2-KCXQ,145427
|
|
111
|
+
sage/combinat/hall_polynomial.py,sha256=YWR8PkmCF3DJFo0yBEdu4D7EqfGQSl6D51dz_tyu-YA,6826
|
|
112
|
+
sage/combinat/hillman_grassl.py,sha256=ec9PsyzNVtJfLr9ZPXRunnysBsdPAK3lTjbK-CSyhPU,29160
|
|
113
|
+
sage/combinat/integer_matrices.py,sha256=KP56AqNBGa1nYw0RwmeZWGQAVq1BgeY1Syu7IvCqYK8,11222
|
|
114
|
+
sage/combinat/integer_vectors_mod_permgroup.py,sha256=tMrLxqtKPJSwmaHBT1e5ZLu5fBNibEq91RG45q1o2QI,46977
|
|
115
|
+
sage/combinat/k_tableau.py,sha256=f7kQeTry_bYE6aPW-XO3QdsaPBYkIR8JmoeMaD3H0_o,175375
|
|
116
|
+
sage/combinat/kazhdan_lusztig.py,sha256=kaA8Njbs34903qyAJ394mCqSQ6jnoTqdUWmp_a7P3V8,6879
|
|
117
|
+
sage/combinat/key_polynomial.py,sha256=bTgS3AbpfLE_3TumvedGjaQp1g6ZHPP4rCkDsoWlYW4,28781
|
|
118
|
+
sage/combinat/knutson_tao_puzzles.py,sha256=ibqN5H5SuYNIYfMTHPHEAEaQviz81_vUAbimN_uioiM,78983
|
|
119
|
+
sage/combinat/lr_tableau.py,sha256=EaTFau4aJ4_gHTCVlptgUT8PoFttnDFed1sA3Qr0sxY,11683
|
|
120
|
+
sage/combinat/misc.py,sha256=0VBhCuGcD4jpC8VXuOazs9uJMdshB3u5bTC0bw6jIVo,11848
|
|
121
|
+
sage/combinat/multiset_partition_into_sets_ordered.py,sha256=2pnD4WpCignrC9wGhP91gTtUZjzzqA1eDvStKMvTgJI,134605
|
|
122
|
+
sage/combinat/necklace.py,sha256=T0Agt4U6lcpoSpTHlg0oGhgXEQE-8wHpIIJc4ZOU5F0,16516
|
|
123
|
+
sage/combinat/non_decreasing_parking_function.py,sha256=bflVs6TRx0VP7prMdsi677_OEZoDofqh4mMtIRCHMt0,19406
|
|
124
|
+
sage/combinat/nu_dyck_word.py,sha256=ujEaJCVunF78VaHBqYPd7DUPIDmcONAvrSuDSM1nC2k,46259
|
|
125
|
+
sage/combinat/output.py,sha256=-C2JS8Ne_-kcA-S3VE5BLRTelMW-gzboO0JRBQUkTWY,33694
|
|
126
|
+
sage/combinat/parallelogram_polyomino.py,sha256=PEYC1ggljWFGnM4GsMOCvCcqHLJhIg2I0wP2PXfCRic,147983
|
|
127
|
+
sage/combinat/parking_functions.py,sha256=5D9muIWN92eszGEgA4S9BayQnLnEZ_LCHUclDUG8Jdw,52308
|
|
128
|
+
sage/combinat/partition_algebra.py,sha256=RiPkq2faIx57O-HkxnUHVUS9OajXc3GTdCJqABPUtL0,60492
|
|
129
|
+
sage/combinat/partition_kleshchev.py,sha256=eA8ezxGHktgP9W38KLpeCibePHUi1v2K1jthG-ixwHY,74242
|
|
130
|
+
sage/combinat/partition_shifting_algebras.py,sha256=VUp4biWTSwlte_F6jUEHi66HxM3QIIJk3kE9NT-y_Qc,20756
|
|
131
|
+
sage/combinat/partition_tuple.py,sha256=-PNx0ob_FwuKRfDYwlhfDX3gDuUQoltugs90wz7sqwI,108811
|
|
132
|
+
sage/combinat/perfect_matching.py,sha256=tiaxx-7oJ2zGGCKGW3Xqlg-j1R7A8f1xwhAZsxELFgY,25790
|
|
133
|
+
sage/combinat/plane_partition.py,sha256=Wa35rTT_fTRL2qEnOOc1aL5hH07tM-NKWvR20cUoIZ8,119093
|
|
134
|
+
sage/combinat/q_bernoulli.cpython-314-x86_64-linux-musl.so,sha256=-uMCmEnDUUTXKazUNMUH-WcBw9K0txKqj_uFQmUS7Sg,483392
|
|
135
|
+
sage/combinat/q_bernoulli.pyx,sha256=zTlH3Q4q93bNamsUPNuqTGKWDUVxo-fCZ8bvi01aWA8,4125
|
|
136
|
+
sage/combinat/quickref.py,sha256=t6fy3GyDGsqOj26WGzkZ4USzf9lSf0thkC_DjkOtW9I,3594
|
|
137
|
+
sage/combinat/recognizable_series.py,sha256=0QPn1uWwTAuWFPhMYuQWsWgffDOfy1dKSZDRkNy93mw,68106
|
|
138
|
+
sage/combinat/regular_sequence.py,sha256=tdoMoZvt9CIwOM21x0PigfwB8Y-G9WFof2NVaOFs390,166095
|
|
139
|
+
sage/combinat/regular_sequence_bounded.py,sha256=E_rLyH7X1Y7C_4Ufl6hN0mRvHAwZ_KsbAYibfyBvMG4,17642
|
|
140
|
+
sage/combinat/restricted_growth.py,sha256=pLrI2GPsNF6uIx_Qv5dVClvpcQuZGH8GDJMD-mtzxp8,2897
|
|
141
|
+
sage/combinat/ribbon.py,sha256=0qAiXM2HJvjbeYpa-cLRtxPpG-8z6d-xq0O8FE7CE7U,791
|
|
142
|
+
sage/combinat/ribbon_shaped_tableau.py,sha256=1vA5KOlX6Sw8A5B9WPWd1lKXo4QYlVTBrmuNX-QH9-w,15156
|
|
143
|
+
sage/combinat/ribbon_tableau.py,sha256=cPx5pSyRutsMRhKUi6bvXCcvbiUfqPPIIO66VyJgnOs,39323
|
|
144
|
+
sage/combinat/rsk.py,sha256=klB4e9KjGAVxxYPP5fdN4V_L1nP_2y1adBg5Lmkj3AM,138632
|
|
145
|
+
sage/combinat/schubert_polynomial.py,sha256=DRV3IuCLjRGivg5O3cl5tftw9SkXq_wiJSeEiocH64U,18274
|
|
146
|
+
sage/combinat/set_partition.py,sha256=h-merQ9Z5M9EYpSC61NAk1qnnVXFRl9LuhuoDXIouxA,114445
|
|
147
|
+
sage/combinat/set_partition_iterator.cpython-314-x86_64-linux-musl.so,sha256=Uw0pC64Oqq92F0PWgVQ7loUctE7dRWghUDqPDaNsvvI,487544
|
|
148
|
+
sage/combinat/set_partition_iterator.pyx,sha256=p3sesJs0Y0yhah3pXWHE03WRANCoZmSNvkWykDoOrck,3751
|
|
149
|
+
sage/combinat/set_partition_ordered.py,sha256=YbXZ61qxS49X9l8-D8DgFEJzlBglPQvYVeiKnjHZa-Y,51519
|
|
150
|
+
sage/combinat/shifted_primed_tableau.py,sha256=b6ilZrLZs8Nm1AMKjGCq3Dr018vZKucCVUxFi8w9leQ,93862
|
|
151
|
+
sage/combinat/shuffle.py,sha256=lsOCZzX7okVeFTxGt-5dKbgfm76ilJ2Z9I2m7uIVyMY,29025
|
|
152
|
+
sage/combinat/sidon_sets.py,sha256=xnBIHFlV8byVD0t-2iNAfC0U6uUFddxNcNfyBfcm6bo,4764
|
|
153
|
+
sage/combinat/similarity_class_type.py,sha256=IDcDRNsG9eLzg-uK4YHCsiVe44fKfS7udyMZlmToYhQ,60581
|
|
154
|
+
sage/combinat/sine_gordon.py,sha256=OFxYpuC8J6XAPQWwyI5vt32xzz0ZydxK_OxHSs9Rvhg,22713
|
|
155
|
+
sage/combinat/six_vertex_model.py,sha256=q_5D6MpwFkX-7YhQS8UXljZz626PHoXhoi0eVCQ9xcY,26254
|
|
156
|
+
sage/combinat/skew_partition.py,sha256=zn4dTC948UZzjLLX3FItYHPRnrN7h638sXkcC8u-Hzw,70316
|
|
157
|
+
sage/combinat/skew_tableau.py,sha256=4nLzaQGhT6iatHouNqaZvX_zVsFMd35cP8D2QVSLsUk,100033
|
|
158
|
+
sage/combinat/sloane_functions.py,sha256=0Z5ZfJOEw4P9J92mvnNjt6v-TkMmdGyuS5NfRdPdOBs,226102
|
|
159
|
+
sage/combinat/specht_module.py,sha256=E23M5suiPhvxDBxqVm0x7DWYAhFMpHF4l2jeP0cPo3w,50502
|
|
160
|
+
sage/combinat/subword.py,sha256=vdAQBF1a-IOcfYM7Q5ygH7KisBWHSGlJ66kU8oxUjOY,16448
|
|
161
|
+
sage/combinat/subword_complex.py,sha256=Y_H84RJUyN3jskMjTyhdMwN8p4ATMHNFWLx79MD68pQ,77055
|
|
162
|
+
sage/combinat/subword_complex_c.cpython-314-x86_64-linux-musl.so,sha256=8o7XEh_pmidthIq4n4SL-XT1QK5iKNr2wGgIH6lgoPo,339416
|
|
163
|
+
sage/combinat/subword_complex_c.pyx,sha256=6w6S6thlPD5q6JFX41Em-DOV10WCx0Xp35OXGrMxYjw,3748
|
|
164
|
+
sage/combinat/super_tableau.py,sha256=iZXN-bb0gN3imC0Y1m1KzTiWp-WeZNgS6xibaG4RnJA,28328
|
|
165
|
+
sage/combinat/superpartition.py,sha256=-PZLTB8am7y0SwOJcEJ1pzj5wtl19IOxoWtpy2FqVP0,36916
|
|
166
|
+
sage/combinat/symmetric_group_algebra.py,sha256=jhB7RbsP6U7mky4_IfIthIoQBA2llC-Vy94z6gIeB8E,143183
|
|
167
|
+
sage/combinat/symmetric_group_representations.py,sha256=6Yzi4d2RAmDm2j1O1A-MIvqDOMKHQNdVpANu2fzmh-o,67474
|
|
168
|
+
sage/combinat/t_sequences.py,sha256=3fO1i3sNfPPa47q8uxr1YE3-vjeclaZ1GIk-H2UH31k,29540
|
|
169
|
+
sage/combinat/tableau.py,sha256=LnEUNCRGHYLcJ46lxNXHf1q26DGqmrkuDPM52AY_HVo,329839
|
|
170
|
+
sage/combinat/tableau_residues.py,sha256=8pOw2vmgOJ0nsaHKS-SIgrapG0wjUVVhOmiZTRh6wbQ,36201
|
|
171
|
+
sage/combinat/tableau_tuple.py,sha256=1VC_d_sXiWI8SnZGEqvo_iVuHbnEmGyhZ9qj78ub1gw,199662
|
|
172
|
+
sage/combinat/tiling.py,sha256=OZwx0m7t_4X5v98-q1LjKCHhHAriGV-JvIAOGHvuanQ,91166
|
|
173
|
+
sage/combinat/triangles_FHM.py,sha256=j3k0vDGNSWmSJ2VA3Z4wvu4vG6d_QRqOA_s_QTzlZdY,24551
|
|
174
|
+
sage/combinat/tutorial.py,sha256=yNy5h01vy_QLENXiMN9FlnSU2iSYOYfPpu3TNL8qrMo,69129
|
|
175
|
+
sage/combinat/vector_partition.py,sha256=e9pXKPwdMqAjnhhynBveXV1tUYzpmPt4vZ5mqhU9l3Y,11108
|
|
176
|
+
sage/combinat/chas/all.py,sha256=uu9q0l-wkplLkv4Sxok5gQvNpPBbh5Hz7FmDhkIDq0Q,742
|
|
177
|
+
sage/combinat/chas/fsym.py,sha256=xBycUmo7nDbWSp7ByCIwbj5YuK-8yuZGzIvyoPA9F0o,42333
|
|
178
|
+
sage/combinat/chas/wqsym.py,sha256=PdgTvF0apZbGaj-4UmhgP8N1oZqMtHcXkHFF9atCVDM,104068
|
|
179
|
+
sage/combinat/crystals/affine.py,sha256=UGx8ImD9KJjor5hn25YVFKkrlgoBFJx4Zuo3w5deLZk,24968
|
|
180
|
+
sage/combinat/crystals/affine_factorization.py,sha256=3qONyOJ55Rvvvch9ITCHjgL79q4ouSPibSfziAZ-wLM,18840
|
|
181
|
+
sage/combinat/crystals/affinization.py,sha256=KdwYW4NFKB3YRHgreo2RdISGbnAaIW_SvsdSgGVrnYg,10840
|
|
182
|
+
sage/combinat/crystals/alcove_path.py,sha256=jMgBXKje3kiywH845cQ5qeKidYiZ1Yk3eIz9_Prwu6k,70585
|
|
183
|
+
sage/combinat/crystals/all.py,sha256=CEF0GV18wBlvFb1Ccl7-VIAk0BQBKy6-W2T7fMg-db4,787
|
|
184
|
+
sage/combinat/crystals/bkk_crystals.py,sha256=IOqH78iFllVbd0_fNtOKZ5WqYDXX0Tr72m1NQARgOcw,5071
|
|
185
|
+
sage/combinat/crystals/catalog.py,sha256=jXkYzhHGr3Azhv5Ny6Qs0bx9y_151zE8q2avmPJOjEs,6458
|
|
186
|
+
sage/combinat/crystals/catalog_elementary_crystals.py,sha256=3WnJK_DjG51ZZ3825C3WLyyt4XQqhjGh44C739bDeFI,804
|
|
187
|
+
sage/combinat/crystals/catalog_infinity_crystals.py,sha256=6YJ_MHAa9x_07kIYOB6EBqduiWpKJ3hk8Uhf1xUC-2k,2122
|
|
188
|
+
sage/combinat/crystals/catalog_kirillov_reshetikhin.py,sha256=F_l2HZtSL4HdtdIBvSH8ZWRGmuSR0_gncJbHzT_x4aA,933
|
|
189
|
+
sage/combinat/crystals/crystals.py,sha256=2cJkVXtKGRLEmvmkh_xFag9M6GMhCP1OKl7vS9Lbf1c,9255
|
|
190
|
+
sage/combinat/crystals/direct_sum.py,sha256=3Igj4objqM4lnmAahBdPW9NYD7Ctz7d38Di8h5t2er4,9519
|
|
191
|
+
sage/combinat/crystals/elementary_crystals.py,sha256=Qsw7SbwPBwX9T10y8cbzWUNTomMiUAP6rQzP_7jE9Hc,40332
|
|
192
|
+
sage/combinat/crystals/fast_crystals.py,sha256=-qYvvUT3o0lRwhMffhqelhgnf2h9y9EZEX4iBmevFkQ,15706
|
|
193
|
+
sage/combinat/crystals/fully_commutative_stable_grothendieck.py,sha256=vNlyAMdHgIg6kn0RvUCVdym1Xv3TslGTuIYso-AlYbo,43814
|
|
194
|
+
sage/combinat/crystals/generalized_young_walls.py,sha256=QECW-LZn1SYYLgeMew9sdov2X6QEBzqM0IsOUjW-i40,38537
|
|
195
|
+
sage/combinat/crystals/highest_weight_crystals.py,sha256=z077eJ_VGSugmlchPRzgEEm3NsGcSWq8GsKioB_IUgY,18349
|
|
196
|
+
sage/combinat/crystals/induced_structure.py,sha256=8cI2C3oCu8yuP9N_Vwa15Tm_FgWkcP8944xuM7BauUM,25826
|
|
197
|
+
sage/combinat/crystals/infinity_crystals.py,sha256=1ESJaXDGA7fMC_8pRIC0nmPzk5EKI_eRex08GVjc1cA,27705
|
|
198
|
+
sage/combinat/crystals/kac_modules.py,sha256=bFWLk_7Ebup9AAaPv97I1kBggFa77fhOB8SGY6Esmyc,31389
|
|
199
|
+
sage/combinat/crystals/kirillov_reshetikhin.py,sha256=sq-TGTcRDJVpI-x_4moL-Mz3p9de9CU8qzHEgzy12hs,156902
|
|
200
|
+
sage/combinat/crystals/kyoto_path_model.py,sha256=UyFqBo4--DVB1fyed_SUFrXa9Z0ZhZFeJlyJyuDxD_s,19805
|
|
201
|
+
sage/combinat/crystals/letters.cpython-314-x86_64-linux-musl.so,sha256=ILRWprWHcZS2zH_EFahRuxPtmW28hrgMevrq3xZeDNc,3554080
|
|
202
|
+
sage/combinat/crystals/letters.pxd,sha256=bt0cDD2eR3DyHJuYmRcfLODOwiSI3o8bMlcajT_XAQU,2547
|
|
203
|
+
sage/combinat/crystals/letters.pyx,sha256=fmbMT-NgSRHQnlR6OLPf5bTuElnnlKWizGKDQezpblw,109456
|
|
204
|
+
sage/combinat/crystals/littelmann_path.py,sha256=CkCe-hbc9itNU7O-Vixyr-9o38kXvEq03FYkTsgXaYE,60051
|
|
205
|
+
sage/combinat/crystals/monomial_crystals.py,sha256=QjoUu7pAGmQl6wkJGcGYrq0mVbfHXDvFwzTdvRupopI,44527
|
|
206
|
+
sage/combinat/crystals/multisegments.py,sha256=kBzp8AeTi-5kWrrVTG1dyqJBxNLV0WJdrnYLivCnzHg,15604
|
|
207
|
+
sage/combinat/crystals/mv_polytopes.py,sha256=ZkjC4tQVzmtBKvNXH5ALMSEbwVUu9CTWdvkDIQ_VMaM,17670
|
|
208
|
+
sage/combinat/crystals/pbw_crystal.py,sha256=-TkgX4YTjQacVcnFsBdpt5C5gP_xh6vie6SgxHvpEwo,18752
|
|
209
|
+
sage/combinat/crystals/pbw_datum.cpython-314-x86_64-linux-musl.so,sha256=fGjHVuEGIDeEhMatsTVVGgHEwtrWlnGkho79ZYdOhcc,1136080
|
|
210
|
+
sage/combinat/crystals/pbw_datum.pxd,sha256=Ihak_MUkDUST-_6LJWDFHuM_6PkfcCFaVFCk4wTRxlA,264
|
|
211
|
+
sage/combinat/crystals/pbw_datum.pyx,sha256=LHEgBWUqUBQKsg-AKRt8qffHi9eo7MS_AzYfIFOWm1o,18424
|
|
212
|
+
sage/combinat/crystals/polyhedral_realization.py,sha256=gWzZ_vvHHnfEA47CO_H2CoEoim2ZA3RAzyIDJlAGDP4,13510
|
|
213
|
+
sage/combinat/crystals/spins.cpython-314-x86_64-linux-musl.so,sha256=dQlVYTKZPy7zseswgdKbq9r-vjQyjFcbgHiqNMbrtUM,844280
|
|
214
|
+
sage/combinat/crystals/spins.pxd,sha256=CLlkwg7zOiUS25tyZBwTyf2xNzW9gGYQo307YtfQtq8,599
|
|
215
|
+
sage/combinat/crystals/spins.pyx,sha256=8p_PjDs1IqexrSht7U7pZpv78CjWquBFNpkfq3JN2i0,23111
|
|
216
|
+
sage/combinat/crystals/star_crystal.py,sha256=yhX2rovu9Q5OWx98rqoFLOmFhQS3zJxD0ymqbaahAB0,10333
|
|
217
|
+
sage/combinat/crystals/subcrystal.py,sha256=PxbQc94gLGuTBM6qT1RijZUXi5I6kK_HW-pzEED3BEA,16475
|
|
218
|
+
sage/combinat/crystals/tensor_product.py,sha256=jpvyksuz5NgEqjPtzltxfa5YL5YGF9On3jCGpPacXr4,44315
|
|
219
|
+
sage/combinat/crystals/tensor_product_element.cpython-314-x86_64-linux-musl.so,sha256=ePCR4avlBMoHJSboR2Wo8GIisP8xm2xPDNNYqlj9ZYk,3035408
|
|
220
|
+
sage/combinat/crystals/tensor_product_element.pxd,sha256=MOlofC8wlDX2dGrExEbeLNNTfSA9OWPv0WLc13cX020,1179
|
|
221
|
+
sage/combinat/crystals/tensor_product_element.pyx,sha256=UwQiGr8r14KXm4sPGPapCQjp195OYeFqpGyu7mifu-M,59747
|
|
222
|
+
sage/combinat/crystals/virtual_crystal.py,sha256=9HUSRbu9TnVU72XG84p_SOmUOTtAllRIgndXq8uCBVk,15688
|
|
223
|
+
sage/combinat/matrices/all.py,sha256=0akg4faOBjJHb4aWr_WoDINHpxuu6nkp-8RUV99SZxU,757
|
|
224
|
+
sage/combinat/matrices/hadamard_matrix.py,sha256=5oc8zDNB5Zp88sj81PzQFMNLh2eAmotgzOvlVF0arJ8,145442
|
|
225
|
+
sage/combinat/matrices/latin.py,sha256=Nsn4jzMSh7kMeQFfbI3eOh6CCvJyqH41i8I6sqhU1l8,79342
|
|
226
|
+
sage/combinat/ncsf_qsym/all.py,sha256=4gOVoAJXsnA4RLhQglT_lu5Cw49Jt8qfEn8V4toLC54,756
|
|
227
|
+
sage/combinat/ncsf_qsym/combinatorics.py,sha256=PqTXc9Qr7qBmZ4WLQbeQkNHD4k7FGsopZNJP99rY258,9786
|
|
228
|
+
sage/combinat/ncsf_qsym/generic_basis_code.py,sha256=29H0oWlh3czfnX5NCJQ3oUjLEPtup_TPGK6kB207278,55991
|
|
229
|
+
sage/combinat/ncsf_qsym/ncsf.py,sha256=KOXnm1K8JjErxW_Pcii9OQKKG0qHwDLbGNVNLgimYyE,240487
|
|
230
|
+
sage/combinat/ncsf_qsym/qsym.py,sha256=GKLrkQetSLNRm7mgXHWRM2ItQHPJC-n97U3G74ZinAk,170291
|
|
231
|
+
sage/combinat/ncsf_qsym/tutorial.py,sha256=oZb8v3KHM0hxCN_SZ1JDSZ3vzrgQ_S1a_63GYkKn6b4,15847
|
|
232
|
+
sage/combinat/ncsym/all.py,sha256=KPqKk0e6PpB8sqL56CoQeQFAl8-ZSokN4udN2d3J5Ns,754
|
|
233
|
+
sage/combinat/ncsym/bases.py,sha256=BJ9WosWpBJbC1TdzH-gVIIt5IO09LuQCxzbiQx8hm_w,32898
|
|
234
|
+
sage/combinat/ncsym/dual.py,sha256=paVBt1lr1rF_Yshfhz0Hk0m07qVRm_q72nSkqsWoCzI,23710
|
|
235
|
+
sage/combinat/ncsym/ncsym.py,sha256=bKw2ZQ0FCCGnnwbg_gDnuA7JMtmmE3Dly82xm9o1MUg,78620
|
|
236
|
+
sage/combinat/path_tableaux/all.py,sha256=Ee56UrJEY_zpBuww1M0RqR3nxUH3o_q8_WOfU-tL80I,429
|
|
237
|
+
sage/combinat/path_tableaux/catalog.py,sha256=Gf_wrjt0mgwGkEcyMw9PdSyHSEuuGQVs12amTCpR0S0,1384
|
|
238
|
+
sage/combinat/path_tableaux/dyck_path.py,sha256=zwG0ojBlISkdq6IiaaTD1m0iD8x7S5n41OKCQINfHHc,11997
|
|
239
|
+
sage/combinat/path_tableaux/frieze.py,sha256=UXc8oPUEgZm7hTuYfTRELShpnlVvUYs993ab1VAX5V4,18236
|
|
240
|
+
sage/combinat/path_tableaux/path_tableau.py,sha256=fEQpWw-9n-M-5bZqHgcOxZQMdcPrgEHM4L2lyP9FlRk,24434
|
|
241
|
+
sage/combinat/path_tableaux/semistandard.py,sha256=lET8sln5pOxJbZVItU4Fg9CYfqgzYe6ZmehBxJl82MU,19003
|
|
242
|
+
sage/combinat/rigged_configurations/all.py,sha256=l7s4_phLVCG2bZjP7AcYiTmp1h7zsbPYjqCmq5aZAq8,1813
|
|
243
|
+
sage/combinat/rigged_configurations/bij_abstract_class.py,sha256=I3SsQ4-QGFUgCEOSkqoCcuXhawglE3A9dNidC7032w0,22409
|
|
244
|
+
sage/combinat/rigged_configurations/bij_infinity.py,sha256=oaTeuPiTOf0S674hulO5ffR302FRHZCRbe_Sr99c4gk,13562
|
|
245
|
+
sage/combinat/rigged_configurations/bij_type_A.py,sha256=nbXrXu_nB5eifnCqI8JZvrolx2Q_UyWnrRyBk6odQkc,6419
|
|
246
|
+
sage/combinat/rigged_configurations/bij_type_A2_dual.py,sha256=-ZKW2KfM7Ce4bUte0gd8Y_rDeVOhqwrBa-1IfQs5tgA,13966
|
|
247
|
+
sage/combinat/rigged_configurations/bij_type_A2_even.py,sha256=wWsFZBxpnWz02AzsGfTZJWvM2FcXQO05vqDg-7geABo,8490
|
|
248
|
+
sage/combinat/rigged_configurations/bij_type_A2_odd.py,sha256=esfcJ1LSQJCILkhIyUMYyzaLC4GA3gHwpA9rKiaDWeI,7782
|
|
249
|
+
sage/combinat/rigged_configurations/bij_type_B.py,sha256=gcQuVZgIlNhcm2Lmlj3QcLESI8KVZ25IKzO_p2oJ9l0,40515
|
|
250
|
+
sage/combinat/rigged_configurations/bij_type_C.py,sha256=eNBhD-QbuABFf1wtysgWvco2gy3rmu6Z54KCBttctI8,10212
|
|
251
|
+
sage/combinat/rigged_configurations/bij_type_D.py,sha256=Py2jdTXZychS83W936BqmUnMttPGxJSbd2g5Fz89lIU,32094
|
|
252
|
+
sage/combinat/rigged_configurations/bij_type_D_tri.py,sha256=9-or9WAyp0VYzftpV6f0j3DpFQOPYzKTlAkbvbQXi8o,15249
|
|
253
|
+
sage/combinat/rigged_configurations/bij_type_D_twisted.py,sha256=fTx_-H67oKjuB88WO-jTuGqSIfEHy36FCmNNQmEV5f8,24907
|
|
254
|
+
sage/combinat/rigged_configurations/bij_type_E67.py,sha256=gTm8E7HqMtyLgV88KQzWTkxOvDXMa2N8Qwzogw0NL0c,13537
|
|
255
|
+
sage/combinat/rigged_configurations/bijection.py,sha256=xBqOL8gMB5Fayq_WYajA0lN-N_3SW4yw1WYs2aOr-OI,6094
|
|
256
|
+
sage/combinat/rigged_configurations/kleber_tree.py,sha256=UMkK0WSaLxxYIgQKSyV5sDAdZozf91rEWQ1Q93_WK1A,56807
|
|
257
|
+
sage/combinat/rigged_configurations/kr_tableaux.py,sha256=C3x6xQ-x7_nSDs7Vf2tybGUC__a93SLkPEj6G-SEMwI,70235
|
|
258
|
+
sage/combinat/rigged_configurations/rc_crystal.py,sha256=7wo0mcUt2AOl3pTzXli8ZXfP4ZRoB-6o9bd-TC-gAl8,16752
|
|
259
|
+
sage/combinat/rigged_configurations/rc_infinity.py,sha256=qA_7_7lKm0jbDY0TInmnFRfksvhy43d8QyfZ_pFZUTs,20238
|
|
260
|
+
sage/combinat/rigged_configurations/rigged_configuration_element.py,sha256=v3zb9sIHSk45JAc9ed7v35RBD9mizakk69OjTpwHu3c,85342
|
|
261
|
+
sage/combinat/rigged_configurations/rigged_configurations.py,sha256=xpxvQdr_u5OVnAdLaWLfVJJn6SRxpLbUjjWgrdZfHKs,71864
|
|
262
|
+
sage/combinat/rigged_configurations/rigged_partition.cpython-314-x86_64-linux-musl.so,sha256=taalTYD7QEIRJzV6pSTcMWsnBINlD9aqxi810VwyCF0,1240848
|
|
263
|
+
sage/combinat/rigged_configurations/rigged_partition.pxd,sha256=1DeAYwmEhhW-hfUXL_KEuqgQ5G2VIX2UNG-SOaOd2kQ,467
|
|
264
|
+
sage/combinat/rigged_configurations/rigged_partition.pyx,sha256=UdcLZ-8yooA7ImJSs-Vu28gotEISRxr2FKjm9Vc6LH4,22738
|
|
265
|
+
sage/combinat/rigged_configurations/tensor_product_kr_tableaux.py,sha256=w11SCdE0KgNQ6sziuaIyh0F-uvJnAZVEuWc8gKo89ps,21038
|
|
266
|
+
sage/combinat/rigged_configurations/tensor_product_kr_tableaux_element.py,sha256=PibRLaueQKSbML4bTX6e28Yn7VI-UU5M_idzlg0jn6k,15836
|
|
267
|
+
sage/combinat/sf/abreu_nigro.py,sha256=j8oBZtOId4UgQZ_3cDzOURcWu9J2a2HzPizRE34GUH4,12125
|
|
268
|
+
sage/combinat/sf/all.py,sha256=3lDvnKVe-rhK2o0eoEv3vKQeO3c6YPTG1XXSJV48QS0,1738
|
|
269
|
+
sage/combinat/sf/character.py,sha256=01f2-24ILoZ1cEyNvOYe4Fe-Ya1HCq2pdXMbIlqulk8,19468
|
|
270
|
+
sage/combinat/sf/classical.py,sha256=Ww6Y3UPF3X2chPc05f8q-kmBE1K6YMa1nxpgcpMyXPE,11948
|
|
271
|
+
sage/combinat/sf/dual.py,sha256=wQT4VQczYVpg7FbeC2xuXi76NJWVOtgBtWqSl9fmeBk,36737
|
|
272
|
+
sage/combinat/sf/elementary.py,sha256=UiHkNKBBi22KK29lPnsbHIltNGLOvxU2CqY5EMwcS2Q,21988
|
|
273
|
+
sage/combinat/sf/hall_littlewood.py,sha256=U75GRO6i9IOgM9N5Ll3brQDUmYURnBH8SzZjJ7k4SI4,38283
|
|
274
|
+
sage/combinat/sf/hecke.py,sha256=6hWGnm_YurJiJmxdlBCZ7mXQFslkoStbMitQ5_AaWDQ,11639
|
|
275
|
+
sage/combinat/sf/homogeneous.py,sha256=GqRmWWNw9p6gYOlPuQC83pmrrkRKhn0GJV2LCZw8NgQ,17774
|
|
276
|
+
sage/combinat/sf/jack.py,sha256=eA2irCURfDL947HUIFIi8q9Nb4U5rQWCZz897auxZsg,52488
|
|
277
|
+
sage/combinat/sf/k_dual.py,sha256=o2Do8S0TGnjiU56PVvrKJP2wye-Sh73LX00f1oPN96o,59042
|
|
278
|
+
sage/combinat/sf/kfpoly.py,sha256=XqJlG-xRqz2J6YzAZANEJaXMnrhlFrLPMR7FBmbDGzw,12734
|
|
279
|
+
sage/combinat/sf/llt.py,sha256=ympprDZ22QKb6KaSPs-Jr34noANIQu_tzzgB4sOwwKo,28363
|
|
280
|
+
sage/combinat/sf/macdonald.py,sha256=k4tEVOzyEyLnK_VxAVWCbCICNEYQJWr7BReLhLFP7u4,73133
|
|
281
|
+
sage/combinat/sf/monomial.py,sha256=ZcPKl8t2LIqH3fTHX-LBcWai4WDGOdZWa8XdoXv9LGI,19420
|
|
282
|
+
sage/combinat/sf/multiplicative.py,sha256=y5mW_I2mY-Etgw4Z6flFpi_WMfKcM5ubqjtJ9mouewY,3743
|
|
283
|
+
sage/combinat/sf/new_kschur.py,sha256=opQnxzTBDR1h5h8qjuniUHDq-xV1UCQZklwIJzEz-tk,69019
|
|
284
|
+
sage/combinat/sf/ns_macdonald.py,sha256=lLKyolWMMMZWGbQhdyWysmv-uuEAWzG8RyaQTrdAcRE,30280
|
|
285
|
+
sage/combinat/sf/orthogonal.py,sha256=9Va7F6j8JzE5JAIK_BdeSI-ryHXTwNZfHPwnPJ2tl3Q,7957
|
|
286
|
+
sage/combinat/sf/orthotriang.py,sha256=uHuXYiJNNL4rTZ_dXhJY3kYtjGeNYc760HuW6iqmInw,14094
|
|
287
|
+
sage/combinat/sf/powersum.py,sha256=EhxjxGh6wGlW5xRWUYiAYeIj5wAF5frko2_amWbQlWA,37464
|
|
288
|
+
sage/combinat/sf/schur.py,sha256=-qJ76VNPQY3hLvGKRwQJOoBVHu51Y87MHROxjxuJflw,34931
|
|
289
|
+
sage/combinat/sf/sf.py,sha256=uKNJpoeSmg-gd9F8KxyO3olLA-1RIofMRBT_NCxTcRo,64815
|
|
290
|
+
sage/combinat/sf/sfa.py,sha256=P7BsWa6qPhg2LDrIY5lLAAk6eEUUUl91u5ImORokh_c,277309
|
|
291
|
+
sage/combinat/sf/symplectic.py,sha256=ykcTskDm_R_Jziy28p1Z5A18-QHnYUtTvbkw9wNGPvA,8408
|
|
292
|
+
sage/combinat/sf/witt.py,sha256=HsOEW436O5XpTqBBNogp9DQXQbgv6KVL_epR2c_F3VU,26763
|
|
293
|
+
sage/combinat/species/all.py,sha256=QLOi5IwQnMztXUDy440WpIrcSbE25S-Cy-paA-nhpss,1461
|
|
294
|
+
sage/combinat/species/characteristic_species.py,sha256=OvfTfHyWf6JIawG2s8HW-kuiwRgeTx7XwBvT-njxaZs,10412
|
|
295
|
+
sage/combinat/species/composition_species.py,sha256=53lV3g0qJXAUYYm4W69h9zpKaFTgqUdUGUN70Az4btA,10478
|
|
296
|
+
sage/combinat/species/cycle_species.py,sha256=uRccDCat4cXiOur5dtfDJkgZ6s-qZ1CeKwowbLGuASA,8746
|
|
297
|
+
sage/combinat/species/empty_species.py,sha256=ohokOoU_G--eI67ctHi7nJ8ITkcOXFqch5xW-v4avFw,4864
|
|
298
|
+
sage/combinat/species/functorial_composition_species.py,sha256=ThqHqaA1vG3AKzjdTDMew4PBn3YZjRnBh-JDDzL766Y,5236
|
|
299
|
+
sage/combinat/species/generating_series.py,sha256=0Vme6WJFeGChoarbJTPKHXXmmYy7rqbX7JqC5dGM0Hg,24840
|
|
300
|
+
sage/combinat/species/library.py,sha256=I4e7r5MIWYRVQpmdkTIo__7HGjqWBVYiQHrpm0JFbtc,5564
|
|
301
|
+
sage/combinat/species/linear_order_species.py,sha256=GLXQhFYZ5qZ-JGDP-OVNdfs-clLjpz3W2SLEPHExxKA,5703
|
|
302
|
+
sage/combinat/species/misc.py,sha256=TICeYfZmeNymlL82SpUf664yhbORURiwWrWXpLmK6IQ,2936
|
|
303
|
+
sage/combinat/species/partition_species.py,sha256=4GxHVOA0HO2pzGJwl7kQa7aqij9F-_aj3bKuwAJxphI,9857
|
|
304
|
+
sage/combinat/species/permutation_species.py,sha256=8ajSDVjFKrV3lcMLd9m_-6i63cLopW58TsSYBg7oICE,8949
|
|
305
|
+
sage/combinat/species/product_species.py,sha256=Mur8k3qMOtlRtHzxU0KEpo2P81JYsXiOZzau68B7QII,14070
|
|
306
|
+
sage/combinat/species/recursive_species.py,sha256=pOiifrrX004co_cV6LZyRgBSHhmNwrZgGkmMqQa39BA,16139
|
|
307
|
+
sage/combinat/species/set_species.py,sha256=VWUaBQwXseo-6CMbGlraiD4Zl-1RxZMimkZsHkgvulw,6328
|
|
308
|
+
sage/combinat/species/species.py,sha256=g7Wpgvb6TkPj9bsCtodp1BTuBqH0SoA5A5XryjgcP7g,28965
|
|
309
|
+
sage/combinat/species/structure.py,sha256=2nJGBRV66-y8-cYZ5HQWQpcZgecAXGsE5GCEImAUtJs,17719
|
|
310
|
+
sage/combinat/species/subset_species.py,sha256=wdrsGGEwIYjLqgtqM2uvyjrq38_KIP7uKGtIQEppQUI,7996
|
|
311
|
+
sage/combinat/species/sum_species.py,sha256=ORBlnLdH1TAP8_FPnIGkudO5tYe-J-1apgYBC4MG1_s,7392
|
|
312
|
+
sage/combinat/words/abstract_word.py,sha256=t_tQ-e6qvBnan2I2FW2zN4qZDdIQsSL7bGkuVqm1wTk,54097
|
|
313
|
+
sage/combinat/words/all.py,sha256=fnikw-TkRV-0vTEmSoxYxAKPxWcnIXyYS2zvhlknUZw,2068
|
|
314
|
+
sage/combinat/words/alphabet.py,sha256=dt3u2Apu9DDq_RRN0_J-zIjFMMmRAN9oz2_JdCSaWt8,10276
|
|
315
|
+
sage/combinat/words/finite_word.py,sha256=oDEnD84zg8Vo7jEkqQTeSexrBE9RA_iIlP5KONU8J7w,238407
|
|
316
|
+
sage/combinat/words/infinite_word.py,sha256=fYzC2SA-Zx2NHz3qb1xrIzi3J6PBDOf2BJzA-ZTTBLE,3551
|
|
317
|
+
sage/combinat/words/lyndon_word.py,sha256=N4zQyY3SlpMWB83BFmVSI8iD4EWz_Pqw_W6vZtFzkcI,19743
|
|
318
|
+
sage/combinat/words/morphic.py,sha256=-Dt4Y4I5rE3dKLa8zhWLPRNj7TyBXvlijJNU1QUVvY4,12474
|
|
319
|
+
sage/combinat/words/morphism.py,sha256=4edGuqK3_TR3SK3ImBETCObdoi0ZY_JmPxGavnt7o88,137819
|
|
320
|
+
sage/combinat/words/paths.py,sha256=KKyfcZU-hfph0pOV6RD5lj6GOg1vc7x4jPouD88uHFg,98238
|
|
321
|
+
sage/combinat/words/shuffle_product.py,sha256=kDFAOviwrEEBCGwmxiKDfGPh-V1KrY2jOn7UuU25fOY,9720
|
|
322
|
+
sage/combinat/words/suffix_trees.py,sha256=wBq1M9-zaW5KqOu8DSK32rZmMLjrdW_N3zII8OZyMOA,67418
|
|
323
|
+
sage/combinat/words/word.py,sha256=rRlmoSD3Lt3URmqU3CYzjnHzD7MeThOMWbxmj20Xtwc,22258
|
|
324
|
+
sage/combinat/words/word_char.cpython-314-x86_64-linux-musl.so,sha256=ZuV7YSJmL2Xn0FCsfpqmC8nGcrbiwrc4kaXPS3zn_TE,917448
|
|
325
|
+
sage/combinat/words/word_char.pyx,sha256=TEtdXtFFWtPsUQEw9AlRJzD7OIwACXDqnsWQtxsqwQ8,25355
|
|
326
|
+
sage/combinat/words/word_datatypes.cpython-314-x86_64-linux-musl.so,sha256=roB9aQaXhuc7yZLYdbhXmqLUcwiqnwhBUwYQAF-uT2M,798320
|
|
327
|
+
sage/combinat/words/word_datatypes.pxd,sha256=qPMo0gQ5xjgwWONSG7MuOEBe2038Qvcf2sd-OKP7Ljo,113
|
|
328
|
+
sage/combinat/words/word_datatypes.pyx,sha256=EJMr_eLGnnYR2KGtBAAuMNDhniSDjFKOkuKFUXUnW_I,28097
|
|
329
|
+
sage/combinat/words/word_generators.py,sha256=_YxzkigBctnYORQ54qszbCKPsko9agyQJnyKOFdTTHA,74423
|
|
330
|
+
sage/combinat/words/word_infinite_datatypes.py,sha256=ubRK9lcS5PHXFlt4wZUqz3oE4cEaGj6vmmA955AGh7c,39522
|
|
331
|
+
sage/combinat/words/word_options.py,sha256=2z9638KAsPfnb1S-Nq6OAd5CEuJyBlPE-9bWW-kiz7w,3893
|
|
332
|
+
sage/combinat/words/words.py,sha256=0fC9lZZwG_3ToPu8MpXXPZBVm0lQltA5XP9qZEAid1Q,80747
|
|
333
|
+
sage/data_structures/all__sagemath_combinat.py,sha256=TUHMuhOzlFeuFr3hoL4JcdN85c30SLtKeA2EZ9W15gg,47
|
|
334
|
+
sage/databases/all__sagemath_combinat.py,sha256=Ad_8j8GmKL6W9x1rkMgzt040KUkxgDT2k3sPJZlHfVQ,335
|
|
335
|
+
sage/databases/findstat.py,sha256=n92sAWpI3UdwGZBjmyK7dPbL6NoDAsehEjI7SL68YqU,192024
|
|
336
|
+
sage/databases/oeis.py,sha256=0vIO6K7N-RY1yIcwJtzhoIyTlQX1Si5HVTHT1MCVjhM,71834
|
|
337
|
+
sage/databases/sloane.py,sha256=ZhoYoh-Pc4z09BfFXoDshEQ611QVbrOAvhK7Am2gy1Y,13478
|
|
338
|
+
sage/dynamics/all__sagemath_combinat.py,sha256=8-Lkwe72PYOrrD-TQwRsxYJgpKj_vrXJbqmIie7X4vA,391
|
|
339
|
+
sage/dynamics/finite_dynamical_system.py,sha256=UD2aG7Ev7rmS3J2NCpY-C762yJ-I2cK3nr6cSdNIm5s,45173
|
|
340
|
+
sage/dynamics/finite_dynamical_system_catalog.py,sha256=LsqVIX4_myRV_yQKgVGdE8mWqToZ3As0BPNyy3_E4aE,13208
|
|
341
|
+
sage/dynamics/cellular_automata/all.py,sha256=paayC0o7lXvG4vx5DZpj47ESXbgdNhq9knAObs2Chy4,310
|
|
342
|
+
sage/dynamics/cellular_automata/catalog.py,sha256=l3xL5BG48DDnk6G7sYqDGUST0vsAYCzySU2uIhQV9GE,1560
|
|
343
|
+
sage/dynamics/cellular_automata/elementary.py,sha256=kuzR-4DJYlrq8sBK2__thy7QNHMjmNad12t4zV0zLzU,20411
|
|
344
|
+
sage/dynamics/cellular_automata/glca.py,sha256=rpxe_cDnH0qWMX265eHOz0SRhx_tXJ97xZgQXBaZDAQ,15706
|
|
345
|
+
sage/dynamics/cellular_automata/solitons.py,sha256=7Fi-dnH6PUIC0KIwte-JlSBbwFqoOYwECYXtZxr68Rw,56687
|
|
346
|
+
sage/games/all.py,sha256=NuC3cKjeOMtiB_ynYNDxDHZMxqOxy21_wjdECpYln6s,211
|
|
347
|
+
sage/games/hexad.py,sha256=jmE1aioxEUK446ADcyIiZy5NTHbuSCzWW4_iVLlOU4c,26905
|
|
348
|
+
sage/games/quantumino.py,sha256=as0dQc6VkyX_bYUTIKc6QQu39sQLAHUs-HLDopfAs04,24263
|
|
349
|
+
sage/games/sudoku.py,sha256=KF7mnW06VrVnjdMkO0elyXfCKv8x54P5z7sxFPtGi00,37189
|
|
350
|
+
sage/games/sudoku_backtrack.cpython-314-x86_64-linux-musl.so,sha256=5p5vOiei0yhHDu5LDuBJSLWTYJj7wspyIg7oIfSjbAs,215624
|
|
351
|
+
sage/games/sudoku_backtrack.pyx,sha256=UQyFbwL1zlvHTunsgoaRzMw4hxcSs3PxvtN7lMV0PUw,8806
|
|
352
|
+
sage/groups/all__sagemath_combinat.py,sha256=TUHMuhOzlFeuFr3hoL4JcdN85c30SLtKeA2EZ9W15gg,47
|
|
353
|
+
sage/groups/indexed_free_group.py,sha256=Q-PkMzfduYKnrroM4qh7fel8a4n5VihFQ2GclK7OmMI,14617
|
|
354
|
+
sage/libs/all__sagemath_combinat.py,sha256=g4R9NWV0Q0UdCghwpigf5xeOHP-JCpIwT04OwXSFsRk,172
|
|
355
|
+
sage/libs/lrcalc/__init__.py,sha256=TUHMuhOzlFeuFr3hoL4JcdN85c30SLtKeA2EZ9W15gg,47
|
|
356
|
+
sage/libs/lrcalc/lrcalc.py,sha256=Y8WnT3MIOBR7iwXxGJbPuMs111onbBpGgxws1DAmK_4,17227
|
|
357
|
+
sage/libs/symmetrica/__init__.py,sha256=Iwiic-oevnqsYxneMb-3iNPyN8JGRlco4YDj6CERWU8,211
|
|
358
|
+
sage/libs/symmetrica/all.py,sha256=b_1QXhYdJcn_zs4f4VBqFWO3CH9ew3nY1Q3ENYZ49jw,6256
|
|
359
|
+
sage/libs/symmetrica/kostka.pxi,sha256=fDQCeQL9fzVoVuY1JzpY-EWoR-m3o91yEMhmX9Dy1P8,4166
|
|
360
|
+
sage/libs/symmetrica/part.pxi,sha256=-iuhvdjVv7kN3cC0ET_lA_BT1dTdzsII7wkM5xg86zc,3915
|
|
361
|
+
sage/libs/symmetrica/plet.pxi,sha256=78FZUwgV8wLG0VeZGhzaLBmVfIVE57SA4eZU16-CVjY,904
|
|
362
|
+
sage/libs/symmetrica/sab.pxi,sha256=5euS40Bf8SGxoT1J92sCQw2ppa_VDssq93ql8dpghKA,4108
|
|
363
|
+
sage/libs/symmetrica/sb.pxi,sha256=Eu9K5gssHF4v3qRiPEYjxxTF0v7c7Ry_vFNz5AdDqrw,7752
|
|
364
|
+
sage/libs/symmetrica/sc.pxi,sha256=N-eYNu7jVPDYLAqpxkBAvlTzUVl3_rPQCs4ezsxO85s,4388
|
|
365
|
+
sage/libs/symmetrica/schur.pxi,sha256=AmWmhn8el0x5FsY8ymumP0q6FUPY5YT9NTt1yk6nxMI,22077
|
|
366
|
+
sage/libs/symmetrica/symmetrica.cpython-314-x86_64-linux-musl.so,sha256=XblWu6Sw5rIXZ_vkexBZaznxtFakVD9RX9hkZaGoeVw,1998185
|
|
367
|
+
sage/libs/symmetrica/symmetrica.pxi,sha256=I6JswF-EwbZnjpk6pUWNyl5hkqD0WedHgLFsVP-ztM4,27916
|
|
368
|
+
sage/libs/symmetrica/symmetrica.pyx,sha256=uvSZi3ksO_uhgKUXs5iSliVUoe7znH-DMglHsFa_vtk,931
|
|
369
|
+
sage/monoids/all.py,sha256=cHhwB8qFCjyjVGQln9Ch1pwU50SzOlG79wSGDCvvx3I,464
|
|
370
|
+
sage/monoids/automatic_semigroup.py,sha256=zeo1rSEy7v6vk6dCj4b166HlDbztoh51rCfa5X4ybqE,38416
|
|
371
|
+
sage/monoids/free_abelian_monoid.py,sha256=RhUtuKoKXx4uJASYdOaqVet098hd4WsBvwbGHwVlZyA,9042
|
|
372
|
+
sage/monoids/free_abelian_monoid_element.cpython-314-x86_64-linux-musl.so,sha256=n4SEyCm_9ODKvA_1bnBzwDK6tfxeXQzKUnwqvpNgGpk,784153
|
|
373
|
+
sage/monoids/free_abelian_monoid_element.pxd,sha256=D44_S92Gu5pSmqhVaIpdyZ6ea3gS2euKz0kQooO7gs8,579
|
|
374
|
+
sage/monoids/free_abelian_monoid_element.pyx,sha256=SUgHa2bUuEZ5-VaH4dFDzecNi-dtOWSx4_-UvDnHjMU,11478
|
|
375
|
+
sage/monoids/free_monoid.py,sha256=ydICaGiIe9OnlgX2gd-XhQYLF_mpVIsduBHx7IgNtcc,10855
|
|
376
|
+
sage/monoids/free_monoid_element.py,sha256=NxawZWDp84KKGCd48XxVM1LdBx-B-DnrLJKzYrn6Qlw,12893
|
|
377
|
+
sage/monoids/hecke_monoid.py,sha256=2RDy-F_K16faXJC462hvd5Bq7Nle7wJ1yZyH5UlAJ9I,2194
|
|
378
|
+
sage/monoids/string_monoid.py,sha256=QMchN278hD0RG96tmMbJzX49C8pbgeS7k_Cba7vGb5E,26552
|
|
379
|
+
sage/monoids/string_monoid_element.py,sha256=vfZ51pGyDdlzZYpChThr5lvT2VaukuA0j-6mDj6ZgbM,19050
|
|
380
|
+
sage/monoids/string_ops.py,sha256=dHg5pZhznOQF9LzURNGhzYBXwOO8qpugyU1E-gIgBEs,4789
|
|
381
|
+
sage/monoids/trace_monoid.py,sha256=geIsuEksvMcm1Ax6-jf3-Vi2ll2Z_Zs-ycT1Zajh9tY,32656
|
|
382
|
+
sage/rings/all__sagemath_combinat.py,sha256=5rfUmKZ7rRxLtWcLSHbCWYaKJTuscdLwrF2M8bFnwcU,97
|
|
383
|
+
sage/sat/all.py,sha256=JNAi4n85EqYnBeItgQbR6MymoBYbs7lFu-gehjKGlIY,158
|
|
384
|
+
sage/sat/boolean_polynomials.py,sha256=nOeVFZzfTAXo6WaBqKXpAMEJ7qRScWA-_zqSbWlAYPk,13072
|
|
385
|
+
sage/sat/converters/__init__.py,sha256=wdBcB4C5tzRvaHXAm3E2uHW58EWN4nsKawo10vOYlOg,220
|
|
386
|
+
sage/sat/converters/anf2cnf.py,sha256=HKQvoC6l9xQEtGy7ISfpM75P0GlDxBwvqKX31mzXR_8,228
|
|
387
|
+
sage/sat/converters/polybori.py,sha256=7TWieZefO3CnrKKwaFD3-vc10yqrm0LqufTRmmAjgpg,20568
|
|
388
|
+
sage/sat/solvers/__init__.py,sha256=2vg5qoGsywIpsK5NNzgV5wVSvm-iQP0EjUT4lS2wlEM,178
|
|
389
|
+
sage/sat/solvers/cryptominisat.py,sha256=1V-Q9Tb5l850F7KCBDH947JGAi-1T6qmzU808ED0W9I,10506
|
|
390
|
+
sage/sat/solvers/dimacs.py,sha256=kxuv8LeY0YiDzCHro8IIqxf0-WI-uSn0Vn0HHNiZBuc,24471
|
|
391
|
+
sage/sat/solvers/picosat.py,sha256=YeafaHMWRQf06t4L_DAIgz9zQn4JTTlaH8raEJ6GGcE,7478
|
|
392
|
+
sage/sat/solvers/sat_lp.py,sha256=X8zdHwRjfF8S4IFntMYifEiT7Zt8oS8TJWZB8ZTxeM4,4981
|
|
393
|
+
sage/sat/solvers/satsolver.cpython-314-x86_64-linux-musl.so,sha256=ZpT3tnQTAneooSfP_2owgAuDEZTDLL2SMlu2zFLLAwI,428800
|
|
394
|
+
sage/sat/solvers/satsolver.pxd,sha256=y155IrZSG6TkmhzsA1PgsL69tnVQdtdCsPMSNaV8gQc,78
|
|
395
|
+
sage/sat/solvers/satsolver.pyx,sha256=7r4J6H6xdrYSfJSXsLf2_C427gkWZs7Zgdkx00L47Tg,13364
|
|
396
|
+
passagemath_combinat-10.6.31rc3.dist-info/METADATA,sha256=YZuPjd_8Mg8zqN_q6moCABdgkgAZIaFV1IfUDoIulqY,7453
|
|
397
|
+
passagemath_combinat-10.6.31rc3.dist-info/WHEEL,sha256=K2_TehZnioJBDmm5baDVfhoCxaclJzJsPrng3hg7WD0,112
|
|
398
|
+
passagemath_combinat-10.6.31rc3.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
|
|
399
|
+
passagemath_combinat-10.6.31rc3.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|