passagemath-graphs 10.5.42__cp311-cp311-macosx_14_0_arm64.whl → 10.6.1rc1__cp311-cp311-macosx_14_0_arm64.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 (133) hide show
  1. {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/METADATA +83 -14
  2. {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/RECORD +133 -131
  3. sage/all__sagemath_graphs.py +5 -0
  4. sage/combinat/abstract_tree.py +188 -17
  5. sage/combinat/cluster_algebra_quiver/interact.py +1 -2
  6. sage/combinat/cluster_algebra_quiver/mutation_type.py +518 -519
  7. sage/combinat/cluster_algebra_quiver/quiver.py +233 -205
  8. sage/combinat/designs/covering_design.py +4 -7
  9. sage/combinat/designs/database.py +11 -10
  10. sage/combinat/designs/designs_pyx.cpython-311-darwin.so +0 -0
  11. sage/combinat/designs/designs_pyx.pyx +2 -2
  12. sage/combinat/designs/evenly_distributed_sets.cpython-311-darwin.so +0 -0
  13. sage/combinat/designs/evenly_distributed_sets.pyx +4 -4
  14. sage/combinat/designs/gen_quadrangles_with_spread.cpython-311-darwin.so +0 -0
  15. sage/combinat/designs/latin_squares.py +53 -20
  16. sage/combinat/designs/orthogonal_arrays.py +2 -1
  17. sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-311-darwin.so +0 -0
  18. sage/combinat/designs/orthogonal_arrays_find_recursive.pyx +22 -21
  19. sage/combinat/designs/resolvable_bibd.py +191 -157
  20. sage/combinat/designs/subhypergraph_search.cpython-311-darwin.so +0 -0
  21. sage/combinat/designs/subhypergraph_search.pyx +4 -4
  22. sage/combinat/designs/twographs.py +2 -2
  23. sage/combinat/finite_state_machine.py +6 -6
  24. sage/combinat/posets/bubble_shuffle.py +247 -0
  25. sage/combinat/posets/d_complete.py +3 -3
  26. sage/combinat/posets/elements.py +3 -3
  27. sage/combinat/posets/hasse_cython.cpython-311-darwin.so +0 -0
  28. sage/combinat/posets/hasse_cython.pyx +1 -1
  29. sage/combinat/posets/hasse_diagram.py +16 -22
  30. sage/combinat/posets/hochschild_lattice.py +158 -0
  31. sage/combinat/posets/incidence_algebras.py +14 -16
  32. sage/combinat/posets/lattices.py +51 -53
  33. sage/combinat/posets/linear_extension_iterator.cpython-311-darwin.so +0 -0
  34. sage/combinat/posets/linear_extensions.py +10 -12
  35. sage/combinat/posets/moebius_algebra.py +4 -4
  36. sage/combinat/posets/poset_examples.py +70 -23
  37. sage/combinat/posets/posets.py +294 -103
  38. sage/databases/knotinfo_db.py +2 -1
  39. sage/graphs/asteroidal_triples.cpython-311-darwin.so +0 -0
  40. sage/graphs/asteroidal_triples.pyx +24 -3
  41. sage/graphs/base/boost_graph.cpython-311-darwin.so +0 -0
  42. sage/graphs/base/boost_graph.pxd +3 -3
  43. sage/graphs/base/c_graph.cpython-311-darwin.so +0 -0
  44. sage/graphs/base/c_graph.pyx +1 -1
  45. sage/graphs/base/dense_graph.cpython-311-darwin.so +0 -0
  46. sage/graphs/base/dense_graph.pxd +5 -3
  47. sage/graphs/base/dense_graph.pyx +44 -0
  48. sage/graphs/base/graph_backends.cpython-311-darwin.so +0 -0
  49. sage/graphs/base/sparse_graph.cpython-311-darwin.so +0 -0
  50. sage/graphs/base/static_dense_graph.cpython-311-darwin.so +0 -0
  51. sage/graphs/base/static_sparse_backend.cpython-311-darwin.so +0 -0
  52. sage/graphs/base/static_sparse_backend.pyx +8 -5
  53. sage/graphs/base/static_sparse_graph.cpython-311-darwin.so +0 -0
  54. sage/graphs/base/static_sparse_graph.pyx +86 -15
  55. sage/graphs/bipartite_graph.py +59 -36
  56. sage/graphs/centrality.cpython-311-darwin.so +0 -0
  57. sage/graphs/centrality.pyx +82 -9
  58. sage/graphs/cographs.py +1 -1
  59. sage/graphs/comparability.cpython-311-darwin.so +0 -0
  60. sage/graphs/comparability.pyx +64 -26
  61. sage/graphs/connectivity.cpython-311-darwin.so +0 -0
  62. sage/graphs/convexity_properties.cpython-311-darwin.so +0 -0
  63. sage/graphs/convexity_properties.pyx +52 -9
  64. sage/graphs/digraph.py +439 -95
  65. sage/graphs/digraph_generators.py +174 -102
  66. sage/graphs/distances_all_pairs.cpython-311-darwin.so +0 -0
  67. sage/graphs/dot2tex_utils.py +1 -1
  68. sage/graphs/edge_connectivity.cpython-311-darwin.so +0 -0
  69. sage/graphs/generators/basic.py +1 -1
  70. sage/graphs/generators/distance_regular.cpython-311-darwin.so +0 -0
  71. sage/graphs/generators/distance_regular.pyx +1 -1
  72. sage/graphs/generators/families.py +37 -27
  73. sage/graphs/generators/random.py +2 -2
  74. sage/graphs/generators/smallgraphs.py +3 -3
  75. sage/graphs/generic_graph.py +558 -86
  76. sage/graphs/generic_graph_pyx.cpython-311-darwin.so +0 -0
  77. sage/graphs/generic_graph_pyx.pyx +58 -11
  78. sage/graphs/genus.cpython-311-darwin.so +0 -0
  79. sage/graphs/genus.pyx +3 -4
  80. sage/graphs/graph.py +291 -8
  81. sage/graphs/graph_coloring.cpython-311-darwin.so +0 -0
  82. sage/graphs/graph_database.py +67 -12
  83. sage/graphs/graph_decompositions/bandwidth.cpython-311-darwin.so +0 -0
  84. sage/graphs/graph_decompositions/clique_separators.cpython-311-darwin.so +0 -0
  85. sage/graphs/graph_decompositions/clique_separators.pyx +24 -3
  86. sage/graphs/graph_decompositions/cutwidth.cpython-311-darwin.so +0 -0
  87. sage/graphs/graph_decompositions/fast_digraph.cpython-311-darwin.so +0 -0
  88. sage/graphs/graph_decompositions/fast_digraph.pyx +1 -1
  89. sage/graphs/graph_decompositions/graph_products.cpython-311-darwin.so +0 -0
  90. sage/graphs/graph_decompositions/graph_products.pyx +67 -21
  91. sage/graphs/graph_decompositions/modular_decomposition.cpython-311-darwin.so +0 -0
  92. sage/graphs/graph_decompositions/slice_decomposition.cpython-311-darwin.so +0 -0
  93. sage/graphs/graph_decompositions/slice_decomposition.pyx +34 -8
  94. sage/graphs/graph_decompositions/tree_decomposition.cpython-311-darwin.so +0 -0
  95. sage/graphs/graph_decompositions/vertex_separation.cpython-311-darwin.so +0 -0
  96. sage/graphs/graph_generators.py +45 -32
  97. sage/graphs/graph_generators_pyx.cpython-311-darwin.so +0 -0
  98. sage/graphs/graph_generators_pyx.pyx +15 -15
  99. sage/graphs/graph_latex.py +1 -1
  100. sage/graphs/graph_list.py +52 -9
  101. sage/graphs/graph_plot.py +7 -0
  102. sage/graphs/hyperbolicity.cpython-311-darwin.so +0 -0
  103. sage/graphs/hyperbolicity.pyx +2 -0
  104. sage/graphs/independent_sets.cpython-311-darwin.so +0 -0
  105. sage/graphs/isoperimetric_inequalities.cpython-311-darwin.so +0 -0
  106. sage/graphs/isoperimetric_inequalities.pyx +42 -6
  107. sage/graphs/line_graph.cpython-311-darwin.so +0 -0
  108. sage/graphs/line_graph.pyx +153 -37
  109. sage/graphs/matching_covered_graph.py +84 -60
  110. sage/graphs/orientations.py +3 -18
  111. sage/graphs/path_enumeration.cpython-311-darwin.so +0 -0
  112. sage/graphs/path_enumeration.pyx +2 -2
  113. sage/graphs/spanning_tree.cpython-311-darwin.so +0 -0
  114. sage/graphs/strongly_regular_db.cpython-311-darwin.so +0 -0
  115. sage/graphs/strongly_regular_db.pyx +15 -15
  116. sage/graphs/traversals.cpython-311-darwin.so +0 -0
  117. sage/graphs/traversals.pyx +13 -12
  118. sage/graphs/trees.cpython-311-darwin.so +0 -0
  119. sage/graphs/tutte_polynomial.py +1 -1
  120. sage/graphs/views.cpython-311-darwin.so +0 -0
  121. sage/graphs/weakly_chordal.cpython-311-darwin.so +0 -0
  122. sage/graphs/weakly_chordal.pyx +50 -8
  123. sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-311-darwin.so +0 -0
  124. sage/knots/free_knotinfo_monoid.py +3 -3
  125. sage/knots/knotinfo.py +102 -82
  126. sage/knots/link.py +72 -39
  127. sage/topology/cubical_complex.py +4 -5
  128. sage/topology/delta_complex.py +4 -4
  129. sage/topology/simplicial_complex.py +0 -1
  130. sage/topology/simplicial_complex_catalog.py +6 -0
  131. sage/topology/simplicial_complex_examples.py +4 -16
  132. {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/WHEEL +0 -0
  133. {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-graphs
3
- Version: 10.5.42
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
@@ -19,20 +19,19 @@ Classifier: Intended Audience :: Science/Research
19
19
  Classifier: Operating System :: POSIX
20
20
  Classifier: Operating System :: MacOS :: MacOS X
21
21
  Classifier: Programming Language :: Python :: 3 :: Only
22
- Classifier: Programming Language :: Python :: 3.9
23
22
  Classifier: Programming Language :: Python :: 3.10
24
23
  Classifier: Programming Language :: Python :: 3.11
25
24
  Classifier: Programming Language :: Python :: 3.12
26
25
  Classifier: Programming Language :: Python :: 3.13
27
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
27
  Classifier: Topic :: Scientific/Engineering :: Mathematics
29
- Requires-Python: <3.14,>=3.9
28
+ Requires-Python: <3.14,>=3.10
30
29
  Description-Content-Type: text/x-rst
31
30
  Requires-Dist: gmpy2~=2.1.b999
32
31
  Requires-Dist: cysignals!=1.12.0,>=1.11.2
33
32
  Requires-Dist: memory_allocator
34
- Requires-Dist: passagemath-categories~=10.5.42.0
35
- Requires-Dist: passagemath-environment~=10.5.42.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
@@ -1,16 +1,16 @@
1
- passagemath_graphs-10.5.42.dist-info/RECORD,,
2
- passagemath_graphs-10.5.42.dist-info/WHEEL,sha256=IDSs5FX6_bA_Je6GNgVyz6rcn2XC7t_ySnnLoSan-5o,136
3
- passagemath_graphs-10.5.42.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
4
- passagemath_graphs-10.5.42.dist-info/METADATA,sha256=UdioicOXtOKUAm6bRISjs2Rzaom2k4wQMkxR8hbxIlc,9557
1
+ passagemath_graphs-10.6.1rc1.dist-info/RECORD,,
2
+ passagemath_graphs-10.6.1rc1.dist-info/WHEEL,sha256=IDSs5FX6_bA_Je6GNgVyz6rcn2XC7t_ySnnLoSan-5o,136
3
+ passagemath_graphs-10.6.1rc1.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
4
+ passagemath_graphs-10.6.1rc1.dist-info/METADATA,sha256=xqtJqsZzfEgzOD7JFwL3qldHqzSyBOM3DQWQAVFAZOU,13978
5
5
  passagemath_graphs.dylibs/libgmp.10.dylib,sha256=9Zh0g_D30IVg20eXzyK6Q7tW_EozvBqH314SGDdKZRk,464688
6
- sage/all__sagemath_graphs.py,sha256=Az4kzTDShM1H7Ia4kpAbLF2MvAtsbOWwJACGSzPqOT8,752
7
- sage/topology/simplicial_complex_catalog.py,sha256=JGHpK2P6JilXIbnSIanraJTST2SQaHSqBWg8ZAlqhFU,4396
6
+ sage/all__sagemath_graphs.py,sha256=q3QFFFTkeijGtFSjZtlnAko3Mrnr8fK-m5Yghw2VQyM,837
7
+ sage/topology/simplicial_complex_catalog.py,sha256=GjQMVaPprLhooPWTetGlb27hL-t8sMIssECeb2ESdi0,4722
8
8
  sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
9
9
  sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
10
10
  sage/topology/simplicial_complex_morphism.py,sha256=JZc3bVCAwibwccMzL0XdIi8imVTlnkDvd0R-nFBHHCQ,32596
11
- sage/topology/simplicial_complex_examples.py,sha256=w8FIwK1UAswpYE_Oa6-rDeMfxCrHVloA1AY-KJYCkg4,70753
12
- sage/topology/delta_complex.py,sha256=bFIhF_72XE3CIU8kWOts62NLW-OAJ8nD99I01vIPIxE,74583
13
- sage/topology/cubical_complex.py,sha256=plKyVmHbHgCZiUdlAHSjgFq10nw5IFmOqF-la01UI1g,71030
11
+ sage/topology/simplicial_complex_examples.py,sha256=68Ul_u-OiKNgQooX6uTVKuvXv_w3-yokshrBf-ytF58,70188
12
+ sage/topology/delta_complex.py,sha256=qyIID-0j35XBclNbaM1jEdQQwjtf7kwaOVgbofaFL0E,74587
13
+ sage/topology/cubical_complex.py,sha256=xceZuOdl1u4ztlp1tJF2tQX58nSSIH5ylelYpZVBECs,70973
14
14
  sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
15
15
  sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
16
16
  sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
@@ -18,17 +18,17 @@ sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz9
18
18
  sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wmpYDzlumod0,2172
19
19
  sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
20
20
  sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
21
- sage/topology/simplicial_complex.py,sha256=5rPDy-11TzNggeM-QKDYt21KAGAzmcMULNAnkNgu5WE,196306
21
+ sage/topology/simplicial_complex.py,sha256=IcEqOQAUvfj2yvld8BZwuWMpt_wlGvzyvVwA5Rl74mo,196261
22
22
  sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
23
23
  sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
24
- sage/databases/knotinfo_db.py,sha256=EafNspIultVKdtZrwtzYySTGxPun0oTXN_zFCwagYQE,54188
24
+ sage/databases/knotinfo_db.py,sha256=ijt1goKI2Z_Yst6XTbmH9511cWKZWSd3HlGMO69ugqQ,54189
25
25
  sage/combinat/graph_path.py,sha256=enqb7IFVXGZ-roxtMJRTaTmCDY3qr_kkjC-03qg0p5s,13122
26
26
  sage/combinat/shard_order.py,sha256=hULsSgJS39xMwEe8UrNCkoTZii41V-cROxE0PAvsE8k,8060
27
27
  sage/combinat/binary_tree.py,sha256=BnjdPKrHRxtJrlKmUSHqrDDQ0UvQbm8onuh0IHpSGV0,183189
28
- sage/combinat/abstract_tree.py,sha256=mE_VtaSWztO_BJHthsJNhvD3mCTf2wVfHQr-3--169k,88714
28
+ sage/combinat/abstract_tree.py,sha256=3KcwC0HaEmFz8O_dR-kvy2xiMp9G64v5SEC4zm7Szqg,94266
29
29
  sage/combinat/nu_tamari_lattice.py,sha256=DIZ3Y-hyxvATa_NZDJKv3mzlUcjKVSS7N_drsJ9LDzY,9457
30
30
  sage/combinat/ordered_tree.py,sha256=Q08B55_8JZPxiymIAh5bbhiepvWtjj3T96owcR0mLfw,47856
31
- sage/combinat/finite_state_machine.py,sha256=nOn9HzDZljzaNaTY_x4eL39HkM_2TbRreqXvk3X_XsI,574609
31
+ sage/combinat/finite_state_machine.py,sha256=rngcy9hczCxVkhNQvK6ho3A7xosqi9bv1tUJaLJR2gU,574657
32
32
  sage/combinat/finite_state_machine_generators.py,sha256=YqeqpPwWpra88B4GW5IcA2rtbXpbeT9uGxREegTJFdM,73186
33
33
  sage/combinat/all__sagemath_graphs.py,sha256=zAse3aKr_WJaFWDL93rOM8mNuHUvs_hs0gJsoxfbqiQ,1329
34
34
  sage/combinat/yang_baxter_graph.py,sha256=BGcGaIfAnOzW4g9tCg6uDpKrHHeG-Q5z74TBQa0JYhc,33932
@@ -37,58 +37,60 @@ sage/combinat/rooted_tree.py,sha256=HwZ6OlSwROTXZoZsgPEd4Hz9VqYPMsZYXdrO-PbcT4s,
37
37
  sage/combinat/tamari_lattices.py,sha256=1K261Ntyt3uZqkFVVTC_PVyimDFomOeJeEW3UAwqpQc,11061
38
38
  sage/combinat/designs/covering_array.py,sha256=SC7dwTzNt4lYJk_FKRUt_EsaOYjFRXMJus2i8NKGP84,9600
39
39
  sage/combinat/designs/difference_matrices.py,sha256=H1gvPjsH890ASH66zSJj36yiFMIU_C40xYZA609eawE,8610
40
- sage/combinat/designs/resolvable_bibd.py,sha256=zZyP6-dTavplbCFR5vGa4zjb8tHqmn6FRF8NrPIrt4s,29761
41
- sage/combinat/designs/twographs.py,sha256=xr84mamGdA-DIGcti5mVhEIvwlkmOt5pBwv8RKe1whM,11227
40
+ sage/combinat/designs/resolvable_bibd.py,sha256=WzDQ_n-_yKX-6YXYbkP5yIrXnU-UW_Mo0I7Mg6zGbyA,30498
41
+ sage/combinat/designs/twographs.py,sha256=gUba7-nivoQpPrPgHMD7UshhY9Q7do9GXylLb_U_xC8,11230
42
42
  sage/combinat/designs/steiner_quadruple_systems.py,sha256=-vnODm9iybM9_x36oDOFMZyu_kMaMTZWYbzcWAvaG0E,68601
43
- sage/combinat/designs/orthogonal_arrays.py,sha256=MuJ5C7NtafuJUfjvzl9n1dea5Uwl6GgroEcDgWHSlXg,82581
44
- sage/combinat/designs/subhypergraph_search.cpython-311-darwin.so,sha256=ijRpR4nkf616NEqrmqExU6MB7GIz3F2Pz6FRkIOMH4o,125304
45
- sage/combinat/designs/evenly_distributed_sets.cpython-311-darwin.so,sha256=fgOEQvsIDhLuGk7ls_G3eftmEmFJmAejpFzAjljtC1s,189360
46
- sage/combinat/designs/gen_quadrangles_with_spread.cpython-311-darwin.so,sha256=eWBkht9TxtOKjGbn1yI_-vhefSeAtwhnD2dDS9R6aK8,144880
43
+ sage/combinat/designs/orthogonal_arrays.py,sha256=_F7d167KuXhNPoatn_aHQXnxBY6EELW_FlYQ_c1RyIk,82598
44
+ sage/combinat/designs/subhypergraph_search.cpython-311-darwin.so,sha256=6kf1li5JrYaAdjMJPnNPlf411F6LtxIh_6b8ZKxiXQk,125304
45
+ sage/combinat/designs/evenly_distributed_sets.cpython-311-darwin.so,sha256=vDK30W8di3fdPjczkcYKrdpuGyAlM-wVazA1yTC4zVI,189360
46
+ sage/combinat/designs/gen_quadrangles_with_spread.cpython-311-darwin.so,sha256=wafwyVrrH3KwoQULGvI0DqynRGNs5-dlqQwCFCIlrMk,144880
47
47
  sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
48
48
  sage/combinat/designs/MOLS_handbook_data.py,sha256=SOjglkjrMNtbttoKD5werH6IXSUMwt1Zh_cOLOPSwTU,42437
49
- sage/combinat/designs/subhypergraph_search.pyx,sha256=HLopGk2XtAZXaMHWSrAhhBdJC87szaeaNrcKpvSAFvA,18125
49
+ sage/combinat/designs/subhypergraph_search.pyx,sha256=EfLrVGZNDSiVgeGNohlO09f0wdqPh6XwQHCrHNgqmng,18146
50
50
  sage/combinat/designs/block_design.py,sha256=PHZG5Q9egUb7PwVnX2MQq6UPATxZPp5zq_VpJzWLAxU,38165
51
- sage/combinat/designs/database.py,sha256=3zky0T2enXCAIFXfsHUlB1z2JsGbIuNpC8HFEHltgT0,242946
51
+ sage/combinat/designs/database.py,sha256=0sfODA8sYjemLejPQNZnQqj_eIgyPuLyTsNWw495w4Q,242955
52
52
  sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
53
53
  sage/combinat/designs/group_divisible_designs.py,sha256=U8YLCTUbbsdmWH8aiKqxWHv3AFNHqmCh1eoVFELIch4,13037
54
54
  sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
55
55
  sage/combinat/designs/all.py,sha256=z1avRgBKp3Gu_OhxVMFYtxWoXCBOcFd_t5-C1JcoAkw,2015
56
56
  sage/combinat/designs/bibd.py,sha256=fB_aPra3Cbr4uqef4vLN1sIKJ9yXn-teFGMOzrkRpiw,59071
57
- sage/combinat/designs/latin_squares.py,sha256=2O6O35hCPlemoRn4RzBQFgwjZyANoBO92cN8aMAxe5s,21834
58
- sage/combinat/designs/evenly_distributed_sets.pyx,sha256=VktfzlQuB6wJVY6kk63YAXtSsh4yaO8i4XiWmOvs02Y,25543
57
+ sage/combinat/designs/latin_squares.py,sha256=R8tl7zoIGvbxrQdoRMoeW9eF5xeq0m41eZCNwg0i-7w,23159
58
+ sage/combinat/designs/evenly_distributed_sets.pyx,sha256=_ExpH2ImCLYhXG4aovPXKHGa8XMKYlILw-r5Iv1Yr5E,25548
59
59
  sage/combinat/designs/gen_quadrangles_with_spread.pyx,sha256=oE049xlfXkX_ly-WpQZnPw2cNXYDueHeuRJ69bfTbkQ,10767
60
- sage/combinat/designs/designs_pyx.pyx,sha256=e3RtTEz6VofqnfFNpJHrTLhZ_eRdKsxSHDmkjV3_RXY,37180
60
+ sage/combinat/designs/designs_pyx.pyx,sha256=_unJWxusmZVUZ5SPiTtgOCYZmhWTFqptLb3MOz37ND0,37170
61
61
  sage/combinat/designs/incidence_structures.py,sha256=-a1Ub9q_91055qr-Ns3CuQduJvVmVqja2tBbMRu0u4Q,89619
62
- sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=IIiOkj4T2ibHoUefBPxWxAN7n0gtzWQd6Cbii2ullbM,34298
62
+ sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=NMqnHcUCSURto_AnwjkXuDc298lLF0m0b0uObekmG0g,34281
63
63
  sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
64
- sage/combinat/designs/designs_pyx.cpython-311-darwin.so,sha256=PCNp70V7f3NRj_6Zw_eECPujIKm8l34fpsjQXAvSkEM,262080
65
- sage/combinat/designs/covering_design.py,sha256=7QpRR_ziEyHK5u1l9HgP4w5LdT4FOIk2h7d15NBdois,17375
64
+ sage/combinat/designs/designs_pyx.cpython-311-darwin.so,sha256=aJd53ZC60_o29aSUuG3AFjzxGTYec0d9Pu-5aRR7LTQ,262080
65
+ sage/combinat/designs/covering_design.py,sha256=GhpSmZALYIwSjSx2oEOxxXhLemJCaKTrIGjZS0xj6AI,17297
66
66
  sage/combinat/designs/difference_family.py,sha256=0fhKdWJVL0uErG5BwLfJKt2cDgF8gHIkudLtF6So1rI,155391
67
- sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-311-darwin.so,sha256=E9wSWkKlupkkJymqie6LCwjt_DnVSbo6WOie5yxHB-k,210848
68
- sage/combinat/cluster_algebra_quiver/quiver.py,sha256=6-EKk63ZQdHekayChrNd24M8CZpGTNZ5DQujNDQ9tfQ,86317
69
- sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=MexdkgJF64f58LdVPDLaqdUYNtTbt4oCt7Gm5R-HKGg,76837
67
+ sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-311-darwin.so,sha256=ubMJO1Z3CtnKX2ncwBpDjzqMOupKnGyGZkWmcxLD4II,210848
68
+ sage/combinat/cluster_algebra_quiver/quiver.py,sha256=mDBNojdFE00O_61QeHzwsWb1Zxdv9gWs3cVsXM-zzYY,86160
69
+ sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=1aVYcY7dOakwBueA3E3Tu7PImQNyw3TiSw_7s5lNA_M,76256
70
70
  sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
71
71
  sage/combinat/cluster_algebra_quiver/all.py,sha256=Kn96IeqXORbsHL0NSlKT3mKDtcM2biPzgxNrab-BiXY,831
72
72
  sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py,sha256=24QBRRseafrBvShSJC_ilP7nY6QwDX0U1GkMDxFhoBA,92005
73
73
  sage/combinat/cluster_algebra_quiver/cluster_seed.py,sha256=8WyDGr-i77io5pC5xSCdMP-0ssdWxLZKyKVTN6eMx-Y,197656
74
- sage/combinat/cluster_algebra_quiver/interact.py,sha256=ZKeMsySh5KcaMtnbfEbftKSYwCcRrkZjllaushry3N8,4266
75
- sage/combinat/posets/posets.py,sha256=IVvddH6UUbUjFI1WhY6zKQUJBeC7UuhhfOOKEmZI1o8,332834
76
- sage/combinat/posets/poset_examples.py,sha256=23w6JjtzVyOR9RV-L8K1zLP41wUcI7H2ENtoLURt_IU,77050
77
- sage/combinat/posets/moebius_algebra.py,sha256=GmJdyCNhmIeT-hE0d-djJLRd2jgBtydPNyNgmG49Jfc,26371
78
- sage/combinat/posets/lattices.py,sha256=W2fN9oRs5dUUTX5cbw7iFFeEAj3c3oExhPQCEputFbQ,186239
79
- sage/combinat/posets/incidence_algebras.py,sha256=qf1d495q2BJItNf0Ills8IAlv_GlZeqb53MR_dsEX1k,25058
74
+ sage/combinat/cluster_algebra_quiver/interact.py,sha256=J-Ka38Eb540DIzet6XP_7qdYh1Bfz-xucAA8YL1BLO0,4250
75
+ sage/combinat/posets/posets.py,sha256=geox_irhoOkz96gNyKD-fFzQZjmHojrks4bpBGE7FFI,340260
76
+ sage/combinat/posets/poset_examples.py,sha256=GSscfCvu0AbxFrwAMMVgSPoZDAg_PLmaemKUjvulRyw,78924
77
+ sage/combinat/posets/moebius_algebra.py,sha256=FZY0OqDJd_QBWGzZJpCRk3573wlJBBXU6Cl1TxJt89s,26399
78
+ sage/combinat/posets/lattices.py,sha256=UMfTOqp45FQ35sf-F6LciPvva1Tb6P0mtc0cHG3fqXc,186721
79
+ sage/combinat/posets/hochschild_lattice.py,sha256=wkrxQDkzGoAdhLU7YjiVlGHaoSXUxqwCDjmH-HE4uZQ,4667
80
+ sage/combinat/posets/incidence_algebras.py,sha256=v9QMrN1VW8T4vMfdrJpr4RULr0RlzCIPii0IaN0UVxU,25072
80
81
  sage/combinat/posets/linear_extension_iterator.pyx,sha256=1DVxfIsMvtsPGjOi3SUjWtVKFKXQfnk_UXKtmsTpQl4,9272
81
- sage/combinat/posets/elements.py,sha256=xKAD36BOIBtKi3AJ-ITCQMnjjrnjSSBfDPokdIdz2y8,7961
82
+ sage/combinat/posets/elements.py,sha256=IgixRtTMTRKz3nGJGcYtBwucK22b3I5xy84ephRjpVE,7982
82
83
  sage/combinat/posets/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
83
- sage/combinat/posets/linear_extensions.py,sha256=hpABWmpo5kXMxKUY3A2R4JmrtyiYONe3M3oaS_VA2qM,41598
84
+ sage/combinat/posets/linear_extensions.py,sha256=qFivvSYmOOyUdYj_uLyPMvtIP8i5Nl9MpFKsFaSuiTA,41635
84
85
  sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
85
- sage/combinat/posets/linear_extension_iterator.cpython-311-darwin.so,sha256=Gx8icIoPu7nAnMs5jc3K8NuI4bFReh_ZGY6rFY5sH2A,146944
86
- sage/combinat/posets/hasse_diagram.py,sha256=Z87fc4ssKwWWxD2Mjvf5L0xZDyG8fheArbNQrelJTM4,133265
87
- sage/combinat/posets/hasse_cython.pyx,sha256=xGUFu90go4BA_LwmXkbbRT5wnb5WB71jmwU1JnW4fj4,5989
88
- sage/combinat/posets/hasse_cython.cpython-311-darwin.so,sha256=q7cK1dUgITvy9pz8BCs88QO6GM0eBpY7q-GGAL0hajo,150256
86
+ sage/combinat/posets/linear_extension_iterator.cpython-311-darwin.so,sha256=U369OREHgpsqPTWVpPD6BrAXIU6jA7pBXuMcfbTOUGI,146944
87
+ sage/combinat/posets/hasse_diagram.py,sha256=u-A0HrvEuLCUhZwBcTWyrLpDpM03pkpjAqtIuYrxIP4,133205
88
+ sage/combinat/posets/hasse_cython.pyx,sha256=g8C4EGYMN0jl1xLhmeaMzbIIyvGujWT0W5UCT2Qje4g,5988
89
+ sage/combinat/posets/hasse_cython.cpython-311-darwin.so,sha256=qVyFpPkjflgtY0IpvM5Y7DyWg0T9TwU9o9yFOcA85qk,150256
89
90
  sage/combinat/posets/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
90
91
  sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
91
- sage/combinat/posets/d_complete.py,sha256=ZkqWd-FTQMFppkXv8si4Ku4ZWmwydVeWWazv17JI1H0,6621
92
+ sage/combinat/posets/bubble_shuffle.py,sha256=6EutFGs0dMvjN7f51WAefYRLBRLc1enZ-N2Offx74M0,7485
93
+ sage/combinat/posets/d_complete.py,sha256=3k1llRG7zIgKmvy-gJ6_A2liDvjTiC04OX_vOdmzoUU,6611
92
94
  sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
93
95
  sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
94
96
  sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
@@ -102,154 +104,154 @@ sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,55
102
104
  sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
103
105
  sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
104
106
  sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
105
- sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-311-darwin.so,sha256=ppihHq0Jq-lF6_7NsuSxjVKEMm8bCIPKBfyy1EwsCaY,309408
107
+ sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-311-darwin.so,sha256=sdmZwarCuzD5F2XMGRa_AaRLX-xd9NsMxArnOW-rn70,309408
106
108
  sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
107
109
  sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
108
- sage/graphs/weakly_chordal.cpython-311-darwin.so,sha256=0qwhhGNY3TBtJMZon1mhWFvzKumhYmh-FdW7vDWS_7Y,164352
110
+ sage/graphs/weakly_chordal.cpython-311-darwin.so,sha256=A1t01OyhsZ27YHln7v3tpLCRUol7DGn0_w2eyefp4_M,181728
109
111
  sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
110
- sage/graphs/digraph_generators.py,sha256=QcVOE4jpqe8QxbEk79fFr33Mc0zZuIjJadkKTJG_-Bc,75899
111
- sage/graphs/asteroidal_triples.pyx,sha256=8y4J9SN8HNXQIBRQjXPAmeSfkqJ1KaHmOe-NV5_3dpI,10431
112
+ sage/graphs/digraph_generators.py,sha256=GCgmzNzeNrAetGPavREZnRejf3yciY-ycIbOQkqrTYw,79777
113
+ sage/graphs/asteroidal_triples.pyx,sha256=kslBS2OY3d7F0k54vb4nvb1pKH4UfvXv0AssHf9U61Y,11269
112
114
  sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
113
- sage/graphs/graph_latex.py,sha256=58UNam13b4n9QVvdrMWGniZMrs-QnVXbmdpMPnA-Afg,99128
115
+ sage/graphs/graph_latex.py,sha256=_zJtj4YXZ0wh8wgL2Nk9-6UqKwd8joEqjfWEusX81Jc,99136
114
116
  sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
115
- sage/graphs/matching_covered_graph.py,sha256=B_-x9cutL3AIMGaKIayFyMyIUIB6JjZSDY3fy9OB-kc,143004
117
+ sage/graphs/matching_covered_graph.py,sha256=_6K6V7RTu-bfAqsbR9l_2qsKZqZ6JFWO9MsC7b0jG4g,144211
116
118
  sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
117
119
  sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
118
- sage/graphs/asteroidal_triples.cpython-311-darwin.so,sha256=pvBBPzDzwdWuZILB2jHmGI71zVjNAa9csnKtuKo5qZU,123440
119
- sage/graphs/edge_connectivity.cpython-311-darwin.so,sha256=E_KmvnGs_SIkQ5bTDPNqr3jgE4NSAaWiqre2iGdZQDA,183712
120
- sage/graphs/isoperimetric_inequalities.cpython-311-darwin.so,sha256=j6q29d-UKUJu4Uim44ZWqL7IrYtXi0WpTSHePmgF8Ms,144976
120
+ sage/graphs/asteroidal_triples.cpython-311-darwin.so,sha256=m4M54BurLFHDKABTeh3UCKuoj2R5rYjur5P91VB2AmM,123936
121
+ sage/graphs/edge_connectivity.cpython-311-darwin.so,sha256=GymCulez0RhqQAJW9aDZCqRFkcFi9Si4ID9oB5mDD6U,183728
122
+ sage/graphs/isoperimetric_inequalities.cpython-311-darwin.so,sha256=_MPIfgUo-cjg_FQdm_utrpi7joeqsrcr5RJaworkvmo,145392
121
123
  sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
122
- sage/graphs/generic_graph_pyx.pyx,sha256=T1QiJGKc1tcKSrMEFJM6-cTLko5ffC0kw2GH3Ml2qOs,58405
123
- sage/graphs/line_graph.pyx,sha256=fg92Q-gxnzRMjPmID7IztliBYP7n8JL0HhpK0CTCLio,22272
124
- sage/graphs/hyperbolicity.pyx,sha256=Xij4iR3b0gQ0095UklppcWc3uZfEeh3GlcjrYlN0jVM,64417
125
- sage/graphs/graph.py,sha256=C078UpvczPdjrh9nqFr_uvruwXW7JyF9_fkRsRqkJNc,369909
126
- sage/graphs/distances_all_pairs.cpython-311-darwin.so,sha256=ppuMe9OqVbGOc0nLSfGaOExDh7ZCTrNaXYHM1UAr0Ck,319376
127
- sage/graphs/convexity_properties.pyx,sha256=G5bhKH3lho-CMMNrIMTx3OjC0fN_8GekR_VwqGBynBk,29524
124
+ sage/graphs/generic_graph_pyx.pyx,sha256=i5gISutTP3P_Fc5LInP-fDJX_U1nFRocdXOt114lmIU,60287
125
+ sage/graphs/line_graph.pyx,sha256=p_qn8oH7NCwPlmDBD01HO24Gfhsbtfclzng-RJcRHqM,27749
126
+ sage/graphs/hyperbolicity.pyx,sha256=qzLZkEAC2zDrksEfqL2wqFHcTWzDsQpGxWWH5Gnke_o,64503
127
+ sage/graphs/graph.py,sha256=Q2GVcF9pUUuXcMLDUIL3eqdsRxDXtUXjXKHk1IT-IVY,381762
128
+ sage/graphs/distances_all_pairs.cpython-311-darwin.so,sha256=ZTGhHGIzeWDfgFGsiRaH3ugAmUOxwkFyejxpxt41hc0,319376
129
+ sage/graphs/convexity_properties.pyx,sha256=zHhpsRj6qi2oLxoUplnzDDaQL0nYYtot6q6GC1l-8Ls,31137
128
130
  sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
129
- sage/graphs/strongly_regular_db.cpython-311-darwin.so,sha256=gcBRPJXTPW0Fgxoom6dcg71TV6YTmhHOopARGWOO6dE,977208
131
+ sage/graphs/strongly_regular_db.cpython-311-darwin.so,sha256=BNDchwZKDjbobl5nwgZRH7Pyu7DdoHbGkYyxdFaf9NA,977208
130
132
  sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
131
- sage/graphs/traversals.cpython-311-darwin.so,sha256=xhjj3Fe6bnEUlY0xUAVercdrPums-1h-W609Omtevkw,326368
133
+ sage/graphs/traversals.cpython-311-darwin.so,sha256=QRK_gihWI2XlviFgskPGZWbrsSLHj_gOfkXuNCuxJQQ,326752
132
134
  sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
133
135
  sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
134
- sage/graphs/graph_generators_pyx.pyx,sha256=1E81srDiCWxRmesm86ne47frn2UJ04Kp5AaFI7kW-j4,3092
136
+ sage/graphs/graph_generators_pyx.pyx,sha256=-TP5O6mDg7clGrKcDLUzcFsLYuw8VGGhPvLV56I9wBA,3214
135
137
  sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
136
- sage/graphs/generic_graph_pyx.cpython-311-darwin.so,sha256=R1UnY_AIMr2_lU-j8q-k-6FSXC3yfaw1rgNLlwF-nec,321024
138
+ sage/graphs/generic_graph_pyx.cpython-311-darwin.so,sha256=RrMixG5ol5QV0DZrMxZMj-rN5N_LWaZpAgmMVA1xDdA,321440
137
139
  sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
138
- sage/graphs/spanning_tree.cpython-311-darwin.so,sha256=7J63nc3oQvxxzu-V905So1CZNxB99-Ap6xPZhWrnXqQ,352336
140
+ sage/graphs/spanning_tree.cpython-311-darwin.so,sha256=XT-LbqsDCeHFJd80mlb-jeYYXsF-L226QB4vIhZhjZ8,352336
139
141
  sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
140
142
  sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
141
- sage/graphs/graph_coloring.cpython-311-darwin.so,sha256=8t85Oh8QWfVHZ2rZhVG8vIaXVREoqtSRXjHO4y5noTU,713992
142
- sage/graphs/convexity_properties.cpython-311-darwin.so,sha256=m4oqOmoapICWej1N9iOiWa3RbeKHx9-VLPnbF6VMLgc,191440
143
+ sage/graphs/graph_coloring.cpython-311-darwin.so,sha256=0FpYKjObT9MDFzDLNALxHkMDPIi5u2WoRotVL5WZPYI,713992
144
+ sage/graphs/convexity_properties.cpython-311-darwin.so,sha256=kf78OZUPM2ECPJkfsOsc4VnNUOBClfLUvjlmmqXLS44,208560
143
145
  sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
144
146
  sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
145
- sage/graphs/bipartite_graph.py,sha256=L0-eIF8q2JZbkKqOHEafxsbJirxrKVB5N0Gsh5CpVkQ,104781
146
- sage/graphs/connectivity.cpython-311-darwin.so,sha256=2rdQRCB4MvHsjpYwNA4v4uST2KoSoyKBaFJt-26qII4,766768
147
+ sage/graphs/bipartite_graph.py,sha256=GsQhkJMclM0TCT8ifOaPTjweIwA4yX6rcD4yUoLgLXg,105820
148
+ sage/graphs/connectivity.cpython-311-darwin.so,sha256=HaZDRmiQHQsgp5pNFYiRrI24nWGD0egxQ-Z5kXIsPI4,766784
147
149
  sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
148
150
  sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
149
- sage/graphs/independent_sets.cpython-311-darwin.so,sha256=SORfVuUXab05iQJqwTpAtTlyOXoudFz8jploMg1orxQ,146096
151
+ sage/graphs/independent_sets.cpython-311-darwin.so,sha256=W-bf2uWf607oCK2l9qhLn0U2cv1ZQjuxGw492A2O0x0,146096
150
152
  sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
151
153
  sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
152
- sage/graphs/path_enumeration.cpython-311-darwin.so,sha256=m8RrmZveqK2naVPdgAAAukTomX4bUqm0-atp6qhXalE,439528
153
- sage/graphs/centrality.cpython-311-darwin.so,sha256=JH577rUoVMGVgLOXqe-jCX4mcgch6K1KlP0YM1ZeIcI,203568
154
- sage/graphs/line_graph.cpython-311-darwin.so,sha256=mqJfTE8vjojnYErQZDqCrUzPBCc0hw5c7EbHpZfRzs4,221328
154
+ sage/graphs/path_enumeration.cpython-311-darwin.so,sha256=LMV_86Y676D5p1OlSLVyjuT79lzZuNNUvB7DtCHh-2c,439544
155
+ sage/graphs/centrality.cpython-311-darwin.so,sha256=-oDgR6t92Pwo8cAH8eTke_ePcp1kkVpqmslh8IeyciY,220496
156
+ sage/graphs/line_graph.cpython-311-darwin.so,sha256=KCwtY7lRxk0CWPzCVwMs8g34vc3mlG4CuIpoluV3cnE,240000
155
157
  sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
156
158
  sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
157
- sage/graphs/tutte_polynomial.py,sha256=Wcid9JQ5dJFZITAzmJ18YnOskNPxCbzXvBDvgjNE-pA,21811
159
+ sage/graphs/tutte_polynomial.py,sha256=DNn4VjxZ4dogFM4WhWD1C3jLXl_FRSwxjXRbk23Ah2k,21854
158
160
  sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
159
161
  sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
160
- sage/graphs/genus.cpython-311-darwin.so,sha256=FoGnN4IuY4151hDEt578co7Oyfc1ifAVzzxD1Lbke2Y,144272
161
- sage/graphs/graph_plot.py,sha256=EfcwzdjrtsUuEXoyWb6j1CbkJt170ASzCmgkJiFuMfI,70278
162
- sage/graphs/graph_list.py,sha256=XW3g5tAW_zmdMpmEUgXniTeu3GG2i7e-_NgStIRGWdU,12712
162
+ sage/graphs/genus.cpython-311-darwin.so,sha256=a54F38Y2HcEmcvW6Lt6Cjohz1W4dPRGWCNAwND0R6GY,144288
163
+ sage/graphs/graph_plot.py,sha256=4a3j1oUY-TAfNGDJpqONvQKQEFoqDUUN56fJXym80AY,70634
164
+ sage/graphs/graph_list.py,sha256=z7EoLhCRkH5F7acA2r28DzDkLw08xODgOLXl8f6Rf80,14439
163
165
  sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
164
- sage/graphs/digraph.py,sha256=uryks9iuR5KU_XpPV2dk2GHMud2djfX5wbcQKm-dkec,180720
165
- sage/graphs/dot2tex_utils.py,sha256=nCUHldadHC4Jvdx3sOWypkwlRH7Lc3x_xCuJOk_o4jA,3165
166
- sage/graphs/traversals.pyx,sha256=si8EwslGcNTJYevubcuwqxmVgKTV0MhFk3ojDHGZnQw,66058
167
- sage/graphs/path_enumeration.pyx,sha256=5xXf3-5mobCohaddLgVx-jhyZaT7R4cB8lsNyVUb2zU,90410
168
- sage/graphs/isoperimetric_inequalities.pyx,sha256=4pdhidMCuISinpH-4v7yxppuLZ7niRrIr5LjY62bPMc,15689
169
- sage/graphs/graph_generators_pyx.cpython-311-darwin.so,sha256=hHDunCgxlFpA4fJ4-umOXVJ3dSl8shSG8qwbP5gfO2E,98504
170
- sage/graphs/weakly_chordal.pyx,sha256=hgEid9JOeR2WYmMbnVM2_E4DSUHrb5iaN3E6oFFhqs8,19988
171
- sage/graphs/graph_database.py,sha256=IR6SzI3zZXhWrAhWOat_rweckxNYsq108GTL5APxCco,49241
166
+ sage/graphs/digraph.py,sha256=Uj2hmkx-k27D2DyNAAQ-wmKirOIP-0Hyg_8g_CMFLIE,197705
167
+ sage/graphs/dot2tex_utils.py,sha256=lWUucZKdFsTltrGPeqwHhvbdScFEMltjtTU6C4p2x_E,3173
168
+ sage/graphs/traversals.pyx,sha256=UX2ttDY92aCJPXieOB-VD3dYLfR75gxjLmD1JLBO_z0,65959
169
+ sage/graphs/path_enumeration.pyx,sha256=WAQQiHIroIvpSfWdGvHjuC7tPdEiCX5DWxidHveiXUk,90408
170
+ sage/graphs/isoperimetric_inequalities.pyx,sha256=37Xx8CbEFdLANoztQ13JzxZXrf5L1uIjqUYtCyTDOyk,17019
171
+ sage/graphs/graph_generators_pyx.cpython-311-darwin.so,sha256=KcoxGaEg9nQyBFgiGo229QPTLKnwCOz2IurGBdVXE50,107528
172
+ sage/graphs/weakly_chordal.pyx,sha256=quFw1k-AAmJ3BJs7Wm0YSUZgZbPCMsEvgUZ8oqiFoc0,21563
173
+ sage/graphs/graph_database.py,sha256=TxWGmR7ueILurw77Xk3Uz54gsbjZ00H-_jhbDmNf3m8,51558
172
174
  sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
173
- sage/graphs/centrality.pyx,sha256=mJIHu3It0FzZsJ9vhNi5h1sr2_7SHFdPtXmUx6-c-R0,34973
175
+ sage/graphs/centrality.pyx,sha256=jXYVW5ZFRXYkI_Esw8LaPsdVKLhTG4bUZBgUjzGrDGQ,37670
174
176
  sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
175
- sage/graphs/strongly_regular_db.pyx,sha256=FFxau4Zr8YjZp7wboDqJmCWcNOEHwxfizCnOrzicisU,132851
177
+ sage/graphs/strongly_regular_db.pyx,sha256=VNa9LXXy8EV_k9QBFM_T7jKnxAcymeBGa6eaVbek19A,132599
176
178
  sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
177
- sage/graphs/hyperbolicity.cpython-311-darwin.so,sha256=MbU90yQblK-X7NxKMksqLWX_NAtgFyXbsa_nvu0_j_o,278176
178
- sage/graphs/views.cpython-311-darwin.so,sha256=k9za0tb8uK2FMeVpHYbpZndKbefpGJymgu135ksUey4,204000
179
- sage/graphs/comparability.cpython-311-darwin.so,sha256=3TFK4isoHmtCiVj9LhFWvHj9GnOyIqi1whGPKHYPRBg,239024
180
- sage/graphs/cographs.py,sha256=LTajbKp8uk-4NPdnuEUyd181qDXgA4Qb73r7_RNrx8c,15187
181
- sage/graphs/graph_generators.py,sha256=TXNwxiDlyj8bBjkhA_bKhZljkk2k1pC736YYMyla3EA,133965
182
- sage/graphs/genus.pyx,sha256=xlF94KFiTgiaagZmTJu-49-y--qhUUclo9BVbQwEn8s,21694
183
- sage/graphs/generic_graph.py,sha256=AVIWhd10PwauaDHO4Ddv-xW9dZbi1PIhI3dCv8vVRr8,1094325
184
- sage/graphs/orientations.py,sha256=ZMTASPviyKb4t2swDdTajNeGfemG3vbVmU9IwRUmCzU,53818
185
- sage/graphs/comparability.pyx,sha256=k6yGZH9qZbabyaIGPQBGY75Tmsl8EaT-_XyTgPtKPRI,30696
186
- sage/graphs/trees.cpython-311-darwin.so,sha256=Yr0ztSxa4NxWK1H5h_Ii8wOcuhOVBiDrIUTJWyoRDfQ,118064
179
+ sage/graphs/hyperbolicity.cpython-311-darwin.so,sha256=avNEuARoEIluAOvs3zR_EJuxGBS6Ack8csVfJJKMrzk,278176
180
+ sage/graphs/views.cpython-311-darwin.so,sha256=7UHUCjM1u4O3AwjFelUGbsRFNZ4FkUuRuR5VRyavTwc,204000
181
+ sage/graphs/comparability.cpython-311-darwin.so,sha256=yRRQUnZConycrOeIbLhCLbf1hn08eBwUETxJJm8WBVE,259392
182
+ sage/graphs/cographs.py,sha256=e_IBKmczjffdNkQzZmyliRgXS0j7n5wT_dE_pWj74iY,15184
183
+ sage/graphs/graph_generators.py,sha256=Z7-IqimRFQ_HFJepTs_F-f6noWZkBDCUtMcoDHmHfPg,134580
184
+ sage/graphs/genus.pyx,sha256=xzcRPWKAgtVIQfBOLJNXVm-22LPCBiYSyzmjNpE6U_w,21672
185
+ sage/graphs/generic_graph.py,sha256=7ekP4UGQk12jfpCVDfumhFwo9Njuqkot28Zea_L-SOA,1114121
186
+ sage/graphs/orientations.py,sha256=4PBJOH_ybCyF2uqbknU3QtPdiCOMqbMvN-rboqBif_8,53303
187
+ sage/graphs/comparability.pyx,sha256=txNR4i4nVxETeRuITmZSnF41Bcu5Lc3-9p_Y14U5Ai4,32292
188
+ sage/graphs/trees.cpython-311-darwin.so,sha256=BuJ1ZhXk-CNFQpCJVzlSVVFGxEod9OgIephNj2fGcTA,118080
187
189
  sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
188
- sage/graphs/generators/distance_regular.cpython-311-darwin.so,sha256=jz51IjAAZZH5khmJeyFAzGOM0mQDRIPXt1XACfyvnKs,831064
189
- sage/graphs/generators/distance_regular.pyx,sha256=qnYVaHCpc7L4m2Z1pXuEg98tyJ2ED73bNky5_Fk9ASI,96145
190
- sage/graphs/generators/smallgraphs.py,sha256=Kwqzi6iXl36QRVJ8L9-YQcuRjIMlAVhJQpMDdXmwIBY,201988
191
- sage/graphs/generators/families.py,sha256=Ex6zqwclb1OXLs7uzuLaBzrWmiephaD0nwKSR5jYxGY,164644
190
+ sage/graphs/generators/distance_regular.cpython-311-darwin.so,sha256=HYnIGMh2tj02MFwQ0tX07hhMvwYwvomAld0whyXCGgA,831064
191
+ sage/graphs/generators/distance_regular.pyx,sha256=dIO6D98FdTS3pk9ZhdXww-Q7WlmTKthcIgRbpDQXPTc,96145
192
+ sage/graphs/generators/smallgraphs.py,sha256=y441EzXwvSBnJ-qwp4lbZvlS19FfoC8tV4MO4H_HEpA,202063
193
+ sage/graphs/generators/families.py,sha256=mw4nwFZRzNacdA5xHrRjmTvZZvTW2k0rd-NlN4sCYJs,164719
192
194
  sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
193
- sage/graphs/generators/random.py,sha256=Hwnid8-_Hx9N8kA6i9Vpuqlw-l-5cemVqUjo7qSCpVw,92229
195
+ sage/graphs/generators/random.py,sha256=lDQxB_YZ6Gwo-_LrqXx4hXC1H2AsP_Tsa0Q8-p44A-8,92227
194
196
  sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
195
- sage/graphs/generators/basic.py,sha256=aSkIJvPJ_eD5pG-2Uf5jh5qxEv8Tbe7o3vwDLiisSYc,61441
197
+ sage/graphs/generators/basic.py,sha256=0KtJ29r3lQVXVENR2ceX9SZIQOkM-8yNwhWdrTHG1dM,61442
196
198
  sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
197
199
  sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
198
200
  sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
199
201
  sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
200
- sage/graphs/graph_decompositions/cutwidth.cpython-311-darwin.so,sha256=GfkflGSPfLjWGgTB4TQxTQAE_fWMPticwclI0K3rwPk,207072
201
- sage/graphs/graph_decompositions/tree_decomposition.cpython-311-darwin.so,sha256=zfdwHVguxzgR8OnnMznCXAfM9QvmKBblZ0Dfc73tHNI,507888
202
+ sage/graphs/graph_decompositions/cutwidth.cpython-311-darwin.so,sha256=1IcefknT6GPWPDWRYAWylQW7Ni_jH6NKffR_amg39iY,207088
203
+ sage/graphs/graph_decompositions/tree_decomposition.cpython-311-darwin.so,sha256=NzfRksDku8DQiymK7yMzE0NCF2izOm02mmppk8MuNF4,507888
202
204
  sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
203
- sage/graphs/graph_decompositions/vertex_separation.cpython-311-darwin.so,sha256=y-qlgKq6PMZI_sa32C7RYcNqDQpD7NQbiSXBVAhemZk,322000
204
- sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=RwR3geuP8uwPxNlKfHJQHvPsf3_z6DvwQEWyUEf1Df8,7389
205
+ sage/graphs/graph_decompositions/vertex_separation.cpython-311-darwin.so,sha256=laqxDPfoe05b2ntRviGQ_phxqLr9b3q4uuF0K2hdWdA,322000
206
+ sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=02nMqhb4MvzaJFRGSy4ZefAvhChZsMJBlCTaOtOS3Es,7388
205
207
  sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
206
208
  sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
207
- sage/graphs/graph_decompositions/graph_products.cpython-311-darwin.so,sha256=kuMnbdghQjXSihztZcxT3K5Eykx0okYBF38v69jIDjw,206472
208
- sage/graphs/graph_decompositions/slice_decomposition.cpython-311-darwin.so,sha256=9i5QWmrOq3NWImZIOvUNweoPT4hbx7hXWs7L6fYiQ4k,274768
209
- sage/graphs/graph_decompositions/fast_digraph.cpython-311-darwin.so,sha256=YgudxjvEkHyWx3WaR_xYct0rXJULjdYBN0aqKD2uc00,102016
210
- sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=FuuFnQc9XS61ukySrFBLvYfSlvpgTsGz_lMnzIN4-5g,39622
209
+ sage/graphs/graph_decompositions/graph_products.cpython-311-darwin.so,sha256=25xAZRQUTqJrg_KxG7sD2sWn4aAY-VkkHkUVp89PITA,208568
210
+ sage/graphs/graph_decompositions/slice_decomposition.cpython-311-darwin.so,sha256=tWL2bfcYIr96oxJk_AX4IpC2l0pgLV-ZWVaESOiDTN0,291808
211
+ sage/graphs/graph_decompositions/fast_digraph.cpython-311-darwin.so,sha256=Lgvb2sBP4rwyDpASAQ3A8ZofxBZQnb4uZwHG1RFeh2o,102032
212
+ sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=oBp4OVgykHatrhiSLgscsq5B5lUINmCierb3sWpO79w,40359
211
213
  sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
212
- sage/graphs/graph_decompositions/clique_separators.cpython-311-darwin.so,sha256=vj0_syuJr-U9r72fbgylRuRWovpZbF65uy4e1Fe7IDs,242528
214
+ sage/graphs/graph_decompositions/clique_separators.cpython-311-darwin.so,sha256=FvkCGfjhz8wv4VY5nexkXaRja6olGD9-KrCuZ9CnQxE,242912
213
215
  sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
214
216
  sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
215
217
  sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
216
- sage/graphs/graph_decompositions/graph_products.pyx,sha256=XcghL4BzFWPPNmpNIKSC37zzBwNMmmaNqnEAtXnP0hw,17139
217
- sage/graphs/graph_decompositions/clique_separators.pyx,sha256=nZpjLIQYuRND2eu1jvvawGo19_WSFROk8I1NRhHzhCU,22876
218
+ sage/graphs/graph_decompositions/graph_products.pyx,sha256=HcTfcex9hrwlcTzBHWMGDonGEUDGGj8jkma0devn5wU,19014
219
+ sage/graphs/graph_decompositions/clique_separators.pyx,sha256=q2Ep-OTAN0u53tg4USepRiw9uOm61XRbsfMKAkbJouk,23690
218
220
  sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
219
- sage/graphs/graph_decompositions/bandwidth.cpython-311-darwin.so,sha256=0zgKLiBO2sAoDlwdJFzjwPcXyk7qGqrbfqLdelOHVGQ,104368
221
+ sage/graphs/graph_decompositions/bandwidth.cpython-311-darwin.so,sha256=Y5QBpHwNzA-SklmMNq9Bu-sB3wQ80odSy_GZBNLpawU,104368
220
222
  sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
221
- sage/graphs/graph_decompositions/modular_decomposition.cpython-311-darwin.so,sha256=2VrJx-duEyet456RqHYGnkzCmYA6pCAeR0dWskr8tIk,492064
223
+ sage/graphs/graph_decompositions/modular_decomposition.cpython-311-darwin.so,sha256=W3yueICCKTwbcwCqekCKOQU0TZLp-xr7b-ERXf69xLk,492064
222
224
  sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
223
225
  sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
224
- sage/graphs/base/graph_backends.cpython-311-darwin.so,sha256=yjz6YYAN7v7rYZJ0VUJMd3xf2AKedw5HuerUy_jthjE,163296
225
- sage/graphs/base/static_sparse_graph.pyx,sha256=bnMe1AinoGjIsIlsJGeCCRuihiDtZkGQmG4kh41hvqM,49908
226
- sage/graphs/base/boost_graph.pxd,sha256=K3GCaIXjsmhwgTzlSntrHi3IB1t2vJpOzSS7FQGlxEo,3655
227
- sage/graphs/base/c_graph.pyx,sha256=Lr1cxK2A5mtR0EIQmYIljc2OgYgiBeRn5Rw0mC_k0x8,179656
228
- sage/graphs/base/static_sparse_backend.pyx,sha256=Gu5fS7Jq-p2jfNuU-QwV60YsUtyc2jVlZ9h9hWCM9eE,55323
229
- sage/graphs/base/dense_graph.cpython-311-darwin.so,sha256=xaj1F0yAjUx6__E-x0be5Jd6HiuWOAWFT3yes4olIF8,187360
226
+ sage/graphs/base/graph_backends.cpython-311-darwin.so,sha256=am7uGXeaEKgFN7oVnNa4EWTA0U62LvvF4-RXTOpcSXQ,163296
227
+ sage/graphs/base/static_sparse_graph.pyx,sha256=79ckrFBDUnAxrn_VAXOHGtCPQnO3OD0KSczE7xas4ls,52381
228
+ sage/graphs/base/boost_graph.pxd,sha256=5Z4FgnxAaZYXOizWEfsxE1D4K2hJTcdhjXxUFJ9rhA0,3654
229
+ sage/graphs/base/c_graph.pyx,sha256=-3-_WEwS5G_jr3gx3f44fSj5zp_JOfK3po-Nu7IVRa8,179658
230
+ sage/graphs/base/static_sparse_backend.pyx,sha256=eKzp6rY9lZD9dX26QwRFk1ojyLTNPywSdPR6tKbdN4o,55396
231
+ sage/graphs/base/dense_graph.cpython-311-darwin.so,sha256=dpdJG8Qn-Aqk1FEJyh8SqIuzczEQEnNQRvlc7NeBvhU,188896
230
232
  sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
231
- sage/graphs/base/dense_graph.pyx,sha256=HfZU7L2IScsA8_a6VCcs8rM6aWRkYTSz8oRhJWHX5mY,24167
232
- sage/graphs/base/static_sparse_backend.cpython-311-darwin.so,sha256=uPm2nghD6hf1OcaeJi7PxwpzQS-azFy9MdUbaHxcD7I,323264
233
+ sage/graphs/base/dense_graph.pyx,sha256=I68QISSmnBJlaFAX59ByG8ght9rxHYtOLMeI7IvjUJ4,25188
234
+ sage/graphs/base/static_sparse_backend.cpython-311-darwin.so,sha256=L-J1dJonDc_d-RmCzoX9-Z3l5i4_ntE7_NCIlYrE9Ws,323392
233
235
  sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
234
236
  sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
235
237
  sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
236
238
  sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
237
239
  sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
238
- sage/graphs/base/dense_graph.pxd,sha256=VltYtRdTHhfpXG11C-lfMPSlm57dyP4Ot3E3FOzlsjI,1119
240
+ sage/graphs/base/dense_graph.pxd,sha256=fZLGgFg8jy8zIWlhlB18ew5Z8ogZN91NsHPmUkLsqms,1211
239
241
  sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
240
242
  sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
241
243
  sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
242
- sage/graphs/base/static_sparse_graph.cpython-311-darwin.so,sha256=qQvMUButuouBR0tg9ZTxNHiuKnsHzamIihVBkKPh3_w,233472
243
- sage/graphs/base/boost_graph.cpython-311-darwin.so,sha256=8cSM-J7F24aTu3zLEKyijmJ3sOaz4-UjcKgG0pf4AE0,836112
244
+ sage/graphs/base/static_sparse_graph.cpython-311-darwin.so,sha256=IVd_V_LB4oGADQG3rf5zvVtpjtpailY-56pf2Lv26F8,233696
245
+ sage/graphs/base/boost_graph.cpython-311-darwin.so,sha256=1isznluNOUO2ElOvLfDY4qiGvhLSTYHau-aQn5-PXi8,836112
244
246
  sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
245
247
  sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
246
- sage/graphs/base/static_dense_graph.cpython-311-darwin.so,sha256=W5K4Q7HeZJGgGVVameltYATdx2IwuwmttbDLTBelWAk,263296
248
+ sage/graphs/base/static_dense_graph.cpython-311-darwin.so,sha256=KwIj6dyxcEC6a2uaKoTQzK_TOqmCznX2dCDQYkebGQY,263296
247
249
  sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
248
- sage/graphs/base/c_graph.cpython-311-darwin.so,sha256=IDSZuBGvHwdgVoyl5JTMnkbNOpWbBYOg7w2-qr7TyQA,632688
249
- sage/graphs/base/sparse_graph.cpython-311-darwin.so,sha256=D8W_bmQBRwf6VW_nES06x-jFXBKjtWEQM9GHAKYPL3c,230256
250
- sage/knots/link.py,sha256=L6vA6oqMri3ZD5xY8zclLwuqywrzoWbfpVTskcyBtkk,177868
251
- sage/knots/free_knotinfo_monoid.py,sha256=IyaKmc4kQclQoAe9loqp9Cq2Ny7BoQXwjPFn_QYwMoY,19713
252
- sage/knots/knotinfo.py,sha256=ACmrGn9_t6Ff3y5xaTDLO8JJS0_Wkfb2qItWf6Nu9mI,101893
250
+ sage/graphs/base/c_graph.cpython-311-darwin.so,sha256=MpZzGAAERYiLMeKWhBEvNZQMQyvX7-PWwETegALBato,632688
251
+ sage/graphs/base/sparse_graph.cpython-311-darwin.so,sha256=AFeakRGGJeo71CLBb6fKfguRjt1BL6Tz8FqKWVtxliQ,230256
252
+ sage/knots/link.py,sha256=hU_H43oGYkWMDG4D2xJJawdv7RfXbFYcNiFmSpalhho,179401
253
+ sage/knots/free_knotinfo_monoid.py,sha256=lKx7Z_M4yHt0om_fDYlkAzxGCUycD4yFsrrmKhm5xNM,19714
254
+ sage/knots/knotinfo.py,sha256=4Vkm0-gWRrpnDplo5udTUEUBpv2hDLYTyG2qIFC_Wus,102919
253
255
  sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
254
256
  sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
255
257
  sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
@@ -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: