passagemath-graphs 10.5.43__cp39-cp39-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- passagemath_graphs-10.5.43.dist-info/METADATA +293 -0
- passagemath_graphs-10.5.43.dist-info/RECORD +258 -0
- passagemath_graphs-10.5.43.dist-info/WHEEL +5 -0
- passagemath_graphs-10.5.43.dist-info/top_level.txt +2 -0
- passagemath_graphs.libs/libgcc_s-69c45f16.so.1 +0 -0
- passagemath_graphs.libs/libgmp-8e78bd9b.so.10.5.0 +0 -0
- passagemath_graphs.libs/libstdc++-1f1a71be.so.6.0.33 +0 -0
- sage/all__sagemath_graphs.py +39 -0
- sage/combinat/abstract_tree.py +2552 -0
- sage/combinat/all__sagemath_graphs.py +34 -0
- sage/combinat/binary_tree.py +5306 -0
- sage/combinat/cluster_algebra_quiver/all.py +22 -0
- sage/combinat/cluster_algebra_quiver/cluster_seed.py +5208 -0
- sage/combinat/cluster_algebra_quiver/interact.py +125 -0
- sage/combinat/cluster_algebra_quiver/mutation_class.py +625 -0
- sage/combinat/cluster_algebra_quiver/mutation_type.py +1556 -0
- sage/combinat/cluster_algebra_quiver/quiver.py +2262 -0
- sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py +2468 -0
- sage/combinat/designs/MOLS_handbook_data.py +570 -0
- sage/combinat/designs/all.py +58 -0
- sage/combinat/designs/bibd.py +1655 -0
- sage/combinat/designs/block_design.py +1071 -0
- sage/combinat/designs/covering_array.py +269 -0
- sage/combinat/designs/covering_design.py +534 -0
- sage/combinat/designs/database.py +5614 -0
- sage/combinat/designs/design_catalog.py +122 -0
- sage/combinat/designs/designs_pyx.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/designs/designs_pyx.pxd +21 -0
- sage/combinat/designs/designs_pyx.pyx +993 -0
- sage/combinat/designs/difference_family.py +3951 -0
- sage/combinat/designs/difference_matrices.py +279 -0
- sage/combinat/designs/evenly_distributed_sets.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/designs/evenly_distributed_sets.pyx +661 -0
- sage/combinat/designs/ext_rep.py +1064 -0
- sage/combinat/designs/gen_quadrangles_with_spread.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/designs/gen_quadrangles_with_spread.pyx +339 -0
- sage/combinat/designs/group_divisible_designs.py +361 -0
- sage/combinat/designs/incidence_structures.py +2357 -0
- sage/combinat/designs/latin_squares.py +548 -0
- sage/combinat/designs/orthogonal_arrays.py +2243 -0
- sage/combinat/designs/orthogonal_arrays_build_recursive.py +1780 -0
- sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/designs/orthogonal_arrays_find_recursive.pyx +966 -0
- sage/combinat/designs/resolvable_bibd.py +781 -0
- sage/combinat/designs/steiner_quadruple_systems.py +1306 -0
- sage/combinat/designs/subhypergraph_search.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/designs/subhypergraph_search.pyx +530 -0
- sage/combinat/designs/twographs.py +306 -0
- sage/combinat/finite_state_machine.py +14874 -0
- sage/combinat/finite_state_machine_generators.py +2006 -0
- sage/combinat/graph_path.py +448 -0
- sage/combinat/interval_posets.py +3908 -0
- sage/combinat/nu_tamari_lattice.py +269 -0
- sage/combinat/ordered_tree.py +1446 -0
- sage/combinat/posets/all.py +46 -0
- sage/combinat/posets/cartesian_product.py +493 -0
- sage/combinat/posets/d_complete.py +182 -0
- sage/combinat/posets/elements.py +273 -0
- sage/combinat/posets/forest.py +30 -0
- sage/combinat/posets/hasse_cython.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/posets/hasse_cython.pyx +174 -0
- sage/combinat/posets/hasse_diagram.py +3678 -0
- sage/combinat/posets/incidence_algebras.py +796 -0
- sage/combinat/posets/lattices.py +5119 -0
- sage/combinat/posets/linear_extension_iterator.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/combinat/posets/linear_extension_iterator.pyx +292 -0
- sage/combinat/posets/linear_extensions.py +1039 -0
- sage/combinat/posets/mobile.py +275 -0
- sage/combinat/posets/moebius_algebra.py +776 -0
- sage/combinat/posets/poset_examples.py +2131 -0
- sage/combinat/posets/posets.py +9169 -0
- sage/combinat/rooted_tree.py +1070 -0
- sage/combinat/shard_order.py +239 -0
- sage/combinat/tamari_lattices.py +384 -0
- sage/combinat/yang_baxter_graph.py +923 -0
- sage/databases/all__sagemath_graphs.py +1 -0
- sage/databases/knotinfo_db.py +1230 -0
- sage/ext_data/all__sagemath_graphs.py +1 -0
- sage/ext_data/graphs/graph_plot_js.html +330 -0
- sage/ext_data/kenzo/CP2.txt +45 -0
- sage/ext_data/kenzo/CP3.txt +349 -0
- sage/ext_data/kenzo/CP4.txt +4774 -0
- sage/ext_data/kenzo/README.txt +49 -0
- sage/ext_data/kenzo/S4.txt +20 -0
- sage/graphs/all.py +42 -0
- sage/graphs/asteroidal_triples.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/asteroidal_triples.pyx +299 -0
- sage/graphs/base/all.py +1 -0
- sage/graphs/base/boost_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/boost_graph.pxd +106 -0
- sage/graphs/base/boost_graph.pyx +3045 -0
- sage/graphs/base/c_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/c_graph.pxd +106 -0
- sage/graphs/base/c_graph.pyx +5096 -0
- sage/graphs/base/dense_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/dense_graph.pxd +26 -0
- sage/graphs/base/dense_graph.pyx +757 -0
- sage/graphs/base/graph_backends.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/graph_backends.pxd +5 -0
- sage/graphs/base/graph_backends.pyx +797 -0
- sage/graphs/base/overview.py +85 -0
- sage/graphs/base/sparse_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/sparse_graph.pxd +90 -0
- sage/graphs/base/sparse_graph.pyx +1653 -0
- sage/graphs/base/static_dense_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/static_dense_graph.pxd +5 -0
- sage/graphs/base/static_dense_graph.pyx +1032 -0
- sage/graphs/base/static_sparse_backend.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/static_sparse_backend.pxd +27 -0
- sage/graphs/base/static_sparse_backend.pyx +1580 -0
- sage/graphs/base/static_sparse_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/base/static_sparse_graph.pxd +37 -0
- sage/graphs/base/static_sparse_graph.pyx +1304 -0
- sage/graphs/bipartite_graph.py +2709 -0
- sage/graphs/centrality.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/centrality.pyx +965 -0
- sage/graphs/cographs.py +519 -0
- sage/graphs/comparability.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/comparability.pyx +813 -0
- sage/graphs/connectivity.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/connectivity.pxd +157 -0
- sage/graphs/connectivity.pyx +4813 -0
- sage/graphs/convexity_properties.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/convexity_properties.pxd +16 -0
- sage/graphs/convexity_properties.pyx +827 -0
- sage/graphs/digraph.py +4410 -0
- sage/graphs/digraph_generators.py +1921 -0
- sage/graphs/distances_all_pairs.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/distances_all_pairs.pxd +12 -0
- sage/graphs/distances_all_pairs.pyx +2938 -0
- sage/graphs/domination.py +1363 -0
- sage/graphs/dot2tex_utils.py +100 -0
- sage/graphs/edge_connectivity.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/edge_connectivity.pyx +1215 -0
- sage/graphs/generators/all.py +1 -0
- sage/graphs/generators/basic.py +1769 -0
- sage/graphs/generators/chessboard.py +538 -0
- sage/graphs/generators/classical_geometries.py +1611 -0
- sage/graphs/generators/degree_sequence.py +235 -0
- sage/graphs/generators/distance_regular.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/generators/distance_regular.pyx +2846 -0
- sage/graphs/generators/families.py +4749 -0
- sage/graphs/generators/intersection.py +565 -0
- sage/graphs/generators/platonic_solids.py +262 -0
- sage/graphs/generators/random.py +2623 -0
- sage/graphs/generators/smallgraphs.py +5741 -0
- sage/graphs/generators/world_map.py +724 -0
- sage/graphs/generic_graph.py +26395 -0
- sage/graphs/generic_graph_pyx.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/generic_graph_pyx.pxd +34 -0
- sage/graphs/generic_graph_pyx.pyx +1626 -0
- sage/graphs/genus.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/genus.pyx +623 -0
- sage/graphs/graph.py +9362 -0
- sage/graphs/graph_coloring.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_coloring.pyx +2284 -0
- sage/graphs/graph_database.py +1122 -0
- sage/graphs/graph_decompositions/all.py +1 -0
- sage/graphs/graph_decompositions/bandwidth.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/bandwidth.pyx +428 -0
- sage/graphs/graph_decompositions/clique_separators.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/clique_separators.pyx +595 -0
- sage/graphs/graph_decompositions/cutwidth.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/cutwidth.pyx +753 -0
- sage/graphs/graph_decompositions/fast_digraph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/fast_digraph.pxd +13 -0
- sage/graphs/graph_decompositions/fast_digraph.pyx +212 -0
- sage/graphs/graph_decompositions/graph_products.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/graph_products.pyx +462 -0
- sage/graphs/graph_decompositions/modular_decomposition.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/modular_decomposition.pxd +27 -0
- sage/graphs/graph_decompositions/modular_decomposition.pyx +1536 -0
- sage/graphs/graph_decompositions/slice_decomposition.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/slice_decomposition.pxd +18 -0
- sage/graphs/graph_decompositions/slice_decomposition.pyx +1080 -0
- sage/graphs/graph_decompositions/tree_decomposition.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/tree_decomposition.pxd +17 -0
- sage/graphs/graph_decompositions/tree_decomposition.pyx +1996 -0
- sage/graphs/graph_decompositions/vertex_separation.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_decompositions/vertex_separation.pxd +5 -0
- sage/graphs/graph_decompositions/vertex_separation.pyx +1963 -0
- sage/graphs/graph_editor.py +82 -0
- sage/graphs/graph_generators.py +3301 -0
- sage/graphs/graph_generators_pyx.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/graph_generators_pyx.pyx +95 -0
- sage/graphs/graph_input.py +812 -0
- sage/graphs/graph_latex.py +2064 -0
- sage/graphs/graph_list.py +367 -0
- sage/graphs/graph_plot.py +1749 -0
- sage/graphs/graph_plot_js.py +338 -0
- sage/graphs/hyperbolicity.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/hyperbolicity.pyx +1702 -0
- sage/graphs/hypergraph_generators.py +364 -0
- sage/graphs/independent_sets.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/independent_sets.pxd +13 -0
- sage/graphs/independent_sets.pyx +402 -0
- sage/graphs/isgci.py +1033 -0
- sage/graphs/isoperimetric_inequalities.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/isoperimetric_inequalities.pyx +453 -0
- sage/graphs/line_graph.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/line_graph.pyx +627 -0
- sage/graphs/lovasz_theta.py +77 -0
- sage/graphs/matching.py +1633 -0
- sage/graphs/matching_covered_graph.py +3566 -0
- sage/graphs/orientations.py +1504 -0
- sage/graphs/partial_cube.py +459 -0
- sage/graphs/path_enumeration.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/path_enumeration.pyx +2040 -0
- sage/graphs/pq_trees.py +1129 -0
- sage/graphs/print_graphs.py +201 -0
- sage/graphs/schnyder.py +865 -0
- sage/graphs/spanning_tree.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/spanning_tree.pyx +1457 -0
- sage/graphs/strongly_regular_db.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/strongly_regular_db.pyx +3340 -0
- sage/graphs/traversals.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/traversals.pxd +9 -0
- sage/graphs/traversals.pyx +1871 -0
- sage/graphs/trees.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/trees.pxd +15 -0
- sage/graphs/trees.pyx +310 -0
- sage/graphs/tutte_polynomial.py +713 -0
- sage/graphs/views.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/views.pyx +794 -0
- sage/graphs/weakly_chordal.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/graphs/weakly_chordal.pyx +562 -0
- sage/groups/all__sagemath_graphs.py +1 -0
- sage/groups/perm_gps/all__sagemath_graphs.py +1 -0
- sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py +1 -0
- sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-39-aarch64-linux-gnu.so +0 -0
- sage/groups/perm_gps/partn_ref/refinement_graphs.pxd +38 -0
- sage/groups/perm_gps/partn_ref/refinement_graphs.pyx +1666 -0
- sage/knots/all.py +6 -0
- sage/knots/free_knotinfo_monoid.py +507 -0
- sage/knots/gauss_code.py +291 -0
- sage/knots/knot.py +682 -0
- sage/knots/knot_table.py +284 -0
- sage/knots/knotinfo.py +2880 -0
- sage/knots/link.py +4682 -0
- sage/sandpiles/all.py +13 -0
- sage/sandpiles/examples.py +225 -0
- sage/sandpiles/sandpile.py +6365 -0
- sage/topology/all.py +22 -0
- sage/topology/cell_complex.py +1214 -0
- sage/topology/cubical_complex.py +1977 -0
- sage/topology/delta_complex.py +1806 -0
- sage/topology/filtered_simplicial_complex.py +744 -0
- sage/topology/moment_angle_complex.py +823 -0
- sage/topology/simplicial_complex.py +5161 -0
- sage/topology/simplicial_complex_catalog.py +86 -0
- sage/topology/simplicial_complex_examples.py +1692 -0
- sage/topology/simplicial_complex_homset.py +205 -0
- sage/topology/simplicial_complex_morphism.py +836 -0
- sage/topology/simplicial_set.py +4102 -0
- sage/topology/simplicial_set_catalog.py +55 -0
- sage/topology/simplicial_set_constructions.py +2954 -0
- sage/topology/simplicial_set_examples.py +865 -0
- sage/topology/simplicial_set_morphism.py +1464 -0
@@ -0,0 +1,293 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: passagemath-graphs
|
3
|
+
Version: 10.5.43
|
4
|
+
Summary: passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
|
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://doc.sagemath.org
|
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 :: MacOS :: MacOS X
|
21
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
28
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
29
|
+
Requires-Python: <3.14,>=3.9
|
30
|
+
Description-Content-Type: text/x-rst
|
31
|
+
Requires-Dist: gmpy2~=2.1.b999
|
32
|
+
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
33
|
+
Requires-Dist: memory_allocator
|
34
|
+
Requires-Dist: passagemath-categories~=10.5.43.0
|
35
|
+
Requires-Dist: passagemath-environment~=10.5.43.0
|
36
|
+
Provides-Extra: test
|
37
|
+
Requires-Dist: passagemath-repl; extra == "test"
|
38
|
+
Provides-Extra: benzene
|
39
|
+
Requires-Dist: passagemath-benzene; extra == "benzene"
|
40
|
+
Provides-Extra: bliss
|
41
|
+
Requires-Dist: passagemath-bliss; extra == "bliss"
|
42
|
+
Provides-Extra: buckygen
|
43
|
+
Requires-Dist: passagemath-buckygen; extra == "buckygen"
|
44
|
+
Provides-Extra: cliquer
|
45
|
+
Requires-Dist: passagemath-cliquer; extra == "cliquer"
|
46
|
+
Provides-Extra: cmr
|
47
|
+
Requires-Dist: passagemath-cmr; extra == "cmr"
|
48
|
+
Provides-Extra: gap
|
49
|
+
Requires-Dist: passagemath-gap; extra == "gap"
|
50
|
+
Provides-Extra: igraph
|
51
|
+
Requires-Dist: igraph; extra == "igraph"
|
52
|
+
Provides-Extra: mcqd
|
53
|
+
Requires-Dist: passagemath-mcqd; extra == "mcqd"
|
54
|
+
Provides-Extra: nauty
|
55
|
+
Requires-Dist: passagemath-nauty; extra == "nauty"
|
56
|
+
Provides-Extra: networkx
|
57
|
+
Requires-Dist: networkx>=2.4; extra == "networkx"
|
58
|
+
Provides-Extra: pari
|
59
|
+
Requires-Dist: passagemath-pari; extra == "pari"
|
60
|
+
Provides-Extra: planarity
|
61
|
+
Requires-Dist: passagemath-planarity; extra == "planarity"
|
62
|
+
Provides-Extra: plantri
|
63
|
+
Requires-Dist: passagemath-plantri; extra == "plantri"
|
64
|
+
Provides-Extra: rankwidth
|
65
|
+
Requires-Dist: passagemath-rankwidth; extra == "rankwidth"
|
66
|
+
Provides-Extra: rw
|
67
|
+
Requires-Dist: passagemath-graphs[rankwidth]; extra == "rw"
|
68
|
+
Provides-Extra: tdlib
|
69
|
+
Requires-Dist: passagemath-tdlib; extra == "tdlib"
|
70
|
+
Provides-Extra: combinat
|
71
|
+
Requires-Dist: passagemath-combinat; extra == "combinat"
|
72
|
+
Provides-Extra: editor
|
73
|
+
Requires-Dist: phitigra>=0.2.6; extra == "editor"
|
74
|
+
Provides-Extra: groups
|
75
|
+
Requires-Dist: passagemath-groups; extra == "groups"
|
76
|
+
Requires-Dist: passagemath-graphs[nauty]; extra == "groups"
|
77
|
+
Provides-Extra: homology
|
78
|
+
Requires-Dist: passagemath-modules; extra == "homology"
|
79
|
+
Provides-Extra: mip
|
80
|
+
Requires-Dist: passagemath-polyhedra; extra == "mip"
|
81
|
+
Provides-Extra: modules
|
82
|
+
Requires-Dist: passagemath-modules; extra == "modules"
|
83
|
+
Provides-Extra: plot
|
84
|
+
Requires-Dist: passagemath-plot; extra == "plot"
|
85
|
+
Provides-Extra: polyhedra
|
86
|
+
Requires-Dist: passagemath-polyhedra; extra == "polyhedra"
|
87
|
+
Provides-Extra: repl
|
88
|
+
Requires-Dist: passagemath-repl; extra == "repl"
|
89
|
+
Provides-Extra: sat
|
90
|
+
Requires-Dist: passagemath-combinat; extra == "sat"
|
91
|
+
Provides-Extra: standard
|
92
|
+
Requires-Dist: passagemath-graphs[combinat,databases,groups,mip,modules,planarity,polyhedra,rankwidth,repl]; extra == "standard"
|
93
|
+
Requires-Dist: passagemath-plot[tachyon]; extra == "standard"
|
94
|
+
|
95
|
+
=======================================================================================================================================================
|
96
|
+
passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
|
97
|
+
=======================================================================================================================================================
|
98
|
+
|
99
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
100
|
+
source mathematical software in Python, released under the GNU General
|
101
|
+
Public Licence GPLv2+.
|
102
|
+
|
103
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
104
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
105
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
106
|
+
|
107
|
+
The passagemath fork was created in October 2024 with the following
|
108
|
+
goals:
|
109
|
+
|
110
|
+
- providing modularized installation with pip, thus completing a `major
|
111
|
+
project started in 2020 in the Sage
|
112
|
+
codebase <https://github.com/sagemath/sage/issues/29705>`__,
|
113
|
+
- establishing first-class membership in the scientific Python
|
114
|
+
ecosystem,
|
115
|
+
- giving `clear attribution of upstream
|
116
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
117
|
+
- providing independently usable Python interfaces to upstream
|
118
|
+
libraries,
|
119
|
+
- providing `platform portability and integration testing
|
120
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
121
|
+
to upstream projects,
|
122
|
+
- inviting collaborations with upstream projects,
|
123
|
+
- `building a professional, respectful, inclusive
|
124
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
125
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
126
|
+
serverless deployment with Javascript,
|
127
|
+
- developing a native Windows port.
|
128
|
+
|
129
|
+
`Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
|
130
|
+
available online.
|
131
|
+
|
132
|
+
passagemath attempts to support all major Linux distributions and recent versions of
|
133
|
+
macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
|
134
|
+
virtualization.
|
135
|
+
|
136
|
+
Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
|
137
|
+
Python 3.13.x is also supported, but some third-party packages are still missing wheels,
|
138
|
+
so compilation from source is triggered for those.
|
139
|
+
|
140
|
+
|
141
|
+
About this pip-installable distribution package
|
142
|
+
-----------------------------------------------
|
143
|
+
|
144
|
+
This pip-installable package `passagemath-graphs` is a distribution of a part of the Sage Library. It provides a small subset of the modules of the Sage library ("sagelib", `passagemath-standard`) for computations with graphs, posets, complexes, etc.
|
145
|
+
|
146
|
+
It consists of over 170 first-party Python and Cython modules and uses the `Boost Graph Library <https://github.com/boostorg/graph>`_, with additional functionality from `NetworkX <https://networkx.github.io/>`_ and several other libraries.
|
147
|
+
|
148
|
+
|
149
|
+
What is included
|
150
|
+
----------------
|
151
|
+
|
152
|
+
* `Graph Theory <https://doc.sagemath.org/html/en/reference/graphs/index.html>`_
|
153
|
+
|
154
|
+
* `Trees <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/enumerated_sets.html#trees>`_
|
155
|
+
|
156
|
+
* `Posets <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/posets/all.html>`_
|
157
|
+
|
158
|
+
* `Abstract Complexes <https://doc.sagemath.org/html/en/reference/topology/index.html>`_
|
159
|
+
|
160
|
+
* `Combinatorial Designs and Incidence Structure <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/designs/all.html>`_
|
161
|
+
|
162
|
+
* `Finite State Machines, Automata, Transducers <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/finite_state_machine.html>`_
|
163
|
+
|
164
|
+
* `Cluster Algebras and Quivers <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/cluster_algebra_quiver/all.html>`_
|
165
|
+
|
166
|
+
* `Knot Theory <https://doc.sagemath.org/html/en/reference/knots/index.html>`_
|
167
|
+
|
168
|
+
* `Sandpiles <https://doc.sagemath.org/html/en/reference/dynamics/sage/sandpiles/sandpile.html>`_
|
169
|
+
|
170
|
+
* see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-graphs/MANIFEST.in
|
171
|
+
|
172
|
+
|
173
|
+
Examples
|
174
|
+
--------
|
175
|
+
|
176
|
+
A quick way to try it out interactively::
|
177
|
+
|
178
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[test]" ipython
|
179
|
+
In [1]: from sage.all__sagemath_graphs import *
|
180
|
+
|
181
|
+
In [6]: g = Graph([(1, 3), (3, 8), (5, 2)]); g
|
182
|
+
Out[6]: Graph on 5 vertices
|
183
|
+
|
184
|
+
In [7]: g.is_connected()
|
185
|
+
Out[7]: False
|
186
|
+
|
187
|
+
|
188
|
+
Available as extras, from other distributions
|
189
|
+
---------------------------------------------
|
190
|
+
|
191
|
+
Libraries
|
192
|
+
~~~~~~~~~
|
193
|
+
|
194
|
+
``pip install passagemath-graphs[benzene,buckygen,plantri]`` additionally make
|
195
|
+
various graph generators available via `passagemath-benzene <https://pypi.org/project/passagemath-benzene/>`_, `passagemath-buckygen <https://pypi.org/project/passagemath-buckygen/>`_, and `passagemath-plantri <https://pypi.org/project/passagemath-plantri/>`_.
|
196
|
+
|
197
|
+
``pip install passagemath-graphs[bliss]`` additionally installs `passagemath-bliss <https://pypi.org/project/passagemath-bliss/>`_ for the purpose
|
198
|
+
of computing graph (iso/auto)morphisms.
|
199
|
+
|
200
|
+
``pip install passagemath-graphs[cliquer]`` additionally installs `passagemath-cliquer <https://pypi.org/project/passagemath-cliquer/>`_
|
201
|
+
|
202
|
+
``pip install passagemath-graphs[cmr]`` additionally installs `passagemath-cmr <https://pypi.org/project/passagemath-cmr/>`_ for recognition and decomposition algorithms
|
203
|
+
for network matrices, totally unimodular matrices and regular matroids, series-parallel matroids, etc.
|
204
|
+
|
205
|
+
``pip install passagemath-graphs[gap]`` additionally installs `passagemath-gap <https://pypi.org/project/passagemath-gap/>`_ for group-theoretic functionality.
|
206
|
+
|
207
|
+
``pip install passagemath-graphs[igraph]`` additionally installs
|
208
|
+
`igraph <https://python.igraph.org/en/stable/>`_::
|
209
|
+
|
210
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[igraph,test]" ipython
|
211
|
+
In [1]: from sage.all__sagemath_graphs import *
|
212
|
+
|
213
|
+
In [2]: ## Example depending on igraph goes here
|
214
|
+
|
215
|
+
``pip install passagemath-graphs[mcqd]`` additionally installs `passagemath-mcqd <https://pypi.org/project/passagemath-mcqd/>`_
|
216
|
+
|
217
|
+
``pip install passagemath-graphs[nauty]`` additionally installs `passagemath-nauty <https://pypi.org/project/passagemath-nauty/>`_ for computing
|
218
|
+
automorphism groups of graphs and digraphs.
|
219
|
+
|
220
|
+
``pip install passagemath-graphs[networkx]`` additionally installs
|
221
|
+
`NetworkX <https://networkx.github.io>`__::
|
222
|
+
|
223
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[networkx,test]" ipython
|
224
|
+
In [1]: from sage.all__sagemath_graphs import *
|
225
|
+
|
226
|
+
In [2]: ## Example depending on networkx goes here
|
227
|
+
|
228
|
+
``pip install passagemath-graphs[pari]`` additionally installs `passagemath-pari <https://pypi.org/project/passagemath-pari/>`_
|
229
|
+
|
230
|
+
``pip install passagemath-graphs[planarity]`` additionally installs `passagemath-planarity <https://pypi.org/project/passagemath-planarity/>`_ for planarity testing.
|
231
|
+
|
232
|
+
``pip install passagemath-graphs[rankwidth]`` additionally installs `passagemath-rankwidth <https://pypi.org/project/passagemath-rankwidth/>`_ for rank width and rank decompositions.
|
233
|
+
|
234
|
+
``pip install passagemath-graphs[tdlib]`` additionally installs `passagemath-tdlib <https://pypi.org/project/passagemath-tdlib/>`_ for computing tree decompositions.
|
235
|
+
|
236
|
+
|
237
|
+
Features
|
238
|
+
~~~~~~~~
|
239
|
+
|
240
|
+
``pip install passagemath-graphs[combinat]`` additionally installs `passagemath-combinat <https://pypi.org/project/passagemath-combinat/>`_
|
241
|
+
|
242
|
+
``pip install passagemath-graphs[editor]`` additionally installs the interactive graph editor `phitigra <https://pypi.org/project/phitigra/>`_.
|
243
|
+
|
244
|
+
``pip install passagemath-graphs[groups]`` additionally makes group-theoretic features
|
245
|
+
available via `passagemath-gap <https://pypi.org/project/passagemath-gap/>`_, `passagemath-groups <https://pypi.org/project/passagemath-groups/>`_, and `passagemath-nauty <https://pypi.org/project/passagemath-nauty/>`_::
|
246
|
+
|
247
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[groups,test]" ipython
|
248
|
+
In [1]: from sage.all__sagemath_graphs import *
|
249
|
+
|
250
|
+
In [2]: g = Graph({
|
251
|
+
0: [1, 2],
|
252
|
+
1: [0, 2],
|
253
|
+
2: [0, 1, 3],
|
254
|
+
3: [2]
|
255
|
+
})
|
256
|
+
|
257
|
+
In [3]: aut = g.automorphism_group()
|
258
|
+
|
259
|
+
In [4]: print(aut.order())
|
260
|
+
|
261
|
+
``pip install passagemath-graphs[homology]`` provides homological computations for abstract complexes via `passagemath-modules <https://pypi.org/project/passagemath-modules/>`_.
|
262
|
+
|
263
|
+
``pip install passagemath-graphs[mip]`` additionally makes the mixed-integer programming
|
264
|
+
solver GLPK available via `passagemath-glpk <https://pypi.org/project/passagemath-glpk/>`_ and `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra/>`_ (see there for other available solvers).::
|
265
|
+
|
266
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[mip,test]" ipython
|
267
|
+
In [1]: from sage.all__sagemath_graphs import *
|
268
|
+
|
269
|
+
In [2]: ## Example depending on MIP goes here
|
270
|
+
|
271
|
+
``pip install passagemath-graphs[modules]`` additionally makes linear algebra features available via `passagemath-modules <https://pypi.org/project/passagemath-modules/>`_.
|
272
|
+
|
273
|
+
``pip install passagemath-graphs[plot]`` additionally installs `passagemath-plot <https://pypi.org/project/passagemath-plot/>`_.
|
274
|
+
|
275
|
+
``pip install passagemath-graphs[polyhedra]`` additionally installs `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra/>`_.
|
276
|
+
|
277
|
+
``pip install passagemath-graphs[sat]`` additionally provides SAT features via `passagemath-combinat <https://pypi.org/project/passagemath-combinat/>`_.
|
278
|
+
|
279
|
+
``pip install passagemath-graphs[standard]`` installs all libraries and features related to graphs that
|
280
|
+
are available in a standard installation of Sage.
|
281
|
+
|
282
|
+
|
283
|
+
Development
|
284
|
+
-----------
|
285
|
+
|
286
|
+
::
|
287
|
+
|
288
|
+
$ git clone --origin passagemath https://github.com/passagemath/passagemath.git
|
289
|
+
$ cd passagemath
|
290
|
+
passagemath $ ./bootstrap
|
291
|
+
passagemath $ python3 -m venv graphs-venv
|
292
|
+
passagemath $ source graphs-venv/bin/activate
|
293
|
+
(graphs-venv) passagemath $ pip install -v -e pkgs/sagemath-graphs
|
@@ -0,0 +1,258 @@
|
|
1
|
+
passagemath_graphs.libs/libgcc_s-69c45f16.so.1,sha256=BOFjRP57t9LgRNNAnFVK5VHmrp5UU-p5NcfcZ10dnd4,201673
|
2
|
+
passagemath_graphs.libs/libgmp-8e78bd9b.so.10.5.0,sha256=im50qR2w_N41DOhdzO_WChiY-_a2Ite2YarRdCFuysg,666617
|
3
|
+
passagemath_graphs.libs/libstdc++-1f1a71be.so.6.0.33,sha256=sURAhanafc8tH6FGDqPKz7dsPGNb0Aym8vBo6UbJ3Ok,3650097
|
4
|
+
sage/all__sagemath_graphs.py,sha256=q3QFFFTkeijGtFSjZtlnAko3Mrnr8fK-m5Yghw2VQyM,837
|
5
|
+
sage/combinat/abstract_tree.py,sha256=mE_VtaSWztO_BJHthsJNhvD3mCTf2wVfHQr-3--169k,88714
|
6
|
+
sage/combinat/all__sagemath_graphs.py,sha256=zAse3aKr_WJaFWDL93rOM8mNuHUvs_hs0gJsoxfbqiQ,1329
|
7
|
+
sage/combinat/binary_tree.py,sha256=BnjdPKrHRxtJrlKmUSHqrDDQ0UvQbm8onuh0IHpSGV0,183189
|
8
|
+
sage/combinat/finite_state_machine.py,sha256=nOn9HzDZljzaNaTY_x4eL39HkM_2TbRreqXvk3X_XsI,574609
|
9
|
+
sage/combinat/finite_state_machine_generators.py,sha256=YqeqpPwWpra88B4GW5IcA2rtbXpbeT9uGxREegTJFdM,73186
|
10
|
+
sage/combinat/graph_path.py,sha256=enqb7IFVXGZ-roxtMJRTaTmCDY3qr_kkjC-03qg0p5s,13122
|
11
|
+
sage/combinat/interval_posets.py,sha256=n1EpZC2XnwvRAPiG-fA5c66krNlO2V-kox9LwgawHu0,147095
|
12
|
+
sage/combinat/nu_tamari_lattice.py,sha256=DIZ3Y-hyxvATa_NZDJKv3mzlUcjKVSS7N_drsJ9LDzY,9457
|
13
|
+
sage/combinat/ordered_tree.py,sha256=Q08B55_8JZPxiymIAh5bbhiepvWtjj3T96owcR0mLfw,47856
|
14
|
+
sage/combinat/rooted_tree.py,sha256=HwZ6OlSwROTXZoZsgPEd4Hz9VqYPMsZYXdrO-PbcT4s,34211
|
15
|
+
sage/combinat/shard_order.py,sha256=hULsSgJS39xMwEe8UrNCkoTZii41V-cROxE0PAvsE8k,8060
|
16
|
+
sage/combinat/tamari_lattices.py,sha256=1K261Ntyt3uZqkFVVTC_PVyimDFomOeJeEW3UAwqpQc,11061
|
17
|
+
sage/combinat/yang_baxter_graph.py,sha256=BGcGaIfAnOzW4g9tCg6uDpKrHHeG-Q5z74TBQa0JYhc,33932
|
18
|
+
sage/combinat/cluster_algebra_quiver/all.py,sha256=Kn96IeqXORbsHL0NSlKT3mKDtcM2biPzgxNrab-BiXY,831
|
19
|
+
sage/combinat/cluster_algebra_quiver/cluster_seed.py,sha256=8WyDGr-i77io5pC5xSCdMP-0ssdWxLZKyKVTN6eMx-Y,197656
|
20
|
+
sage/combinat/cluster_algebra_quiver/interact.py,sha256=ZKeMsySh5KcaMtnbfEbftKSYwCcRrkZjllaushry3N8,4266
|
21
|
+
sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
|
22
|
+
sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=MexdkgJF64f58LdVPDLaqdUYNtTbt4oCt7Gm5R-HKGg,76837
|
23
|
+
sage/combinat/cluster_algebra_quiver/quiver.py,sha256=6-EKk63ZQdHekayChrNd24M8CZpGTNZ5DQujNDQ9tfQ,86317
|
24
|
+
sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py,sha256=24QBRRseafrBvShSJC_ilP7nY6QwDX0U1GkMDxFhoBA,92005
|
25
|
+
sage/combinat/designs/MOLS_handbook_data.py,sha256=SOjglkjrMNtbttoKD5werH6IXSUMwt1Zh_cOLOPSwTU,42437
|
26
|
+
sage/combinat/designs/all.py,sha256=z1avRgBKp3Gu_OhxVMFYtxWoXCBOcFd_t5-C1JcoAkw,2015
|
27
|
+
sage/combinat/designs/bibd.py,sha256=fB_aPra3Cbr4uqef4vLN1sIKJ9yXn-teFGMOzrkRpiw,59071
|
28
|
+
sage/combinat/designs/block_design.py,sha256=PHZG5Q9egUb7PwVnX2MQq6UPATxZPp5zq_VpJzWLAxU,38165
|
29
|
+
sage/combinat/designs/covering_array.py,sha256=SC7dwTzNt4lYJk_FKRUt_EsaOYjFRXMJus2i8NKGP84,9600
|
30
|
+
sage/combinat/designs/covering_design.py,sha256=ysOReKTgxyYD5EVwNqd3iWESWM8oLJ5gQLRmQJrSa1A,17380
|
31
|
+
sage/combinat/designs/database.py,sha256=3zky0T2enXCAIFXfsHUlB1z2JsGbIuNpC8HFEHltgT0,242946
|
32
|
+
sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
|
33
|
+
sage/combinat/designs/designs_pyx.cpython-39-aarch64-linux-gnu.so,sha256=kZO7ockZxmcKhWbomQp-eCwozk-vCYH-gWhXQ6fNp4I,1380041
|
34
|
+
sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
|
35
|
+
sage/combinat/designs/designs_pyx.pyx,sha256=e3RtTEz6VofqnfFNpJHrTLhZ_eRdKsxSHDmkjV3_RXY,37180
|
36
|
+
sage/combinat/designs/difference_family.py,sha256=0fhKdWJVL0uErG5BwLfJKt2cDgF8gHIkudLtF6So1rI,155391
|
37
|
+
sage/combinat/designs/difference_matrices.py,sha256=H1gvPjsH890ASH66zSJj36yiFMIU_C40xYZA609eawE,8610
|
38
|
+
sage/combinat/designs/evenly_distributed_sets.cpython-39-aarch64-linux-gnu.so,sha256=X8W9qRGNsS1Tso_t8VKQjbp46ipi63K_LAmE3ICoj0Q,763520
|
39
|
+
sage/combinat/designs/evenly_distributed_sets.pyx,sha256=VktfzlQuB6wJVY6kk63YAXtSsh4yaO8i4XiWmOvs02Y,25543
|
40
|
+
sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
|
41
|
+
sage/combinat/designs/gen_quadrangles_with_spread.cpython-39-aarch64-linux-gnu.so,sha256=EAYQ_CcU3gJmH9Kfhf_iQZZLQYMcfsxSxfjDy8nbNwM,670776
|
42
|
+
sage/combinat/designs/gen_quadrangles_with_spread.pyx,sha256=oE049xlfXkX_ly-WpQZnPw2cNXYDueHeuRJ69bfTbkQ,10767
|
43
|
+
sage/combinat/designs/group_divisible_designs.py,sha256=U8YLCTUbbsdmWH8aiKqxWHv3AFNHqmCh1eoVFELIch4,13037
|
44
|
+
sage/combinat/designs/incidence_structures.py,sha256=-a1Ub9q_91055qr-Ns3CuQduJvVmVqja2tBbMRu0u4Q,89619
|
45
|
+
sage/combinat/designs/latin_squares.py,sha256=2O6O35hCPlemoRn4RzBQFgwjZyANoBO92cN8aMAxe5s,21834
|
46
|
+
sage/combinat/designs/orthogonal_arrays.py,sha256=MuJ5C7NtafuJUfjvzl9n1dea5Uwl6GgroEcDgWHSlXg,82581
|
47
|
+
sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
|
48
|
+
sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-39-aarch64-linux-gnu.so,sha256=HS5efjg_v0vVSMY_BgPpeD32B93hnSXDWO9FtQ4HFTQ,999016
|
49
|
+
sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=IIiOkj4T2ibHoUefBPxWxAN7n0gtzWQd6Cbii2ullbM,34298
|
50
|
+
sage/combinat/designs/resolvable_bibd.py,sha256=zZyP6-dTavplbCFR5vGa4zjb8tHqmn6FRF8NrPIrt4s,29761
|
51
|
+
sage/combinat/designs/steiner_quadruple_systems.py,sha256=-vnODm9iybM9_x36oDOFMZyu_kMaMTZWYbzcWAvaG0E,68601
|
52
|
+
sage/combinat/designs/subhypergraph_search.cpython-39-aarch64-linux-gnu.so,sha256=QoaLpC61HL-dzrHVJMy_40SazW0KVFQ3_y-EPTBLLdk,573728
|
53
|
+
sage/combinat/designs/subhypergraph_search.pyx,sha256=HLopGk2XtAZXaMHWSrAhhBdJC87szaeaNrcKpvSAFvA,18125
|
54
|
+
sage/combinat/designs/twographs.py,sha256=xr84mamGdA-DIGcti5mVhEIvwlkmOt5pBwv8RKe1whM,11227
|
55
|
+
sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
|
56
|
+
sage/combinat/posets/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
|
57
|
+
sage/combinat/posets/d_complete.py,sha256=ZkqWd-FTQMFppkXv8si4Ku4ZWmwydVeWWazv17JI1H0,6621
|
58
|
+
sage/combinat/posets/elements.py,sha256=xKAD36BOIBtKi3AJ-ITCQMnjjrnjSSBfDPokdIdz2y8,7961
|
59
|
+
sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
|
60
|
+
sage/combinat/posets/hasse_cython.cpython-39-aarch64-linux-gnu.so,sha256=auOvuJoqVkgpqSnv_Fpd9wgC6Co--33z9M6UUqame2c,652328
|
61
|
+
sage/combinat/posets/hasse_cython.pyx,sha256=xGUFu90go4BA_LwmXkbbRT5wnb5WB71jmwU1JnW4fj4,5989
|
62
|
+
sage/combinat/posets/hasse_diagram.py,sha256=Z87fc4ssKwWWxD2Mjvf5L0xZDyG8fheArbNQrelJTM4,133265
|
63
|
+
sage/combinat/posets/incidence_algebras.py,sha256=qf1d495q2BJItNf0Ills8IAlv_GlZeqb53MR_dsEX1k,25058
|
64
|
+
sage/combinat/posets/lattices.py,sha256=W2fN9oRs5dUUTX5cbw7iFFeEAj3c3oExhPQCEputFbQ,186239
|
65
|
+
sage/combinat/posets/linear_extension_iterator.cpython-39-aarch64-linux-gnu.so,sha256=aaQ3HOf60Ud5_K6VOExCn4DfY1KezvJ97wKkk6kKJAc,637440
|
66
|
+
sage/combinat/posets/linear_extension_iterator.pyx,sha256=1DVxfIsMvtsPGjOi3SUjWtVKFKXQfnk_UXKtmsTpQl4,9272
|
67
|
+
sage/combinat/posets/linear_extensions.py,sha256=hpABWmpo5kXMxKUY3A2R4JmrtyiYONe3M3oaS_VA2qM,41598
|
68
|
+
sage/combinat/posets/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
|
69
|
+
sage/combinat/posets/moebius_algebra.py,sha256=GmJdyCNhmIeT-hE0d-djJLRd2jgBtydPNyNgmG49Jfc,26371
|
70
|
+
sage/combinat/posets/poset_examples.py,sha256=23w6JjtzVyOR9RV-L8K1zLP41wUcI7H2ENtoLURt_IU,77050
|
71
|
+
sage/combinat/posets/posets.py,sha256=IVvddH6UUbUjFI1WhY6zKQUJBeC7UuhhfOOKEmZI1o8,332834
|
72
|
+
sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
73
|
+
sage/databases/knotinfo_db.py,sha256=EafNspIultVKdtZrwtzYySTGxPun0oTXN_zFCwagYQE,54188
|
74
|
+
sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
75
|
+
sage/ext_data/graphs/graph_plot_js.html,sha256=OmGUTusnlNQgxC3rb2q_1FR8flYvLT6DNfY0zjY_0_0,9811
|
76
|
+
sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
|
77
|
+
sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
|
78
|
+
sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
|
79
|
+
sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
|
80
|
+
sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
|
81
|
+
sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
|
82
|
+
sage/graphs/asteroidal_triples.cpython-39-aarch64-linux-gnu.so,sha256=1a9GFWQSiYCFrgayF6lanVCYxFH66TUoCMwzhmsxVyI,396169
|
83
|
+
sage/graphs/asteroidal_triples.pyx,sha256=8y4J9SN8HNXQIBRQjXPAmeSfkqJ1KaHmOe-NV5_3dpI,10431
|
84
|
+
sage/graphs/bipartite_graph.py,sha256=L0-eIF8q2JZbkKqOHEafxsbJirxrKVB5N0Gsh5CpVkQ,104781
|
85
|
+
sage/graphs/centrality.cpython-39-aarch64-linux-gnu.so,sha256=UyRxSOKVd958KFdbKhXb8qhFSdG_WqqGDx4sJH4NaQo,986561
|
86
|
+
sage/graphs/centrality.pyx,sha256=mJIHu3It0FzZsJ9vhNi5h1sr2_7SHFdPtXmUx6-c-R0,34973
|
87
|
+
sage/graphs/cographs.py,sha256=LTajbKp8uk-4NPdnuEUyd181qDXgA4Qb73r7_RNrx8c,15187
|
88
|
+
sage/graphs/comparability.cpython-39-aarch64-linux-gnu.so,sha256=oOKGa6a8qQ-3Pp_KIM8ZFIA397WBVwmmgxyoHCaQIqQ,1154368
|
89
|
+
sage/graphs/comparability.pyx,sha256=k6yGZH9qZbabyaIGPQBGY75Tmsl8EaT-_XyTgPtKPRI,30696
|
90
|
+
sage/graphs/connectivity.cpython-39-aarch64-linux-gnu.so,sha256=BxoyY8lvk_wxVg_wglLXAPy1YLMPU0z8ax_HAYC4GSA,4446960
|
91
|
+
sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
|
92
|
+
sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
|
93
|
+
sage/graphs/convexity_properties.cpython-39-aarch64-linux-gnu.so,sha256=KIs3MzglQlcgEFwKko0hePkhHqvYfozPPsOSBt7iJ7I,790089
|
94
|
+
sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
|
95
|
+
sage/graphs/convexity_properties.pyx,sha256=G5bhKH3lho-CMMNrIMTx3OjC0fN_8GekR_VwqGBynBk,29524
|
96
|
+
sage/graphs/digraph.py,sha256=uryks9iuR5KU_XpPV2dk2GHMud2djfX5wbcQKm-dkec,180720
|
97
|
+
sage/graphs/digraph_generators.py,sha256=QcVOE4jpqe8QxbEk79fFr33Mc0zZuIjJadkKTJG_-Bc,75899
|
98
|
+
sage/graphs/distances_all_pairs.cpython-39-aarch64-linux-gnu.so,sha256=hhoozpFkQRFCsKeJMPp6MzzY5OrUVgVA0k5EF6HaVtM,1511057
|
99
|
+
sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
|
100
|
+
sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
|
101
|
+
sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
|
102
|
+
sage/graphs/dot2tex_utils.py,sha256=nCUHldadHC4Jvdx3sOWypkwlRH7Lc3x_xCuJOk_o4jA,3165
|
103
|
+
sage/graphs/edge_connectivity.cpython-39-aarch64-linux-gnu.so,sha256=TRWEamsTlO7C9dUe5HXyXjcG01cD_HnlPtcX-P5IAWc,925689
|
104
|
+
sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
|
105
|
+
sage/graphs/generic_graph.py,sha256=AVIWhd10PwauaDHO4Ddv-xW9dZbi1PIhI3dCv8vVRr8,1094325
|
106
|
+
sage/graphs/generic_graph_pyx.cpython-39-aarch64-linux-gnu.so,sha256=2GOBweJHTiZLD8-JWLVuEWaQAkKuvnZzyt2du4IsQMc,1642633
|
107
|
+
sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
|
108
|
+
sage/graphs/generic_graph_pyx.pyx,sha256=T1QiJGKc1tcKSrMEFJM6-cTLko5ffC0kw2GH3Ml2qOs,58405
|
109
|
+
sage/graphs/genus.cpython-39-aarch64-linux-gnu.so,sha256=ptwMzndXuOe2QaIyvRxg3WrdiM7HRY4kOQ6k9wP3usw,503912
|
110
|
+
sage/graphs/genus.pyx,sha256=xlF94KFiTgiaagZmTJu-49-y--qhUUclo9BVbQwEn8s,21694
|
111
|
+
sage/graphs/graph.py,sha256=C078UpvczPdjrh9nqFr_uvruwXW7JyF9_fkRsRqkJNc,369909
|
112
|
+
sage/graphs/graph_coloring.cpython-39-aarch64-linux-gnu.so,sha256=X6BNzlZSz0bbDioVCrSnxJV4FAFgVvhL3ztpI-aQOC0,4460937
|
113
|
+
sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
|
114
|
+
sage/graphs/graph_database.py,sha256=IR6SzI3zZXhWrAhWOat_rweckxNYsq108GTL5APxCco,49241
|
115
|
+
sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
|
116
|
+
sage/graphs/graph_generators.py,sha256=TXNwxiDlyj8bBjkhA_bKhZljkk2k1pC736YYMyla3EA,133965
|
117
|
+
sage/graphs/graph_generators_pyx.cpython-39-aarch64-linux-gnu.so,sha256=whmUH6CTtg-j688-s3EuL69sRRmdDAxE0JG7ogZd-h8,289128
|
118
|
+
sage/graphs/graph_generators_pyx.pyx,sha256=1E81srDiCWxRmesm86ne47frn2UJ04Kp5AaFI7kW-j4,3092
|
119
|
+
sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
|
120
|
+
sage/graphs/graph_latex.py,sha256=58UNam13b4n9QVvdrMWGniZMrs-QnVXbmdpMPnA-Afg,99128
|
121
|
+
sage/graphs/graph_list.py,sha256=XW3g5tAW_zmdMpmEUgXniTeu3GG2i7e-_NgStIRGWdU,12712
|
122
|
+
sage/graphs/graph_plot.py,sha256=EfcwzdjrtsUuEXoyWb6j1CbkJt170ASzCmgkJiFuMfI,70278
|
123
|
+
sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
|
124
|
+
sage/graphs/hyperbolicity.cpython-39-aarch64-linux-gnu.so,sha256=haKAxc597zBVfcghw58kUdIZsg1OtCDLkZVzOcw6Ffo,1380081
|
125
|
+
sage/graphs/hyperbolicity.pyx,sha256=Xij4iR3b0gQ0095UklppcWc3uZfEeh3GlcjrYlN0jVM,64417
|
126
|
+
sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
|
127
|
+
sage/graphs/independent_sets.cpython-39-aarch64-linux-gnu.so,sha256=Y8evQR8IyOE27tcgmgf_x3g_OuNKHq2_nrOjL9Z8Bn8,593377
|
128
|
+
sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
|
129
|
+
sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
|
130
|
+
sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
|
131
|
+
sage/graphs/isoperimetric_inequalities.cpython-39-aarch64-linux-gnu.so,sha256=LfuvEzCIvy3sAHwymX62PEfsdvnRa6YtzxVWMIBSpxs,592873
|
132
|
+
sage/graphs/isoperimetric_inequalities.pyx,sha256=4pdhidMCuISinpH-4v7yxppuLZ7niRrIr5LjY62bPMc,15689
|
133
|
+
sage/graphs/line_graph.cpython-39-aarch64-linux-gnu.so,sha256=UE4Rh7otM-f_T_FmvQchkYf05Hoom86swIj4Vp74y6E,1014928
|
134
|
+
sage/graphs/line_graph.pyx,sha256=fg92Q-gxnzRMjPmID7IztliBYP7n8JL0HhpK0CTCLio,22272
|
135
|
+
sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
|
136
|
+
sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
|
137
|
+
sage/graphs/matching_covered_graph.py,sha256=B_-x9cutL3AIMGaKIayFyMyIUIB6JjZSDY3fy9OB-kc,143004
|
138
|
+
sage/graphs/orientations.py,sha256=ZMTASPviyKb4t2swDdTajNeGfemG3vbVmU9IwRUmCzU,53818
|
139
|
+
sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
|
140
|
+
sage/graphs/path_enumeration.cpython-39-aarch64-linux-gnu.so,sha256=IV7eNblwO8wV_EOr8EIyqKNHb-dBZpvOLMOglgcPQIE,2494385
|
141
|
+
sage/graphs/path_enumeration.pyx,sha256=5xXf3-5mobCohaddLgVx-jhyZaT7R4cB8lsNyVUb2zU,90410
|
142
|
+
sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
|
143
|
+
sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
|
144
|
+
sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
|
145
|
+
sage/graphs/spanning_tree.cpython-39-aarch64-linux-gnu.so,sha256=RhLeMJdzRgOOZgj2V-r6jw2s9OmXD1HW2dbOEyVWzcE,1652232
|
146
|
+
sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
|
147
|
+
sage/graphs/strongly_regular_db.cpython-39-aarch64-linux-gnu.so,sha256=e305L5YJf0KP4ttJwGyW512GrbWTpdYBeEkCnEUBkqg,6080864
|
148
|
+
sage/graphs/strongly_regular_db.pyx,sha256=FFxau4Zr8YjZp7wboDqJmCWcNOEHwxfizCnOrzicisU,132851
|
149
|
+
sage/graphs/traversals.cpython-39-aarch64-linux-gnu.so,sha256=WY0UEGFrXDIachpb0VJA7bUkcNy4ybTU9cq8AMpsDbE,1577225
|
150
|
+
sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
|
151
|
+
sage/graphs/traversals.pyx,sha256=si8EwslGcNTJYevubcuwqxmVgKTV0MhFk3ojDHGZnQw,66058
|
152
|
+
sage/graphs/trees.cpython-39-aarch64-linux-gnu.so,sha256=ciW4gRmDV7B2kgV8PIqnAB9Ilj4rlVlIUi9FKHTUV_w,239288
|
153
|
+
sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
|
154
|
+
sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
|
155
|
+
sage/graphs/tutte_polynomial.py,sha256=Wcid9JQ5dJFZITAzmJ18YnOskNPxCbzXvBDvgjNE-pA,21811
|
156
|
+
sage/graphs/views.cpython-39-aarch64-linux-gnu.so,sha256=GG2nXRailpVW6CD9BY44YzVkyuHA17Vq6MGzPgm6l9Y,780296
|
157
|
+
sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
|
158
|
+
sage/graphs/weakly_chordal.cpython-39-aarch64-linux-gnu.so,sha256=zvwKgt4yAyFrajHlqomwN-m4PXXszQssS0QlcW2GYt4,644992
|
159
|
+
sage/graphs/weakly_chordal.pyx,sha256=hgEid9JOeR2WYmMbnVM2_E4DSUHrb5iaN3E6oFFhqs8,19988
|
160
|
+
sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
161
|
+
sage/graphs/base/boost_graph.cpython-39-aarch64-linux-gnu.so,sha256=2dRg7W1m85FsROOrqzu1bjjzLy4DwNVTL-KV0yfiZLw,12617249
|
162
|
+
sage/graphs/base/boost_graph.pxd,sha256=K3GCaIXjsmhwgTzlSntrHi3IB1t2vJpOzSS7FQGlxEo,3655
|
163
|
+
sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
|
164
|
+
sage/graphs/base/c_graph.cpython-39-aarch64-linux-gnu.so,sha256=QHYCNNW4vvUUv-e19rYQW1hu-uBVOlj5ieI0a8Af0Jo,3611353
|
165
|
+
sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
|
166
|
+
sage/graphs/base/c_graph.pyx,sha256=Lr1cxK2A5mtR0EIQmYIljc2OgYgiBeRn5Rw0mC_k0x8,179656
|
167
|
+
sage/graphs/base/dense_graph.cpython-39-aarch64-linux-gnu.so,sha256=84kuR-GWkJ9vxvwoWY6F8pbzVGNT_A27Jn9TnlwV0mY,789801
|
168
|
+
sage/graphs/base/dense_graph.pxd,sha256=VltYtRdTHhfpXG11C-lfMPSlm57dyP4Ot3E3FOzlsjI,1119
|
169
|
+
sage/graphs/base/dense_graph.pyx,sha256=HfZU7L2IScsA8_a6VCcs8rM6aWRkYTSz8oRhJWHX5mY,24167
|
170
|
+
sage/graphs/base/graph_backends.cpython-39-aarch64-linux-gnu.so,sha256=-N9z-n3prk3a1Lc9sCScKNKRTf0fnIV81NbEYZTJAIk,596320
|
171
|
+
sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
|
172
|
+
sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
|
173
|
+
sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
|
174
|
+
sage/graphs/base/sparse_graph.cpython-39-aarch64-linux-gnu.so,sha256=9-OMiG7IM0N49NSYa-8fX8RqH3Wz4GOmyz22P0FMfXU,1117809
|
175
|
+
sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
|
176
|
+
sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
|
177
|
+
sage/graphs/base/static_dense_graph.cpython-39-aarch64-linux-gnu.so,sha256=cCHkUT8biGFTM2wbn8M8aA6IzwxnRbpKtUlhP3P-va4,1314473
|
178
|
+
sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
|
179
|
+
sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
|
180
|
+
sage/graphs/base/static_sparse_backend.cpython-39-aarch64-linux-gnu.so,sha256=NvHpd3gyFwlR1RQcT36HHugECdl40pEEGnGrMHXZzu4,1437776
|
181
|
+
sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
|
182
|
+
sage/graphs/base/static_sparse_backend.pyx,sha256=Gu5fS7Jq-p2jfNuU-QwV60YsUtyc2jVlZ9h9hWCM9eE,55323
|
183
|
+
sage/graphs/base/static_sparse_graph.cpython-39-aarch64-linux-gnu.so,sha256=IPNDLjK1l5Tx_qXBAMQLhr9X0Ff4q2GwIOPGjciAdKc,1052833
|
184
|
+
sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
|
185
|
+
sage/graphs/base/static_sparse_graph.pyx,sha256=bnMe1AinoGjIsIlsJGeCCRuihiDtZkGQmG4kh41hvqM,49908
|
186
|
+
sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
187
|
+
sage/graphs/generators/basic.py,sha256=aSkIJvPJ_eD5pG-2Uf5jh5qxEv8Tbe7o3vwDLiisSYc,61441
|
188
|
+
sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
|
189
|
+
sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
|
190
|
+
sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
|
191
|
+
sage/graphs/generators/distance_regular.cpython-39-aarch64-linux-gnu.so,sha256=gqKCSH64CMGajiD9oK_BjOT_oiaDqdG43sE5MDA3xuQ,5090920
|
192
|
+
sage/graphs/generators/distance_regular.pyx,sha256=qnYVaHCpc7L4m2Z1pXuEg98tyJ2ED73bNky5_Fk9ASI,96145
|
193
|
+
sage/graphs/generators/families.py,sha256=Ex6zqwclb1OXLs7uzuLaBzrWmiephaD0nwKSR5jYxGY,164644
|
194
|
+
sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
|
195
|
+
sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
|
196
|
+
sage/graphs/generators/random.py,sha256=Hwnid8-_Hx9N8kA6i9Vpuqlw-l-5cemVqUjo7qSCpVw,92229
|
197
|
+
sage/graphs/generators/smallgraphs.py,sha256=Kwqzi6iXl36QRVJ8L9-YQcuRjIMlAVhJQpMDdXmwIBY,201988
|
198
|
+
sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
|
199
|
+
sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
200
|
+
sage/graphs/graph_decompositions/bandwidth.cpython-39-aarch64-linux-gnu.so,sha256=1DY1rV0nZxqoav31aZToJ_-I9lN0D_VeghqswmD3OEw,324208
|
201
|
+
sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
|
202
|
+
sage/graphs/graph_decompositions/clique_separators.cpython-39-aarch64-linux-gnu.so,sha256=_cYg1oeyVu4mc40W9R_cF9DfTIeRMapYBG7tSFDhDRI,1118353
|
203
|
+
sage/graphs/graph_decompositions/clique_separators.pyx,sha256=nZpjLIQYuRND2eu1jvvawGo19_WSFROk8I1NRhHzhCU,22876
|
204
|
+
sage/graphs/graph_decompositions/cutwidth.cpython-39-aarch64-linux-gnu.so,sha256=govIoCGWUykp_mwjh17mHuZaPgCDJmTPVoyaBvauqZ0,933128
|
205
|
+
sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
|
206
|
+
sage/graphs/graph_decompositions/fast_digraph.cpython-39-aarch64-linux-gnu.so,sha256=LV_pINXW1qs2mPF2wmmKI-JRrhA0D3PKnUjcfCGsmtA,308000
|
207
|
+
sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
|
208
|
+
sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=RwR3geuP8uwPxNlKfHJQHvPsf3_z6DvwQEWyUEf1Df8,7389
|
209
|
+
sage/graphs/graph_decompositions/graph_products.cpython-39-aarch64-linux-gnu.so,sha256=XXU4F75_gG08kqXijOg6FunbBXCtzLx5qCVXOzcIGgc,885256
|
210
|
+
sage/graphs/graph_decompositions/graph_products.pyx,sha256=XcghL4BzFWPPNmpNIKSC37zzBwNMmmaNqnEAtXnP0hw,17139
|
211
|
+
sage/graphs/graph_decompositions/modular_decomposition.cpython-39-aarch64-linux-gnu.so,sha256=ATNAD9BiUM8NYF9ZBsvddJJEGSVNpaqCVjSOSMKaDiY,3546209
|
212
|
+
sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
|
213
|
+
sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
|
214
|
+
sage/graphs/graph_decompositions/slice_decomposition.cpython-39-aarch64-linux-gnu.so,sha256=P3JmISS786dQIfmptr35859lanW3EShN5LY96ck6vGo,1451913
|
215
|
+
sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
|
216
|
+
sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=FuuFnQc9XS61ukySrFBLvYfSlvpgTsGz_lMnzIN4-5g,39622
|
217
|
+
sage/graphs/graph_decompositions/tree_decomposition.cpython-39-aarch64-linux-gnu.so,sha256=REynHGZF7piRVpZJhNlBbbvYrGB4hlyBGnbXkZjuYv0,2689336
|
218
|
+
sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
|
219
|
+
sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
|
220
|
+
sage/graphs/graph_decompositions/vertex_separation.cpython-39-aarch64-linux-gnu.so,sha256=sra_bB5MonfX96-o3X4szGZ-gemlNbYkbhMC7ajVJF8,1642313
|
221
|
+
sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
|
222
|
+
sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
|
223
|
+
sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
224
|
+
sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
225
|
+
sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
226
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-39-aarch64-linux-gnu.so,sha256=8LYNhh6VOS2vJGDJeOQrOvwJ40egqsVrF_rptD5Qy5c,1707521
|
227
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
|
228
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
|
229
|
+
sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
|
230
|
+
sage/knots/free_knotinfo_monoid.py,sha256=IyaKmc4kQclQoAe9loqp9Cq2Ny7BoQXwjPFn_QYwMoY,19713
|
231
|
+
sage/knots/gauss_code.py,sha256=XPReZ4_t4FUiV6Nza_8MaCQ-05CuOffdMmk2ckm98jc,8978
|
232
|
+
sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
|
233
|
+
sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
|
234
|
+
sage/knots/knotinfo.py,sha256=ACmrGn9_t6Ff3y5xaTDLO8JJS0_Wkfb2qItWf6Nu9mI,101893
|
235
|
+
sage/knots/link.py,sha256=L6vA6oqMri3ZD5xY8zclLwuqywrzoWbfpVTskcyBtkk,177868
|
236
|
+
sage/sandpiles/all.py,sha256=GxDiTE98htXEil5sR7gdVNgIh8eCu6q1IyxjHPOLyx8,565
|
237
|
+
sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,5595
|
238
|
+
sage/sandpiles/sandpile.py,sha256=yeO4-dNtmYd5LQV86K5XyMkxYVK3w_rnvBudZNTzTpg,211694
|
239
|
+
sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
|
240
|
+
sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
|
241
|
+
sage/topology/cubical_complex.py,sha256=plKyVmHbHgCZiUdlAHSjgFq10nw5IFmOqF-la01UI1g,71030
|
242
|
+
sage/topology/delta_complex.py,sha256=bFIhF_72XE3CIU8kWOts62NLW-OAJ8nD99I01vIPIxE,74583
|
243
|
+
sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
|
244
|
+
sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
|
245
|
+
sage/topology/simplicial_complex.py,sha256=5rPDy-11TzNggeM-QKDYt21KAGAzmcMULNAnkNgu5WE,196306
|
246
|
+
sage/topology/simplicial_complex_catalog.py,sha256=JGHpK2P6JilXIbnSIanraJTST2SQaHSqBWg8ZAlqhFU,4396
|
247
|
+
sage/topology/simplicial_complex_examples.py,sha256=w8FIwK1UAswpYE_Oa6-rDeMfxCrHVloA1AY-KJYCkg4,70753
|
248
|
+
sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
|
249
|
+
sage/topology/simplicial_complex_morphism.py,sha256=JZc3bVCAwibwccMzL0XdIi8imVTlnkDvd0R-nFBHHCQ,32596
|
250
|
+
sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz95c,152633
|
251
|
+
sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wmpYDzlumod0,2172
|
252
|
+
sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
|
253
|
+
sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
|
254
|
+
sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
|
255
|
+
passagemath_graphs-10.5.43.dist-info/METADATA,sha256=gVMFPM2vtlhzB42_c0VHDoUJbISz2ijTNyynxtlAvOA,14024
|
256
|
+
passagemath_graphs-10.5.43.dist-info/WHEEL,sha256=fR00gMLtH8tQj1rwZUesHDWRW5mJc2Y6XbWxMt7vVa8,111
|
257
|
+
passagemath_graphs-10.5.43.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
|
258
|
+
passagemath_graphs-10.5.43.dist-info/RECORD,,
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-graphs
|
2
|
+
r"""
|
3
|
+
Top level of the distribution package sagemath-graphs
|
4
|
+
|
5
|
+
This distribution makes the following feature available::
|
6
|
+
|
7
|
+
sage: from sage.features.sagemath import *
|
8
|
+
sage: sage__graphs().is_present()
|
9
|
+
FeatureTestResult('sage.graphs', True)
|
10
|
+
"""
|
11
|
+
|
12
|
+
from .all__sagemath_categories import *
|
13
|
+
|
14
|
+
try: # extra
|
15
|
+
from sage.all__sagemath_gap import *
|
16
|
+
except ImportError:
|
17
|
+
pass
|
18
|
+
|
19
|
+
try: # extra
|
20
|
+
from sage.all__sagemath_modules import *
|
21
|
+
except ImportError:
|
22
|
+
pass
|
23
|
+
|
24
|
+
try: # extra
|
25
|
+
from sage.all__sagemath_polyhedra import *
|
26
|
+
except ImportError:
|
27
|
+
pass
|
28
|
+
|
29
|
+
from sage.graphs.all import *
|
30
|
+
|
31
|
+
from sage.topology.all import *
|
32
|
+
|
33
|
+
from sage.combinat.all__sagemath_graphs import *
|
34
|
+
|
35
|
+
from sage.databases.all__sagemath_graphs import *
|
36
|
+
|
37
|
+
from sage.sandpiles.all import *
|
38
|
+
|
39
|
+
from sage.knots.all import *
|