passagemath-graphs 10.5.34__cp312-cp312-musllinux_1_2_aarch64.whl → 10.6.1rc1__cp312-cp312-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.
Files changed (158) hide show
  1. {passagemath_graphs-10.5.34.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/METADATA +85 -16
  2. passagemath_graphs-10.6.1rc1.dist-info/RECORD +260 -0
  3. {passagemath_graphs-10.5.34.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/WHEEL +1 -1
  4. sage/all__sagemath_graphs.py +5 -0
  5. sage/combinat/abstract_tree.py +189 -18
  6. sage/combinat/binary_tree.py +1 -1
  7. sage/combinat/cluster_algebra_quiver/all.py +1 -1
  8. sage/combinat/cluster_algebra_quiver/cluster_seed.py +18 -12
  9. sage/combinat/cluster_algebra_quiver/interact.py +3 -0
  10. sage/combinat/cluster_algebra_quiver/mutation_type.py +518 -519
  11. sage/combinat/cluster_algebra_quiver/quiver.py +233 -205
  12. sage/combinat/designs/MOLS_handbook_data.py +5 -5
  13. sage/combinat/designs/bibd.py +1 -1
  14. sage/combinat/designs/covering_array.py +3 -3
  15. sage/combinat/designs/covering_design.py +4 -7
  16. sage/combinat/designs/database.py +11 -10
  17. sage/combinat/designs/designs_pyx.cpython-312-aarch64-linux-musl.so +0 -0
  18. sage/combinat/designs/designs_pyx.pyx +2 -2
  19. sage/combinat/designs/difference_matrices.py +1 -1
  20. sage/combinat/designs/evenly_distributed_sets.cpython-312-aarch64-linux-musl.so +0 -0
  21. sage/combinat/designs/evenly_distributed_sets.pyx +4 -4
  22. sage/combinat/designs/ext_rep.py +9 -14
  23. sage/combinat/designs/gen_quadrangles_with_spread.cpython-312-aarch64-linux-musl.so +0 -0
  24. sage/combinat/designs/group_divisible_designs.py +1 -1
  25. sage/combinat/designs/incidence_structures.py +8 -8
  26. sage/combinat/designs/latin_squares.py +54 -21
  27. sage/combinat/designs/orthogonal_arrays.py +2 -1
  28. sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-312-aarch64-linux-musl.so +0 -0
  29. sage/combinat/designs/orthogonal_arrays_find_recursive.pyx +22 -21
  30. sage/combinat/designs/resolvable_bibd.py +192 -158
  31. sage/combinat/designs/steiner_quadruple_systems.py +1 -1
  32. sage/combinat/designs/subhypergraph_search.cpython-312-aarch64-linux-musl.so +0 -0
  33. sage/combinat/designs/subhypergraph_search.pyx +4 -4
  34. sage/combinat/designs/twographs.py +2 -2
  35. sage/combinat/finite_state_machine.py +6 -6
  36. sage/combinat/finite_state_machine_generators.py +2 -2
  37. sage/combinat/graph_path.py +3 -3
  38. sage/combinat/ordered_tree.py +1 -1
  39. sage/combinat/posets/bubble_shuffle.py +247 -0
  40. sage/combinat/posets/cartesian_product.py +1 -1
  41. sage/combinat/posets/d_complete.py +4 -4
  42. sage/combinat/posets/elements.py +3 -3
  43. sage/combinat/posets/forest.py +1 -1
  44. sage/combinat/posets/hasse_cython.cpython-312-aarch64-linux-musl.so +0 -0
  45. sage/combinat/posets/hasse_cython.pyx +1 -1
  46. sage/combinat/posets/hasse_diagram.py +16 -22
  47. sage/combinat/posets/hochschild_lattice.py +158 -0
  48. sage/combinat/posets/incidence_algebras.py +15 -17
  49. sage/combinat/posets/lattices.py +51 -53
  50. sage/combinat/posets/linear_extension_iterator.cpython-312-aarch64-linux-musl.so +0 -0
  51. sage/combinat/posets/linear_extension_iterator.pyx +2 -0
  52. sage/combinat/posets/linear_extensions.py +13 -24
  53. sage/combinat/posets/moebius_algebra.py +5 -5
  54. sage/combinat/posets/poset_examples.py +70 -23
  55. sage/combinat/posets/posets.py +294 -103
  56. sage/combinat/rooted_tree.py +1 -1
  57. sage/databases/knotinfo_db.py +2 -1
  58. sage/ext_data/kenzo/CP2.txt +45 -0
  59. sage/ext_data/kenzo/CP3.txt +349 -0
  60. sage/ext_data/kenzo/CP4.txt +4774 -0
  61. sage/ext_data/kenzo/README.txt +49 -0
  62. sage/ext_data/kenzo/S4.txt +20 -0
  63. sage/graphs/asteroidal_triples.cpython-312-aarch64-linux-musl.so +0 -0
  64. sage/graphs/asteroidal_triples.pyx +24 -3
  65. sage/graphs/base/boost_graph.cpython-312-aarch64-linux-musl.so +0 -0
  66. sage/graphs/base/boost_graph.pxd +3 -3
  67. sage/graphs/base/c_graph.cpython-312-aarch64-linux-musl.so +0 -0
  68. sage/graphs/base/c_graph.pyx +1 -1
  69. sage/graphs/base/dense_graph.cpython-312-aarch64-linux-musl.so +0 -0
  70. sage/graphs/base/dense_graph.pxd +5 -3
  71. sage/graphs/base/dense_graph.pyx +44 -0
  72. sage/graphs/base/graph_backends.cpython-312-aarch64-linux-musl.so +0 -0
  73. sage/graphs/base/sparse_graph.cpython-312-aarch64-linux-musl.so +0 -0
  74. sage/graphs/base/static_dense_graph.cpython-312-aarch64-linux-musl.so +0 -0
  75. sage/graphs/base/static_sparse_backend.cpython-312-aarch64-linux-musl.so +0 -0
  76. sage/graphs/base/static_sparse_backend.pyx +8 -5
  77. sage/graphs/base/static_sparse_graph.cpython-312-aarch64-linux-musl.so +0 -0
  78. sage/graphs/base/static_sparse_graph.pyx +86 -15
  79. sage/graphs/bipartite_graph.py +59 -36
  80. sage/graphs/centrality.cpython-312-aarch64-linux-musl.so +0 -0
  81. sage/graphs/centrality.pyx +82 -9
  82. sage/graphs/cographs.py +1 -1
  83. sage/graphs/comparability.cpython-312-aarch64-linux-musl.so +0 -0
  84. sage/graphs/comparability.pyx +64 -26
  85. sage/graphs/connectivity.cpython-312-aarch64-linux-musl.so +0 -0
  86. sage/graphs/convexity_properties.cpython-312-aarch64-linux-musl.so +0 -0
  87. sage/graphs/convexity_properties.pyx +52 -9
  88. sage/graphs/digraph.py +439 -95
  89. sage/graphs/digraph_generators.py +174 -102
  90. sage/graphs/distances_all_pairs.cpython-312-aarch64-linux-musl.so +0 -0
  91. sage/graphs/dot2tex_utils.py +1 -1
  92. sage/graphs/edge_connectivity.cpython-312-aarch64-linux-musl.so +0 -0
  93. sage/graphs/generators/basic.py +1 -1
  94. sage/graphs/generators/distance_regular.cpython-312-aarch64-linux-musl.so +0 -0
  95. sage/graphs/generators/distance_regular.pyx +2 -2
  96. sage/graphs/generators/families.py +37 -27
  97. sage/graphs/generators/random.py +2 -2
  98. sage/graphs/generators/smallgraphs.py +3 -3
  99. sage/graphs/generic_graph.py +558 -86
  100. sage/graphs/generic_graph_pyx.cpython-312-aarch64-linux-musl.so +0 -0
  101. sage/graphs/generic_graph_pyx.pyx +58 -11
  102. sage/graphs/genus.cpython-312-aarch64-linux-musl.so +0 -0
  103. sage/graphs/genus.pyx +3 -4
  104. sage/graphs/graph.py +292 -9
  105. sage/graphs/graph_coloring.cpython-312-aarch64-linux-musl.so +0 -0
  106. sage/graphs/graph_database.py +67 -12
  107. sage/graphs/graph_decompositions/bandwidth.cpython-312-aarch64-linux-musl.so +0 -0
  108. sage/graphs/graph_decompositions/clique_separators.cpython-312-aarch64-linux-musl.so +0 -0
  109. sage/graphs/graph_decompositions/clique_separators.pyx +24 -3
  110. sage/graphs/graph_decompositions/cutwidth.cpython-312-aarch64-linux-musl.so +0 -0
  111. sage/graphs/graph_decompositions/fast_digraph.cpython-312-aarch64-linux-musl.so +0 -0
  112. sage/graphs/graph_decompositions/fast_digraph.pyx +1 -1
  113. sage/graphs/graph_decompositions/graph_products.cpython-312-aarch64-linux-musl.so +0 -0
  114. sage/graphs/graph_decompositions/graph_products.pyx +67 -21
  115. sage/graphs/graph_decompositions/modular_decomposition.cpython-312-aarch64-linux-musl.so +0 -0
  116. sage/graphs/graph_decompositions/slice_decomposition.cpython-312-aarch64-linux-musl.so +0 -0
  117. sage/graphs/graph_decompositions/slice_decomposition.pyx +34 -8
  118. sage/graphs/graph_decompositions/tree_decomposition.cpython-312-aarch64-linux-musl.so +0 -0
  119. sage/graphs/graph_decompositions/vertex_separation.cpython-312-aarch64-linux-musl.so +0 -0
  120. sage/graphs/graph_generators.py +45 -32
  121. sage/graphs/graph_generators_pyx.cpython-312-aarch64-linux-musl.so +0 -0
  122. sage/graphs/graph_generators_pyx.pyx +15 -15
  123. sage/graphs/graph_latex.py +1 -1
  124. sage/graphs/graph_list.py +54 -12
  125. sage/graphs/graph_plot.py +7 -0
  126. sage/graphs/hyperbolicity.cpython-312-aarch64-linux-musl.so +0 -0
  127. sage/graphs/hyperbolicity.pyx +2 -0
  128. sage/graphs/independent_sets.cpython-312-aarch64-linux-musl.so +0 -0
  129. sage/graphs/isoperimetric_inequalities.cpython-312-aarch64-linux-musl.so +0 -0
  130. sage/graphs/isoperimetric_inequalities.pyx +42 -6
  131. sage/graphs/line_graph.cpython-312-aarch64-linux-musl.so +0 -0
  132. sage/graphs/line_graph.pyx +153 -37
  133. sage/graphs/matching_covered_graph.py +84 -60
  134. sage/graphs/orientations.py +3 -18
  135. sage/graphs/path_enumeration.cpython-312-aarch64-linux-musl.so +0 -0
  136. sage/graphs/path_enumeration.pyx +2 -2
  137. sage/graphs/spanning_tree.cpython-312-aarch64-linux-musl.so +0 -0
  138. sage/graphs/strongly_regular_db.cpython-312-aarch64-linux-musl.so +0 -0
  139. sage/graphs/strongly_regular_db.pyx +15 -15
  140. sage/graphs/traversals.cpython-312-aarch64-linux-musl.so +0 -0
  141. sage/graphs/traversals.pyx +13 -12
  142. sage/graphs/trees.cpython-312-aarch64-linux-musl.so +0 -0
  143. sage/graphs/tutte_polynomial.py +1 -1
  144. sage/graphs/views.cpython-312-aarch64-linux-musl.so +0 -0
  145. sage/graphs/weakly_chordal.cpython-312-aarch64-linux-musl.so +0 -0
  146. sage/graphs/weakly_chordal.pyx +50 -8
  147. sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-312-aarch64-linux-musl.so +0 -0
  148. sage/knots/free_knotinfo_monoid.py +3 -3
  149. sage/knots/knotinfo.py +102 -82
  150. sage/knots/link.py +72 -39
  151. sage/sandpiles/sandpile.py +1 -2
  152. sage/topology/cubical_complex.py +4 -5
  153. sage/topology/delta_complex.py +4 -4
  154. sage/topology/simplicial_complex.py +0 -1
  155. sage/topology/simplicial_complex_catalog.py +6 -0
  156. sage/topology/simplicial_complex_examples.py +4 -16
  157. passagemath_graphs-10.5.34.dist-info/RECORD +0 -253
  158. {passagemath_graphs-10.5.34.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-graphs
3
- Version: 10.5.34
3
+ Version: 10.6.1rc1
4
4
  Summary: passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
7
- License: GNU General Public License (GPL) v2 or later
7
+ License-Expression: GPL-2.0-or-later
8
8
  Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
9
  Project-URL: repo (upstream), https://github.com/sagemath/sage
10
10
  Project-URL: repo, https://github.com/passagemath/passagemath
@@ -16,23 +16,22 @@ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
16
  Classifier: Development Status :: 6 - Mature
17
17
  Classifier: Intended Audience :: Education
18
18
  Classifier: Intended Audience :: Science/Research
19
- Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
20
19
  Classifier: Operating System :: POSIX
21
20
  Classifier: Operating System :: MacOS :: MacOS X
22
21
  Classifier: Programming Language :: Python :: 3 :: Only
23
- Classifier: Programming Language :: Python :: 3.9
24
22
  Classifier: Programming Language :: Python :: 3.10
25
23
  Classifier: Programming Language :: Python :: 3.11
26
24
  Classifier: Programming Language :: Python :: 3.12
27
25
  Classifier: Programming Language :: Python :: 3.13
28
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
27
  Classifier: Topic :: Scientific/Engineering :: Mathematics
30
- Requires-Python: <3.14,>=3.9
28
+ Requires-Python: <3.14,>=3.10
31
29
  Description-Content-Type: text/x-rst
32
30
  Requires-Dist: gmpy2~=2.1.b999
33
- Requires-Dist: cysignals==1.12.0rc2
31
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
34
32
  Requires-Dist: memory_allocator
35
- Requires-Dist: passagemath-categories~=10.5.34.0
33
+ Requires-Dist: passagemath-categories==10.6.1rc1
34
+ Requires-Dist: passagemath-environment==10.6.1rc1
36
35
  Provides-Extra: test
37
36
  Requires-Dist: passagemath-repl; extra == "test"
38
37
  Provides-Extra: benzene
@@ -43,6 +42,8 @@ Provides-Extra: buckygen
43
42
  Requires-Dist: passagemath-buckygen; extra == "buckygen"
44
43
  Provides-Extra: cliquer
45
44
  Requires-Dist: passagemath-cliquer; extra == "cliquer"
45
+ Provides-Extra: cmr
46
+ Requires-Dist: passagemath-cmr; extra == "cmr"
46
47
  Provides-Extra: gap
47
48
  Requires-Dist: passagemath-gap; extra == "gap"
48
49
  Provides-Extra: igraph
@@ -69,6 +70,9 @@ Provides-Extra: combinat
69
70
  Requires-Dist: passagemath-combinat; extra == "combinat"
70
71
  Provides-Extra: editor
71
72
  Requires-Dist: phitigra>=0.2.6; extra == "editor"
73
+ Provides-Extra: groups
74
+ Requires-Dist: passagemath-groups; extra == "groups"
75
+ Requires-Dist: passagemath-graphs[nauty]; extra == "groups"
72
76
  Provides-Extra: homology
73
77
  Requires-Dist: passagemath-modules; extra == "homology"
74
78
  Provides-Extra: mip
@@ -84,7 +88,8 @@ Requires-Dist: passagemath-repl; extra == "repl"
84
88
  Provides-Extra: sat
85
89
  Requires-Dist: passagemath-combinat; extra == "sat"
86
90
  Provides-Extra: standard
87
- Requires-Dist: passagemath-graphs[combinat,databases,mip,modules,planarity,plot,polyhedra,rankwidth,repl]; extra == "standard"
91
+ Requires-Dist: passagemath-graphs[combinat,databases,groups,mip,modules,planarity,polyhedra,rankwidth,repl]; extra == "standard"
92
+ Requires-Dist: passagemath-plot[tachyon]; extra == "standard"
88
93
 
89
94
  =======================================================================================================================================================
90
95
  passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
@@ -127,7 +132,7 @@ passagemath attempts to support all major Linux distributions and recent version
127
132
  macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
128
133
  virtualization.
129
134
 
130
- Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
135
+ Complete sets of binary wheels are provided on PyPI for Python versions 3.10.x-3.13.x.
131
136
  Python 3.13.x is also supported, but some third-party packages are still missing wheels,
132
137
  so compilation from source is triggered for those.
133
138
 
@@ -135,7 +140,7 @@ so compilation from source is triggered for those.
135
140
  About this pip-installable distribution package
136
141
  -----------------------------------------------
137
142
 
138
- 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", `sagemath-standard`) for computations with graphs, posets, complexes, etc.
143
+ 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.
139
144
 
140
145
  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.
141
146
 
@@ -182,32 +187,96 @@ A quick way to try it out interactively::
182
187
  Available as extras, from other distributions
183
188
  ---------------------------------------------
184
189
 
190
+ Libraries
191
+ ~~~~~~~~~
192
+
193
+ ``pip install passagemath-graphs[benzene,buckygen,plantri]`` additionally make
194
+ 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/>`_.
195
+
196
+ ``pip install passagemath-graphs[bliss]`` additionally installs `passagemath-bliss <https://pypi.org/project/passagemath-bliss/>`_ for the purpose
197
+ of computing graph (iso/auto)morphisms.
198
+
199
+ ``pip install passagemath-graphs[cliquer]`` additionally installs `passagemath-cliquer <https://pypi.org/project/passagemath-cliquer/>`_
200
+
201
+ ``pip install passagemath-graphs[cmr]`` additionally installs `passagemath-cmr <https://pypi.org/project/passagemath-cmr/>`_ for recognition and decomposition algorithms
202
+ for network matrices, totally unimodular matrices and regular matroids, series-parallel matroids, etc.
203
+
204
+ ``pip install passagemath-graphs[gap]`` additionally installs `passagemath-gap <https://pypi.org/project/passagemath-gap/>`_ for group-theoretic functionality.
205
+
206
+ ``pip install passagemath-graphs[igraph]`` additionally installs
207
+ `igraph <https://python.igraph.org/en/stable/>`_::
208
+
209
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[igraph,test]" ipython
210
+ In [1]: from sage.all__sagemath_graphs import *
211
+
212
+ In [2]: ## Example depending on igraph goes here
213
+
214
+ ``pip install passagemath-graphs[mcqd]`` additionally installs `passagemath-mcqd <https://pypi.org/project/passagemath-mcqd/>`_
215
+
216
+ ``pip install passagemath-graphs[nauty]`` additionally installs `passagemath-nauty <https://pypi.org/project/passagemath-nauty/>`_ for computing
217
+ automorphism groups of graphs and digraphs.
218
+
185
219
  ``pip install passagemath-graphs[networkx]`` additionally installs
186
- `NetworkX <https://networkx.github.io>`::
220
+ `NetworkX <https://networkx.github.io>`__::
187
221
 
188
222
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[networkx,test]" ipython
189
223
  In [1]: from sage.all__sagemath_graphs import *
190
224
 
191
225
  In [2]: ## Example depending on networkx goes here
192
226
 
227
+ ``pip install passagemath-graphs[pari]`` additionally installs `passagemath-pari <https://pypi.org/project/passagemath-pari/>`_
193
228
 
194
- ``pip install passagemath-graphs[igraph]`` additionally installs
195
- `igraph <https://python.igraph.org/en/stable/>`::
229
+ ``pip install passagemath-graphs[planarity]`` additionally installs `passagemath-planarity <https://pypi.org/project/passagemath-planarity/>`_ for planarity testing.
196
230
 
197
- $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[igraph,test]" ipython
231
+ ``pip install passagemath-graphs[rankwidth]`` additionally installs `passagemath-rankwidth <https://pypi.org/project/passagemath-rankwidth/>`_ for rank width and rank decompositions.
232
+
233
+ ``pip install passagemath-graphs[tdlib]`` additionally installs `passagemath-tdlib <https://pypi.org/project/passagemath-tdlib/>`_ for computing tree decompositions.
234
+
235
+
236
+ Features
237
+ ~~~~~~~~
238
+
239
+ ``pip install passagemath-graphs[combinat]`` additionally installs `passagemath-combinat <https://pypi.org/project/passagemath-combinat/>`_
240
+
241
+ ``pip install passagemath-graphs[editor]`` additionally installs the interactive graph editor `phitigra <https://pypi.org/project/phitigra/>`_.
242
+
243
+ ``pip install passagemath-graphs[groups]`` additionally makes group-theoretic features
244
+ 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/>`_::
245
+
246
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[groups,test]" ipython
198
247
  In [1]: from sage.all__sagemath_graphs import *
199
248
 
200
- In [2]: ## Example depending on igraph goes here
249
+ In [2]: g = Graph({
250
+ 0: [1, 2],
251
+ 1: [0, 2],
252
+ 2: [0, 1, 3],
253
+ 3: [2]
254
+ })
255
+
256
+ In [3]: aut = g.automorphism_group()
201
257
 
258
+ In [4]: print(aut.order())
259
+
260
+ ``pip install passagemath-graphs[homology]`` provides homological computations for abstract complexes via `passagemath-modules <https://pypi.org/project/passagemath-modules/>`_.
202
261
 
203
262
  ``pip install passagemath-graphs[mip]`` additionally makes the mixed-integer programming
204
- solver GLPK available::
263
+ 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).::
205
264
 
206
265
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[mip,test]" ipython
207
266
  In [1]: from sage.all__sagemath_graphs import *
208
267
 
209
268
  In [2]: ## Example depending on MIP goes here
210
269
 
270
+ ``pip install passagemath-graphs[modules]`` additionally makes linear algebra features available via `passagemath-modules <https://pypi.org/project/passagemath-modules/>`_.
271
+
272
+ ``pip install passagemath-graphs[plot]`` additionally installs `passagemath-plot <https://pypi.org/project/passagemath-plot/>`_.
273
+
274
+ ``pip install passagemath-graphs[polyhedra]`` additionally installs `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra/>`_.
275
+
276
+ ``pip install passagemath-graphs[sat]`` additionally provides SAT features via `passagemath-combinat <https://pypi.org/project/passagemath-combinat/>`_.
277
+
278
+ ``pip install passagemath-graphs[standard]`` installs all libraries and features related to graphs that
279
+ are available in a standard installation of Sage.
211
280
 
212
281
 
213
282
  Development
@@ -0,0 +1,260 @@
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=3KcwC0HaEmFz8O_dR-kvy2xiMp9G64v5SEC4zm7Szqg,94266
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=rngcy9hczCxVkhNQvK6ho3A7xosqi9bv1tUJaLJR2gU,574657
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=J-Ka38Eb540DIzet6XP_7qdYh1Bfz-xucAA8YL1BLO0,4250
21
+ sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
22
+ sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=1aVYcY7dOakwBueA3E3Tu7PImQNyw3TiSw_7s5lNA_M,76256
23
+ sage/combinat/cluster_algebra_quiver/quiver.py,sha256=mDBNojdFE00O_61QeHzwsWb1Zxdv9gWs3cVsXM-zzYY,86160
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=GhpSmZALYIwSjSx2oEOxxXhLemJCaKTrIGjZS0xj6AI,17297
31
+ sage/combinat/designs/database.py,sha256=0sfODA8sYjemLejPQNZnQqj_eIgyPuLyTsNWw495w4Q,242955
32
+ sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
33
+ sage/combinat/designs/designs_pyx.cpython-312-aarch64-linux-musl.so,sha256=ozUYDZTi1_X1xw5f6ovmaFICQWsbFT_jPVZI1vGiM5I,1511249
34
+ sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
35
+ sage/combinat/designs/designs_pyx.pyx,sha256=_unJWxusmZVUZ5SPiTtgOCYZmhWTFqptLb3MOz37ND0,37170
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-312-aarch64-linux-musl.so,sha256=eIYCZHu-NbfKlwPrcbGsiO2YMTHj3t84PFtxl4cxPSs,817352
39
+ sage/combinat/designs/evenly_distributed_sets.pyx,sha256=_ExpH2ImCLYhXG4aovPXKHGa8XMKYlILw-r5Iv1Yr5E,25548
40
+ sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
41
+ sage/combinat/designs/gen_quadrangles_with_spread.cpython-312-aarch64-linux-musl.so,sha256=jGt6_kimhkr8UhDq88pNDSxHYrethUY1mCMV6gYf7eo,787960
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=R8tl7zoIGvbxrQdoRMoeW9eF5xeq0m41eZCNwg0i-7w,23159
46
+ sage/combinat/designs/orthogonal_arrays.py,sha256=_F7d167KuXhNPoatn_aHQXnxBY6EELW_FlYQ_c1RyIk,82598
47
+ sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
48
+ sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-312-aarch64-linux-musl.so,sha256=eDaeSBu1efuWaGJiFokNP81AjwJr2cvU1k280W05pjs,1074296
49
+ sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=NMqnHcUCSURto_AnwjkXuDc298lLF0m0b0uObekmG0g,34281
50
+ sage/combinat/designs/resolvable_bibd.py,sha256=WzDQ_n-_yKX-6YXYbkP5yIrXnU-UW_Mo0I7Mg6zGbyA,30498
51
+ sage/combinat/designs/steiner_quadruple_systems.py,sha256=-vnODm9iybM9_x36oDOFMZyu_kMaMTZWYbzcWAvaG0E,68601
52
+ sage/combinat/designs/subhypergraph_search.cpython-312-aarch64-linux-musl.so,sha256=6wWcnrb5AsWqGQYFY0Z77F_69MpJf6XU_mbWS68N7h4,621352
53
+ sage/combinat/designs/subhypergraph_search.pyx,sha256=EfLrVGZNDSiVgeGNohlO09f0wdqPh6XwQHCrHNgqmng,18146
54
+ sage/combinat/designs/twographs.py,sha256=gUba7-nivoQpPrPgHMD7UshhY9Q7do9GXylLb_U_xC8,11230
55
+ sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
56
+ sage/combinat/posets/bubble_shuffle.py,sha256=6EutFGs0dMvjN7f51WAefYRLBRLc1enZ-N2Offx74M0,7485
57
+ sage/combinat/posets/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
58
+ sage/combinat/posets/d_complete.py,sha256=3k1llRG7zIgKmvy-gJ6_A2liDvjTiC04OX_vOdmzoUU,6611
59
+ sage/combinat/posets/elements.py,sha256=IgixRtTMTRKz3nGJGcYtBwucK22b3I5xy84ephRjpVE,7982
60
+ sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
61
+ sage/combinat/posets/hasse_cython.cpython-312-aarch64-linux-musl.so,sha256=NY0JakvNg8E0q1oSH3Hk7dfAXt0aH6-mE34G9udSsQc,755904
62
+ sage/combinat/posets/hasse_cython.pyx,sha256=g8C4EGYMN0jl1xLhmeaMzbIIyvGujWT0W5UCT2Qje4g,5988
63
+ sage/combinat/posets/hasse_diagram.py,sha256=u-A0HrvEuLCUhZwBcTWyrLpDpM03pkpjAqtIuYrxIP4,133205
64
+ sage/combinat/posets/hochschild_lattice.py,sha256=wkrxQDkzGoAdhLU7YjiVlGHaoSXUxqwCDjmH-HE4uZQ,4667
65
+ sage/combinat/posets/incidence_algebras.py,sha256=v9QMrN1VW8T4vMfdrJpr4RULr0RlzCIPii0IaN0UVxU,25072
66
+ sage/combinat/posets/lattices.py,sha256=UMfTOqp45FQ35sf-F6LciPvva1Tb6P0mtc0cHG3fqXc,186721
67
+ sage/combinat/posets/linear_extension_iterator.cpython-312-aarch64-linux-musl.so,sha256=L_shwmUnj6wOff9ffoIyTKr3uKWZcDh5I-080tBAHPI,716344
68
+ sage/combinat/posets/linear_extension_iterator.pyx,sha256=1DVxfIsMvtsPGjOi3SUjWtVKFKXQfnk_UXKtmsTpQl4,9272
69
+ sage/combinat/posets/linear_extensions.py,sha256=qFivvSYmOOyUdYj_uLyPMvtIP8i5Nl9MpFKsFaSuiTA,41635
70
+ sage/combinat/posets/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
71
+ sage/combinat/posets/moebius_algebra.py,sha256=FZY0OqDJd_QBWGzZJpCRk3573wlJBBXU6Cl1TxJt89s,26399
72
+ sage/combinat/posets/poset_examples.py,sha256=GSscfCvu0AbxFrwAMMVgSPoZDAg_PLmaemKUjvulRyw,78924
73
+ sage/combinat/posets/posets.py,sha256=geox_irhoOkz96gNyKD-fFzQZjmHojrks4bpBGE7FFI,340260
74
+ sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
75
+ sage/databases/knotinfo_db.py,sha256=ijt1goKI2Z_Yst6XTbmH9511cWKZWSd3HlGMO69ugqQ,54189
76
+ sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
77
+ sage/ext_data/graphs/graph_plot_js.html,sha256=OmGUTusnlNQgxC3rb2q_1FR8flYvLT6DNfY0zjY_0_0,9811
78
+ sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
79
+ sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
80
+ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
81
+ sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
82
+ sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
83
+ sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
84
+ sage/graphs/asteroidal_triples.cpython-312-aarch64-linux-musl.so,sha256=mL7o_DeAi5klljcNK6-s6acKPKtswp2c0wvqJP7POOE,461777
85
+ sage/graphs/asteroidal_triples.pyx,sha256=kslBS2OY3d7F0k54vb4nvb1pKH4UfvXv0AssHf9U61Y,11269
86
+ sage/graphs/bipartite_graph.py,sha256=GsQhkJMclM0TCT8ifOaPTjweIwA4yX6rcD4yUoLgLXg,105820
87
+ sage/graphs/centrality.cpython-312-aarch64-linux-musl.so,sha256=TsDYK4XUpw3b86UMO6g3z4Q_ld9z2ItZUVQbEWj0phw,1117737
88
+ sage/graphs/centrality.pyx,sha256=jXYVW5ZFRXYkI_Esw8LaPsdVKLhTG4bUZBgUjzGrDGQ,37670
89
+ sage/graphs/cographs.py,sha256=e_IBKmczjffdNkQzZmyliRgXS0j7n5wT_dE_pWj74iY,15184
90
+ sage/graphs/comparability.cpython-312-aarch64-linux-musl.so,sha256=w8seONM7meGr4ZzTz3AUn8VH0dNhlWON8Y5AxSJ_Kcw,1510977
91
+ sage/graphs/comparability.pyx,sha256=txNR4i4nVxETeRuITmZSnF41Bcu5Lc3-9p_Y14U5Ai4,32292
92
+ sage/graphs/connectivity.cpython-312-aarch64-linux-musl.so,sha256=ru9ekpfdr_HLqeUG14KhqvtUnrEQAIYO-LZamLO3FZE,4984776
93
+ sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
94
+ sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
95
+ sage/graphs/convexity_properties.cpython-312-aarch64-linux-musl.so,sha256=9AWhsMwE3JMG_OVk1NjtqKUy_ybBOvTIy-jNrjAOhHQ,855793
96
+ sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
97
+ sage/graphs/convexity_properties.pyx,sha256=zHhpsRj6qi2oLxoUplnzDDaQL0nYYtot6q6GC1l-8Ls,31137
98
+ sage/graphs/digraph.py,sha256=Uj2hmkx-k27D2DyNAAQ-wmKirOIP-0Hyg_8g_CMFLIE,197705
99
+ sage/graphs/digraph_generators.py,sha256=GCgmzNzeNrAetGPavREZnRejf3yciY-ycIbOQkqrTYw,79777
100
+ sage/graphs/distances_all_pairs.cpython-312-aarch64-linux-musl.so,sha256=7ttnEbbbJaUFnFN9BhTe0paCIpsJTEaMixNBWU9n-hs,1707801
101
+ sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
102
+ sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
103
+ sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
104
+ sage/graphs/dot2tex_utils.py,sha256=lWUucZKdFsTltrGPeqwHhvbdScFEMltjtTU6C4p2x_E,3173
105
+ sage/graphs/edge_connectivity.cpython-312-aarch64-linux-musl.so,sha256=-j7WQc7v5gUlmIc2z4yLEv30oANYlJfAtvCWR9dPT_4,991241
106
+ sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
107
+ sage/graphs/generic_graph.py,sha256=7ekP4UGQk12jfpCVDfumhFwo9Njuqkot28Zea_L-SOA,1114121
108
+ sage/graphs/generic_graph_pyx.cpython-312-aarch64-linux-musl.so,sha256=7aT_gnesGMFKxseRBf-YSR6MJzxrgJrz-xh-7eivv58,1839401
109
+ sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
110
+ sage/graphs/generic_graph_pyx.pyx,sha256=i5gISutTP3P_Fc5LInP-fDJX_U1nFRocdXOt114lmIU,60287
111
+ sage/graphs/genus.cpython-312-aarch64-linux-musl.so,sha256=MsGIIGVHVo_UwDwyv3Uv2hvOckT8tgi6d6UCZlV5cPk,540416
112
+ sage/graphs/genus.pyx,sha256=xzcRPWKAgtVIQfBOLJNXVm-22LPCBiYSyzmjNpE6U_w,21672
113
+ sage/graphs/graph.py,sha256=Q2GVcF9pUUuXcMLDUIL3eqdsRxDXtUXjXKHk1IT-IVY,381762
114
+ sage/graphs/graph_coloring.cpython-312-aarch64-linux-musl.so,sha256=79eme6O_qrDVKvENTYRm23fiibp5zxelPE33V9_2NwU,4985329
115
+ sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
116
+ sage/graphs/graph_database.py,sha256=TxWGmR7ueILurw77Xk3Uz54gsbjZ00H-_jhbDmNf3m8,51558
117
+ sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
118
+ sage/graphs/graph_generators.py,sha256=Z7-IqimRFQ_HFJepTs_F-f6noWZkBDCUtMcoDHmHfPg,134580
119
+ sage/graphs/graph_generators_pyx.cpython-312-aarch64-linux-musl.so,sha256=mWzXKS0ErMx9wEODcLS51JnXq8auK7Liz7k5q3EmnUw,497312
120
+ sage/graphs/graph_generators_pyx.pyx,sha256=-TP5O6mDg7clGrKcDLUzcFsLYuw8VGGhPvLV56I9wBA,3214
121
+ sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
122
+ sage/graphs/graph_latex.py,sha256=_zJtj4YXZ0wh8wgL2Nk9-6UqKwd8joEqjfWEusX81Jc,99136
123
+ sage/graphs/graph_list.py,sha256=z7EoLhCRkH5F7acA2r28DzDkLw08xODgOLXl8f6Rf80,14439
124
+ sage/graphs/graph_plot.py,sha256=4a3j1oUY-TAfNGDJpqONvQKQEFoqDUUN56fJXym80AY,70634
125
+ sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
126
+ sage/graphs/hyperbolicity.cpython-312-aarch64-linux-musl.so,sha256=-Ou6EoepaFUMo101jAofZjpw-6otHGUKX2JgOPw1jzQ,1576817
127
+ sage/graphs/hyperbolicity.pyx,sha256=qzLZkEAC2zDrksEfqL2wqFHcTWzDsQpGxWWH5Gnke_o,64503
128
+ sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
129
+ sage/graphs/independent_sets.cpython-312-aarch64-linux-musl.so,sha256=SIpZrNsqyhACT7ziU2aqsFi5MAxCUjzRofi5ruqEI00,659041
130
+ sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
131
+ sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
132
+ sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
133
+ sage/graphs/isoperimetric_inequalities.cpython-312-aarch64-linux-musl.so,sha256=VH7B5YweeQ-vUxd0QNJwDIZpSFRdjsuop7laTKz6OFs,658449
134
+ sage/graphs/isoperimetric_inequalities.pyx,sha256=37Xx8CbEFdLANoztQ13JzxZXrf5L1uIjqUYtCyTDOyk,17019
135
+ sage/graphs/line_graph.cpython-312-aarch64-linux-musl.so,sha256=Ko20bhFSJu_ErtiD2xICCefdtGzgXn5fijdxfWfEtNc,1261376
136
+ sage/graphs/line_graph.pyx,sha256=p_qn8oH7NCwPlmDBD01HO24Gfhsbtfclzng-RJcRHqM,27749
137
+ sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
138
+ sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
139
+ sage/graphs/matching_covered_graph.py,sha256=_6K6V7RTu-bfAqsbR9l_2qsKZqZ6JFWO9MsC7b0jG4g,144211
140
+ sage/graphs/orientations.py,sha256=4PBJOH_ybCyF2uqbknU3QtPdiCOMqbMvN-rboqBif_8,53303
141
+ sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
142
+ sage/graphs/path_enumeration.cpython-312-aarch64-linux-musl.so,sha256=ALu7VkKjXanmZ8wuW_v658cU59A-k3TQmjbS5P_IUJA,2953281
143
+ sage/graphs/path_enumeration.pyx,sha256=WAQQiHIroIvpSfWdGvHjuC7tPdEiCX5DWxidHveiXUk,90408
144
+ sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
145
+ sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
146
+ sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
147
+ sage/graphs/spanning_tree.cpython-312-aarch64-linux-musl.so,sha256=gPpytrtAs8lzfjFFwFkoz6d6LnPG3WCNod7aVFsrq90,1922840
148
+ sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
149
+ sage/graphs/strongly_regular_db.cpython-312-aarch64-linux-musl.so,sha256=wSFmhNM72mIsMdETnwqv8ueE9-Mr3A8xRK3eNZ1JTkI,6778680
150
+ sage/graphs/strongly_regular_db.pyx,sha256=VNa9LXXy8EV_k9QBFM_T7jKnxAcymeBGa6eaVbek19A,132599
151
+ sage/graphs/traversals.cpython-312-aarch64-linux-musl.so,sha256=MK1whuzGNi5Z5QGwxEyRh_sTW0BluIVgUe8rxI0vubg,1773993
152
+ sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
153
+ sage/graphs/traversals.pyx,sha256=UX2ttDY92aCJPXieOB-VD3dYLfR75gxjLmD1JLBO_z0,65959
154
+ sage/graphs/trees.cpython-312-aarch64-linux-musl.so,sha256=h1651VpjWPq9o-wB2HPZnkrq4QKeRUOdvX4OAzB7y6U,249840
155
+ sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
156
+ sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
157
+ sage/graphs/tutte_polynomial.py,sha256=DNn4VjxZ4dogFM4WhWD1C3jLXl_FRSwxjXRbk23Ah2k,21854
158
+ sage/graphs/views.cpython-312-aarch64-linux-musl.so,sha256=mT09cGn14VSLb2cWQ4Z_eYwgvBii_OIisO70ET1zIKQ,769192
159
+ sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
160
+ sage/graphs/weakly_chordal.cpython-312-aarch64-linux-musl.so,sha256=xgYPKp_-6dumYwT1GBR4VglMyzRaAWw1wc4tyrZsh_k,769712
161
+ sage/graphs/weakly_chordal.pyx,sha256=quFw1k-AAmJ3BJs7Wm0YSUZgZbPCMsEvgUZ8oqiFoc0,21563
162
+ sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
163
+ sage/graphs/base/boost_graph.cpython-312-aarch64-linux-musl.so,sha256=xJTvQSIx7nV1anHkIOa0Pg0Q7hFkgbAcj1EE5zMUNiQ,12814073
164
+ sage/graphs/base/boost_graph.pxd,sha256=5Z4FgnxAaZYXOizWEfsxE1D4K2hJTcdhjXxUFJ9rhA0,3654
165
+ sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
166
+ sage/graphs/base/c_graph.cpython-312-aarch64-linux-musl.so,sha256=0kpqcMCKmfFY9YG-Ciz82_sR-pezaYHNrDvmNrOeYgU,3873721
167
+ sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
168
+ sage/graphs/base/c_graph.pyx,sha256=-3-_WEwS5G_jr3gx3f44fSj5zp_JOfK3po-Nu7IVRa8,179658
169
+ sage/graphs/base/dense_graph.cpython-312-aarch64-linux-musl.so,sha256=OstG_y6Su0SYc4WbGEsSWFy7hH3mjlnRMBHDam88So0,855433
170
+ sage/graphs/base/dense_graph.pxd,sha256=fZLGgFg8jy8zIWlhlB18ew5Z8ogZN91NsHPmUkLsqms,1211
171
+ sage/graphs/base/dense_graph.pyx,sha256=I68QISSmnBJlaFAX59ByG8ght9rxHYtOLMeI7IvjUJ4,25188
172
+ sage/graphs/base/graph_backends.cpython-312-aarch64-linux-musl.so,sha256=fCcvPCuKWgzrPNN9wQThdAVZLQ_wNiIsxGmS4REZFhI,718896
173
+ sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
174
+ sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
175
+ sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
176
+ sage/graphs/base/sparse_graph.cpython-312-aarch64-linux-musl.so,sha256=ZVjqNznKq71Ils0NRTZkCw7XI_6cxLzIzIPV3X6AQds,1183505
177
+ sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
178
+ sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
179
+ sage/graphs/base/static_dense_graph.cpython-312-aarch64-linux-musl.so,sha256=U-2CwT_8craYNgZjGzR643uMbv9-o4RA5m3Ru3HkmX0,1445665
180
+ sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
181
+ sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
182
+ sage/graphs/base/static_sparse_backend.cpython-312-aarch64-linux-musl.so,sha256=l3WbJErpQMlYSbpd1Em1oFLU4vNI3VoIP5uq18MZ-GA,1536200
183
+ sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
184
+ sage/graphs/base/static_sparse_backend.pyx,sha256=eKzp6rY9lZD9dX26QwRFk1ojyLTNPywSdPR6tKbdN4o,55396
185
+ sage/graphs/base/static_sparse_graph.cpython-312-aarch64-linux-musl.so,sha256=yHHnHNjqxonX8uzNuJA8nLziy1EoTdMtgWJrirGYJtI,1118441
186
+ sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
187
+ sage/graphs/base/static_sparse_graph.pyx,sha256=79ckrFBDUnAxrn_VAXOHGtCPQnO3OD0KSczE7xas4ls,52381
188
+ sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
189
+ sage/graphs/generators/basic.py,sha256=0KtJ29r3lQVXVENR2ceX9SZIQOkM-8yNwhWdrTHG1dM,61442
190
+ sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
191
+ sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
192
+ sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
193
+ sage/graphs/generators/distance_regular.cpython-312-aarch64-linux-musl.so,sha256=d4W8tLpPr7G8NV873M_7w0rY9RVzq6yNmpixQiyVkTE,5740880
194
+ sage/graphs/generators/distance_regular.pyx,sha256=dIO6D98FdTS3pk9ZhdXww-Q7WlmTKthcIgRbpDQXPTc,96145
195
+ sage/graphs/generators/families.py,sha256=mw4nwFZRzNacdA5xHrRjmTvZZvTW2k0rd-NlN4sCYJs,164719
196
+ sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
197
+ sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
198
+ sage/graphs/generators/random.py,sha256=lDQxB_YZ6Gwo-_LrqXx4hXC1H2AsP_Tsa0Q8-p44A-8,92227
199
+ sage/graphs/generators/smallgraphs.py,sha256=y441EzXwvSBnJ-qwp4lbZvlS19FfoC8tV4MO4H_HEpA,202063
200
+ sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
201
+ sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
202
+ sage/graphs/graph_decompositions/bandwidth.cpython-312-aarch64-linux-musl.so,sha256=RLpuojzMZl9g5qgxyizzG4VB7lBfDvdF5lHVS0-BD0A,455232
203
+ sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
204
+ sage/graphs/graph_decompositions/clique_separators.cpython-312-aarch64-linux-musl.so,sha256=jzzHfXbTvNQQ8N9cXGOSc1tZyYl79ZB6v7ZLcEUJEi8,1183993
205
+ sage/graphs/graph_decompositions/clique_separators.pyx,sha256=q2Ep-OTAN0u53tg4USepRiw9uOm61XRbsfMKAkbJouk,23690
206
+ sage/graphs/graph_decompositions/cutwidth.cpython-312-aarch64-linux-musl.so,sha256=AHo4A1XIBQNMB4d8T-KnWCrnhw730g4nGD7ffgT7uz0,1062024
207
+ sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
208
+ sage/graphs/graph_decompositions/fast_digraph.cpython-312-aarch64-linux-musl.so,sha256=wowvOqUe0L6LiiXyDtoFBTYHDMHP9sPfgLQQiqHN_18,329928
209
+ sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
210
+ sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=02nMqhb4MvzaJFRGSy4ZefAvhChZsMJBlCTaOtOS3Es,7388
211
+ sage/graphs/graph_decompositions/graph_products.cpython-312-aarch64-linux-musl.so,sha256=CEUqfsSRMwHOtlWXMXHgy5kjBGhUw0neZRNWuEPG4ps,1056008
212
+ sage/graphs/graph_decompositions/graph_products.pyx,sha256=HcTfcex9hrwlcTzBHWMGDonGEUDGGj8jkma0devn5wU,19014
213
+ sage/graphs/graph_decompositions/modular_decomposition.cpython-312-aarch64-linux-musl.so,sha256=gjtzWciual4kphzpOiO3iGNSIVAeJkc0yGn8vE9ONbg,3808489
214
+ sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
215
+ sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
216
+ sage/graphs/graph_decompositions/slice_decomposition.cpython-312-aarch64-linux-musl.so,sha256=tuJjr6RWXCSmFdnfQPWyWELSgi9asM2LeBiSdpE2Gsw,1648785
217
+ sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
218
+ sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=oBp4OVgykHatrhiSLgscsq5B5lUINmCierb3sWpO79w,40359
219
+ sage/graphs/graph_decompositions/tree_decomposition.cpython-312-aarch64-linux-musl.so,sha256=af0bzsI4jYWAlZaHNZiyrtxH3ukz08OBROtJYtdospE,2993328
220
+ sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
221
+ sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
222
+ sage/graphs/graph_decompositions/vertex_separation.cpython-312-aarch64-linux-musl.so,sha256=xCG13jw2MH1_Znxwvp88TrHaDq1vIxiUOArRPIkb0Ko,1773489
223
+ sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
224
+ sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
225
+ sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
226
+ sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
227
+ sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
228
+ sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-312-aarch64-linux-musl.so,sha256=rZxdRHCQRapIXooYTWbN4VbhJn56OReMJj2ftqJzKYw,1773089
229
+ sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
230
+ sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
231
+ sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
232
+ sage/knots/free_knotinfo_monoid.py,sha256=lKx7Z_M4yHt0om_fDYlkAzxGCUycD4yFsrrmKhm5xNM,19714
233
+ sage/knots/gauss_code.py,sha256=XPReZ4_t4FUiV6Nza_8MaCQ-05CuOffdMmk2ckm98jc,8978
234
+ sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
235
+ sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
236
+ sage/knots/knotinfo.py,sha256=4Vkm0-gWRrpnDplo5udTUEUBpv2hDLYTyG2qIFC_Wus,102919
237
+ sage/knots/link.py,sha256=hU_H43oGYkWMDG4D2xJJawdv7RfXbFYcNiFmSpalhho,179401
238
+ sage/sandpiles/all.py,sha256=GxDiTE98htXEil5sR7gdVNgIh8eCu6q1IyxjHPOLyx8,565
239
+ sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,5595
240
+ sage/sandpiles/sandpile.py,sha256=yeO4-dNtmYd5LQV86K5XyMkxYVK3w_rnvBudZNTzTpg,211694
241
+ sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
242
+ sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
243
+ sage/topology/cubical_complex.py,sha256=xceZuOdl1u4ztlp1tJF2tQX58nSSIH5ylelYpZVBECs,70973
244
+ sage/topology/delta_complex.py,sha256=qyIID-0j35XBclNbaM1jEdQQwjtf7kwaOVgbofaFL0E,74587
245
+ sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
246
+ sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
247
+ sage/topology/simplicial_complex.py,sha256=IcEqOQAUvfj2yvld8BZwuWMpt_wlGvzyvVwA5Rl74mo,196261
248
+ sage/topology/simplicial_complex_catalog.py,sha256=GjQMVaPprLhooPWTetGlb27hL-t8sMIssECeb2ESdi0,4722
249
+ sage/topology/simplicial_complex_examples.py,sha256=68Ul_u-OiKNgQooX6uTVKuvXv_w3-yokshrBf-ytF58,70188
250
+ sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
251
+ sage/topology/simplicial_complex_morphism.py,sha256=JZc3bVCAwibwccMzL0XdIi8imVTlnkDvd0R-nFBHHCQ,32596
252
+ sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz95c,152633
253
+ sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wmpYDzlumod0,2172
254
+ sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
255
+ sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
256
+ sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
257
+ passagemath_graphs-10.6.1rc1.dist-info/METADATA,sha256=xqtJqsZzfEgzOD7JFwL3qldHqzSyBOM3DQWQAVFAZOU,13978
258
+ passagemath_graphs-10.6.1rc1.dist-info/WHEEL,sha256=OhR_OrUHeSS9Wv6z5202HxeJVPkI7JBt4nUD2fey9No,113
259
+ passagemath_graphs-10.6.1rc1.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
260
+ passagemath_graphs-10.6.1rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-musllinux_1_2_aarch64
5
5
 
@@ -11,6 +11,11 @@ This distribution makes the following feature available::
11
11
 
12
12
  from .all__sagemath_categories import *
13
13
 
14
+ try: # extra
15
+ from sage.all__sagemath_gap import *
16
+ except ImportError:
17
+ pass
18
+
14
19
  try: # extra
15
20
  from sage.all__sagemath_modules import *
16
21
  except ImportError: