passagemath-graphs 10.5.42__cp313-cp313-musllinux_1_2_aarch64.whl → 10.6.1rc1__cp313-cp313-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/METADATA +83 -14
- {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/RECORD +133 -131
- sage/all__sagemath_graphs.py +5 -0
- sage/combinat/abstract_tree.py +188 -17
- sage/combinat/cluster_algebra_quiver/interact.py +1 -2
- sage/combinat/cluster_algebra_quiver/mutation_type.py +518 -519
- sage/combinat/cluster_algebra_quiver/quiver.py +233 -205
- sage/combinat/designs/covering_design.py +4 -7
- sage/combinat/designs/database.py +11 -10
- sage/combinat/designs/designs_pyx.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/designs/designs_pyx.pyx +2 -2
- sage/combinat/designs/evenly_distributed_sets.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/designs/evenly_distributed_sets.pyx +4 -4
- sage/combinat/designs/gen_quadrangles_with_spread.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/designs/latin_squares.py +53 -20
- sage/combinat/designs/orthogonal_arrays.py +2 -1
- sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/designs/orthogonal_arrays_find_recursive.pyx +22 -21
- sage/combinat/designs/resolvable_bibd.py +191 -157
- sage/combinat/designs/subhypergraph_search.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/designs/subhypergraph_search.pyx +4 -4
- sage/combinat/designs/twographs.py +2 -2
- sage/combinat/finite_state_machine.py +6 -6
- sage/combinat/posets/bubble_shuffle.py +247 -0
- sage/combinat/posets/d_complete.py +3 -3
- sage/combinat/posets/elements.py +3 -3
- sage/combinat/posets/hasse_cython.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/posets/hasse_cython.pyx +1 -1
- sage/combinat/posets/hasse_diagram.py +16 -22
- sage/combinat/posets/hochschild_lattice.py +158 -0
- sage/combinat/posets/incidence_algebras.py +14 -16
- sage/combinat/posets/lattices.py +51 -53
- sage/combinat/posets/linear_extension_iterator.cpython-313-aarch64-linux-musl.so +0 -0
- sage/combinat/posets/linear_extensions.py +10 -12
- sage/combinat/posets/moebius_algebra.py +4 -4
- sage/combinat/posets/poset_examples.py +70 -23
- sage/combinat/posets/posets.py +294 -103
- sage/databases/knotinfo_db.py +2 -1
- sage/graphs/asteroidal_triples.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/asteroidal_triples.pyx +24 -3
- sage/graphs/base/boost_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/boost_graph.pxd +3 -3
- sage/graphs/base/c_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/c_graph.pyx +1 -1
- sage/graphs/base/dense_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/dense_graph.pxd +5 -3
- sage/graphs/base/dense_graph.pyx +44 -0
- sage/graphs/base/graph_backends.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/sparse_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/static_dense_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/static_sparse_backend.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/static_sparse_backend.pyx +8 -5
- sage/graphs/base/static_sparse_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/base/static_sparse_graph.pyx +86 -15
- sage/graphs/bipartite_graph.py +59 -36
- sage/graphs/centrality.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/centrality.pyx +82 -9
- sage/graphs/cographs.py +1 -1
- sage/graphs/comparability.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/comparability.pyx +64 -26
- sage/graphs/connectivity.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/convexity_properties.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/convexity_properties.pyx +52 -9
- sage/graphs/digraph.py +439 -95
- sage/graphs/digraph_generators.py +174 -102
- sage/graphs/distances_all_pairs.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/dot2tex_utils.py +1 -1
- sage/graphs/edge_connectivity.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/generators/basic.py +1 -1
- sage/graphs/generators/distance_regular.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/generators/distance_regular.pyx +1 -1
- sage/graphs/generators/families.py +37 -27
- sage/graphs/generators/random.py +2 -2
- sage/graphs/generators/smallgraphs.py +3 -3
- sage/graphs/generic_graph.py +558 -86
- sage/graphs/generic_graph_pyx.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/generic_graph_pyx.pyx +58 -11
- sage/graphs/genus.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/genus.pyx +3 -4
- sage/graphs/graph.py +291 -8
- sage/graphs/graph_coloring.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_database.py +67 -12
- sage/graphs/graph_decompositions/bandwidth.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/clique_separators.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/clique_separators.pyx +24 -3
- sage/graphs/graph_decompositions/cutwidth.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/fast_digraph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/fast_digraph.pyx +1 -1
- sage/graphs/graph_decompositions/graph_products.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/graph_products.pyx +67 -21
- sage/graphs/graph_decompositions/modular_decomposition.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/slice_decomposition.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/slice_decomposition.pyx +34 -8
- sage/graphs/graph_decompositions/tree_decomposition.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_decompositions/vertex_separation.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_generators.py +45 -32
- sage/graphs/graph_generators_pyx.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/graph_generators_pyx.pyx +15 -15
- sage/graphs/graph_latex.py +1 -1
- sage/graphs/graph_list.py +52 -9
- sage/graphs/graph_plot.py +7 -0
- sage/graphs/hyperbolicity.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/hyperbolicity.pyx +2 -0
- sage/graphs/independent_sets.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/isoperimetric_inequalities.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/isoperimetric_inequalities.pyx +42 -6
- sage/graphs/line_graph.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/line_graph.pyx +153 -37
- sage/graphs/matching_covered_graph.py +84 -60
- sage/graphs/orientations.py +3 -18
- sage/graphs/path_enumeration.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/path_enumeration.pyx +2 -2
- sage/graphs/spanning_tree.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/strongly_regular_db.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/strongly_regular_db.pyx +15 -15
- sage/graphs/traversals.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/traversals.pyx +13 -12
- sage/graphs/trees.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/tutte_polynomial.py +1 -1
- sage/graphs/views.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/weakly_chordal.cpython-313-aarch64-linux-musl.so +0 -0
- sage/graphs/weakly_chordal.pyx +50 -8
- sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-313-aarch64-linux-musl.so +0 -0
- sage/knots/free_knotinfo_monoid.py +3 -3
- sage/knots/knotinfo.py +102 -82
- sage/knots/link.py +72 -39
- sage/topology/cubical_complex.py +4 -5
- sage/topology/delta_complex.py +4 -4
- sage/topology/simplicial_complex.py +0 -1
- sage/topology/simplicial_complex_catalog.py +6 -0
- sage/topology/simplicial_complex_examples.py +4 -16
- {passagemath_graphs-10.5.42.dist-info → passagemath_graphs-10.6.1rc1.dist-info}/WHEEL +0 -0
- {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.
|
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.
|
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
|
35
|
-
Requires-Dist: passagemath-environment
|
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,
|
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.
|
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", `
|
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[
|
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
|
-
|
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]:
|
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,11 +1,11 @@
|
|
1
1
|
passagemath_graphs.libs/libgcc_s-69c45f16.so.1,sha256=BOFjRP57t9LgRNNAnFVK5VHmrp5UU-p5NcfcZ10dnd4,201673
|
2
2
|
passagemath_graphs.libs/libgmp-8e78bd9b.so.10.5.0,sha256=im50qR2w_N41DOhdzO_WChiY-_a2Ite2YarRdCFuysg,666617
|
3
3
|
passagemath_graphs.libs/libstdc++-1f1a71be.so.6.0.33,sha256=sURAhanafc8tH6FGDqPKz7dsPGNb0Aym8vBo6UbJ3Ok,3650097
|
4
|
-
sage/all__sagemath_graphs.py,sha256=
|
5
|
-
sage/combinat/abstract_tree.py,sha256=
|
4
|
+
sage/all__sagemath_graphs.py,sha256=q3QFFFTkeijGtFSjZtlnAko3Mrnr8fK-m5Yghw2VQyM,837
|
5
|
+
sage/combinat/abstract_tree.py,sha256=3KcwC0HaEmFz8O_dR-kvy2xiMp9G64v5SEC4zm7Szqg,94266
|
6
6
|
sage/combinat/all__sagemath_graphs.py,sha256=zAse3aKr_WJaFWDL93rOM8mNuHUvs_hs0gJsoxfbqiQ,1329
|
7
7
|
sage/combinat/binary_tree.py,sha256=BnjdPKrHRxtJrlKmUSHqrDDQ0UvQbm8onuh0IHpSGV0,183189
|
8
|
-
sage/combinat/finite_state_machine.py,sha256=
|
8
|
+
sage/combinat/finite_state_machine.py,sha256=rngcy9hczCxVkhNQvK6ho3A7xosqi9bv1tUJaLJR2gU,574657
|
9
9
|
sage/combinat/finite_state_machine_generators.py,sha256=YqeqpPwWpra88B4GW5IcA2rtbXpbeT9uGxREegTJFdM,73186
|
10
10
|
sage/combinat/graph_path.py,sha256=enqb7IFVXGZ-roxtMJRTaTmCDY3qr_kkjC-03qg0p5s,13122
|
11
11
|
sage/combinat/interval_posets.py,sha256=n1EpZC2XnwvRAPiG-fA5c66krNlO2V-kox9LwgawHu0,147095
|
@@ -17,60 +17,62 @@ sage/combinat/tamari_lattices.py,sha256=1K261Ntyt3uZqkFVVTC_PVyimDFomOeJeEW3UAwq
|
|
17
17
|
sage/combinat/yang_baxter_graph.py,sha256=BGcGaIfAnOzW4g9tCg6uDpKrHHeG-Q5z74TBQa0JYhc,33932
|
18
18
|
sage/combinat/cluster_algebra_quiver/all.py,sha256=Kn96IeqXORbsHL0NSlKT3mKDtcM2biPzgxNrab-BiXY,831
|
19
19
|
sage/combinat/cluster_algebra_quiver/cluster_seed.py,sha256=8WyDGr-i77io5pC5xSCdMP-0ssdWxLZKyKVTN6eMx-Y,197656
|
20
|
-
sage/combinat/cluster_algebra_quiver/interact.py,sha256=
|
20
|
+
sage/combinat/cluster_algebra_quiver/interact.py,sha256=J-Ka38Eb540DIzet6XP_7qdYh1Bfz-xucAA8YL1BLO0,4250
|
21
21
|
sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
|
22
|
-
sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=
|
23
|
-
sage/combinat/cluster_algebra_quiver/quiver.py,sha256=
|
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
24
|
sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py,sha256=24QBRRseafrBvShSJC_ilP7nY6QwDX0U1GkMDxFhoBA,92005
|
25
25
|
sage/combinat/designs/MOLS_handbook_data.py,sha256=SOjglkjrMNtbttoKD5werH6IXSUMwt1Zh_cOLOPSwTU,42437
|
26
26
|
sage/combinat/designs/all.py,sha256=z1avRgBKp3Gu_OhxVMFYtxWoXCBOcFd_t5-C1JcoAkw,2015
|
27
27
|
sage/combinat/designs/bibd.py,sha256=fB_aPra3Cbr4uqef4vLN1sIKJ9yXn-teFGMOzrkRpiw,59071
|
28
28
|
sage/combinat/designs/block_design.py,sha256=PHZG5Q9egUb7PwVnX2MQq6UPATxZPp5zq_VpJzWLAxU,38165
|
29
29
|
sage/combinat/designs/covering_array.py,sha256=SC7dwTzNt4lYJk_FKRUt_EsaOYjFRXMJus2i8NKGP84,9600
|
30
|
-
sage/combinat/designs/covering_design.py,sha256=
|
31
|
-
sage/combinat/designs/database.py,sha256=
|
30
|
+
sage/combinat/designs/covering_design.py,sha256=GhpSmZALYIwSjSx2oEOxxXhLemJCaKTrIGjZS0xj6AI,17297
|
31
|
+
sage/combinat/designs/database.py,sha256=0sfODA8sYjemLejPQNZnQqj_eIgyPuLyTsNWw495w4Q,242955
|
32
32
|
sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
|
33
|
-
sage/combinat/designs/designs_pyx.cpython-313-aarch64-linux-musl.so,sha256=
|
33
|
+
sage/combinat/designs/designs_pyx.cpython-313-aarch64-linux-musl.so,sha256=d0C1-ICQttGExUo4hLEMkS03Lsm9x464yDG1pJtUCj4,1511185
|
34
34
|
sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
|
35
|
-
sage/combinat/designs/designs_pyx.pyx,sha256=
|
35
|
+
sage/combinat/designs/designs_pyx.pyx,sha256=_unJWxusmZVUZ5SPiTtgOCYZmhWTFqptLb3MOz37ND0,37170
|
36
36
|
sage/combinat/designs/difference_family.py,sha256=0fhKdWJVL0uErG5BwLfJKt2cDgF8gHIkudLtF6So1rI,155391
|
37
37
|
sage/combinat/designs/difference_matrices.py,sha256=H1gvPjsH890ASH66zSJj36yiFMIU_C40xYZA609eawE,8610
|
38
|
-
sage/combinat/designs/evenly_distributed_sets.cpython-313-aarch64-linux-musl.so,sha256=
|
39
|
-
sage/combinat/designs/evenly_distributed_sets.pyx,sha256=
|
38
|
+
sage/combinat/designs/evenly_distributed_sets.cpython-313-aarch64-linux-musl.so,sha256=voG497gZd5xrapFz6z-19NYSnPOKFv0EgwGvLkf76P0,806416
|
39
|
+
sage/combinat/designs/evenly_distributed_sets.pyx,sha256=_ExpH2ImCLYhXG4aovPXKHGa8XMKYlILw-r5Iv1Yr5E,25548
|
40
40
|
sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
|
41
|
-
sage/combinat/designs/gen_quadrangles_with_spread.cpython-313-aarch64-linux-musl.so,sha256=
|
41
|
+
sage/combinat/designs/gen_quadrangles_with_spread.cpython-313-aarch64-linux-musl.so,sha256=lfWwAybKLHzd8wDXANRcJ5y97Rk8W7akSeYCAq2KZU8,785152
|
42
42
|
sage/combinat/designs/gen_quadrangles_with_spread.pyx,sha256=oE049xlfXkX_ly-WpQZnPw2cNXYDueHeuRJ69bfTbkQ,10767
|
43
43
|
sage/combinat/designs/group_divisible_designs.py,sha256=U8YLCTUbbsdmWH8aiKqxWHv3AFNHqmCh1eoVFELIch4,13037
|
44
44
|
sage/combinat/designs/incidence_structures.py,sha256=-a1Ub9q_91055qr-Ns3CuQduJvVmVqja2tBbMRu0u4Q,89619
|
45
|
-
sage/combinat/designs/latin_squares.py,sha256=
|
46
|
-
sage/combinat/designs/orthogonal_arrays.py,sha256=
|
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
47
|
sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
|
48
|
-
sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-313-aarch64-linux-musl.so,sha256=
|
49
|
-
sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=
|
50
|
-
sage/combinat/designs/resolvable_bibd.py,sha256=
|
48
|
+
sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-313-aarch64-linux-musl.so,sha256=1FAgQ3i8_kwxxpMEvaNqH2t0cP7uEQQgqvhAnR0FbEw,1061616
|
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
51
|
sage/combinat/designs/steiner_quadruple_systems.py,sha256=-vnODm9iybM9_x36oDOFMZyu_kMaMTZWYbzcWAvaG0E,68601
|
52
|
-
sage/combinat/designs/subhypergraph_search.cpython-313-aarch64-linux-musl.so,sha256=
|
53
|
-
sage/combinat/designs/subhypergraph_search.pyx,sha256=
|
54
|
-
sage/combinat/designs/twographs.py,sha256=
|
52
|
+
sage/combinat/designs/subhypergraph_search.cpython-313-aarch64-linux-musl.so,sha256=Vb5BLriA4zocnzMUyKU3KOSQwVOp9YoJzZQxmlwFUW8,606504
|
53
|
+
sage/combinat/designs/subhypergraph_search.pyx,sha256=EfLrVGZNDSiVgeGNohlO09f0wdqPh6XwQHCrHNgqmng,18146
|
54
|
+
sage/combinat/designs/twographs.py,sha256=gUba7-nivoQpPrPgHMD7UshhY9Q7do9GXylLb_U_xC8,11230
|
55
55
|
sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
|
56
|
+
sage/combinat/posets/bubble_shuffle.py,sha256=6EutFGs0dMvjN7f51WAefYRLBRLc1enZ-N2Offx74M0,7485
|
56
57
|
sage/combinat/posets/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
|
57
|
-
sage/combinat/posets/d_complete.py,sha256=
|
58
|
-
sage/combinat/posets/elements.py,sha256=
|
58
|
+
sage/combinat/posets/d_complete.py,sha256=3k1llRG7zIgKmvy-gJ6_A2liDvjTiC04OX_vOdmzoUU,6611
|
59
|
+
sage/combinat/posets/elements.py,sha256=IgixRtTMTRKz3nGJGcYtBwucK22b3I5xy84ephRjpVE,7982
|
59
60
|
sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
|
60
|
-
sage/combinat/posets/hasse_cython.cpython-313-aarch64-linux-musl.so,sha256=
|
61
|
-
sage/combinat/posets/hasse_cython.pyx,sha256=
|
62
|
-
sage/combinat/posets/hasse_diagram.py,sha256=
|
63
|
-
sage/combinat/posets/
|
64
|
-
sage/combinat/posets/
|
65
|
-
sage/combinat/posets/
|
61
|
+
sage/combinat/posets/hasse_cython.cpython-313-aarch64-linux-musl.so,sha256=wLMaOzA9aYAdHLsQecC-2tfYc3BI1XYQpbBA-TXVQLQ,726312
|
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-313-aarch64-linux-musl.so,sha256=JHqbzvLUyTiRKUo5jGsoCW548q0ci9hBb4dSMjq0Gzw,711000
|
66
68
|
sage/combinat/posets/linear_extension_iterator.pyx,sha256=1DVxfIsMvtsPGjOi3SUjWtVKFKXQfnk_UXKtmsTpQl4,9272
|
67
|
-
sage/combinat/posets/linear_extensions.py,sha256=
|
69
|
+
sage/combinat/posets/linear_extensions.py,sha256=qFivvSYmOOyUdYj_uLyPMvtIP8i5Nl9MpFKsFaSuiTA,41635
|
68
70
|
sage/combinat/posets/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
|
69
|
-
sage/combinat/posets/moebius_algebra.py,sha256=
|
70
|
-
sage/combinat/posets/poset_examples.py,sha256=
|
71
|
-
sage/combinat/posets/posets.py,sha256=
|
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
|
72
74
|
sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
73
|
-
sage/databases/knotinfo_db.py,sha256=
|
75
|
+
sage/databases/knotinfo_db.py,sha256=ijt1goKI2Z_Yst6XTbmH9511cWKZWSd3HlGMO69ugqQ,54189
|
74
76
|
sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
75
77
|
sage/ext_data/graphs/graph_plot_js.html,sha256=OmGUTusnlNQgxC3rb2q_1FR8flYvLT6DNfY0zjY_0_0,9811
|
76
78
|
sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
|
@@ -79,172 +81,172 @@ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,6
|
|
79
81
|
sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
|
80
82
|
sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
|
81
83
|
sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
|
82
|
-
sage/graphs/asteroidal_triples.cpython-313-aarch64-linux-musl.so,sha256=
|
83
|
-
sage/graphs/asteroidal_triples.pyx,sha256=
|
84
|
-
sage/graphs/bipartite_graph.py,sha256=
|
85
|
-
sage/graphs/centrality.cpython-313-aarch64-linux-musl.so,sha256=
|
86
|
-
sage/graphs/centrality.pyx,sha256=
|
87
|
-
sage/graphs/cographs.py,sha256=
|
88
|
-
sage/graphs/comparability.cpython-313-aarch64-linux-musl.so,sha256=
|
89
|
-
sage/graphs/comparability.pyx,sha256=
|
90
|
-
sage/graphs/connectivity.cpython-313-aarch64-linux-musl.so,sha256=
|
84
|
+
sage/graphs/asteroidal_triples.cpython-313-aarch64-linux-musl.so,sha256=054amyLrRx_WOg1xZL92Wqr8Nqb4gSym_fcSIWjI-Tw,461705
|
85
|
+
sage/graphs/asteroidal_triples.pyx,sha256=kslBS2OY3d7F0k54vb4nvb1pKH4UfvXv0AssHf9U61Y,11269
|
86
|
+
sage/graphs/bipartite_graph.py,sha256=GsQhkJMclM0TCT8ifOaPTjweIwA4yX6rcD4yUoLgLXg,105820
|
87
|
+
sage/graphs/centrality.cpython-313-aarch64-linux-musl.so,sha256=JAH0KOrTz6kyrsvzsl_qjMYGz5-sUZuENZYRlqqccoc,1117713
|
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-313-aarch64-linux-musl.so,sha256=4ZLp8m1Vlp0dd2pE_RmbP-rCXHRmzxH1ob-2vLj8n5U,1445393
|
91
|
+
sage/graphs/comparability.pyx,sha256=txNR4i4nVxETeRuITmZSnF41Bcu5Lc3-9p_Y14U5Ai4,32292
|
92
|
+
sage/graphs/connectivity.cpython-313-aarch64-linux-musl.so,sha256=u-Rbxm8PMJXXgP9Lf4_FdFJ9Ml13SPGMiI1O0LdY_c4,4955672
|
91
93
|
sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
|
92
94
|
sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
|
93
|
-
sage/graphs/convexity_properties.cpython-313-aarch64-linux-musl.so,sha256=
|
95
|
+
sage/graphs/convexity_properties.cpython-313-aarch64-linux-musl.so,sha256=6oTY3C7s-i62h3FOvZVWkWQIzDu275zt6kceR5oznlk,855745
|
94
96
|
sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
|
95
|
-
sage/graphs/convexity_properties.pyx,sha256=
|
96
|
-
sage/graphs/digraph.py,sha256=
|
97
|
-
sage/graphs/digraph_generators.py,sha256=
|
98
|
-
sage/graphs/distances_all_pairs.cpython-313-aarch64-linux-musl.so,sha256=
|
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-313-aarch64-linux-musl.so,sha256=tNNayV3EMtQ9-DbFXhiwUIFT1SrGSNOhvQwOWgRvFME,1707721
|
99
101
|
sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
|
100
102
|
sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
|
101
103
|
sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
|
102
|
-
sage/graphs/dot2tex_utils.py,sha256=
|
103
|
-
sage/graphs/edge_connectivity.cpython-313-aarch64-linux-musl.so,sha256=
|
104
|
+
sage/graphs/dot2tex_utils.py,sha256=lWUucZKdFsTltrGPeqwHhvbdScFEMltjtTU6C4p2x_E,3173
|
105
|
+
sage/graphs/edge_connectivity.cpython-313-aarch64-linux-musl.so,sha256=KseZOxGqHno3xQYagUSSiVbHIVgO4jn3s037dq1YOfI,1056713
|
104
106
|
sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
|
105
|
-
sage/graphs/generic_graph.py,sha256=
|
106
|
-
sage/graphs/generic_graph_pyx.cpython-313-aarch64-linux-musl.so,sha256=
|
107
|
+
sage/graphs/generic_graph.py,sha256=7ekP4UGQk12jfpCVDfumhFwo9Njuqkot28Zea_L-SOA,1114121
|
108
|
+
sage/graphs/generic_graph_pyx.cpython-313-aarch64-linux-musl.so,sha256=yhaJXJOa1rCMxDPz3A_DGVM1jmAPbcZH9wfO6x4voHk,1773785
|
107
109
|
sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
|
108
|
-
sage/graphs/generic_graph_pyx.pyx,sha256=
|
109
|
-
sage/graphs/genus.cpython-313-aarch64-linux-musl.so,sha256=
|
110
|
-
sage/graphs/genus.pyx,sha256=
|
111
|
-
sage/graphs/graph.py,sha256=
|
112
|
-
sage/graphs/graph_coloring.cpython-313-aarch64-linux-musl.so,sha256=
|
110
|
+
sage/graphs/generic_graph_pyx.pyx,sha256=i5gISutTP3P_Fc5LInP-fDJX_U1nFRocdXOt114lmIU,60287
|
111
|
+
sage/graphs/genus.cpython-313-aarch64-linux-musl.so,sha256=prBDZYlm1H8MCHBt7VhFih8381VA4APWy-WNEAaptfo,536336
|
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-313-aarch64-linux-musl.so,sha256=d7KIdeCJ-AGzGqY9kM9DqKD7oQtJMTBvYQbVThUJoEk,4919697
|
113
115
|
sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
|
114
|
-
sage/graphs/graph_database.py,sha256=
|
116
|
+
sage/graphs/graph_database.py,sha256=TxWGmR7ueILurw77Xk3Uz54gsbjZ00H-_jhbDmNf3m8,51558
|
115
117
|
sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
|
116
|
-
sage/graphs/graph_generators.py,sha256=
|
117
|
-
sage/graphs/graph_generators_pyx.cpython-313-aarch64-linux-musl.so,sha256
|
118
|
-
sage/graphs/graph_generators_pyx.pyx,sha256
|
118
|
+
sage/graphs/graph_generators.py,sha256=Z7-IqimRFQ_HFJepTs_F-f6noWZkBDCUtMcoDHmHfPg,134580
|
119
|
+
sage/graphs/graph_generators_pyx.cpython-313-aarch64-linux-musl.so,sha256=-maTjxVeeAm5jeXvePiPN4KK0I8Ksi1zmvTdfEuaeSo,484872
|
120
|
+
sage/graphs/graph_generators_pyx.pyx,sha256=-TP5O6mDg7clGrKcDLUzcFsLYuw8VGGhPvLV56I9wBA,3214
|
119
121
|
sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
|
120
|
-
sage/graphs/graph_latex.py,sha256=
|
121
|
-
sage/graphs/graph_list.py,sha256=
|
122
|
-
sage/graphs/graph_plot.py,sha256=
|
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
|
123
125
|
sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
|
124
|
-
sage/graphs/hyperbolicity.cpython-313-aarch64-linux-musl.so,sha256=
|
125
|
-
sage/graphs/hyperbolicity.pyx,sha256=
|
126
|
+
sage/graphs/hyperbolicity.cpython-313-aarch64-linux-musl.so,sha256=r6uUJ-hcxfLwivj6qgVxwP9K2V175iiH-WD7RjTouns,1511217
|
127
|
+
sage/graphs/hyperbolicity.pyx,sha256=qzLZkEAC2zDrksEfqL2wqFHcTWzDsQpGxWWH5Gnke_o,64503
|
126
128
|
sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
|
127
|
-
sage/graphs/independent_sets.cpython-313-aarch64-linux-musl.so,sha256=
|
129
|
+
sage/graphs/independent_sets.cpython-313-aarch64-linux-musl.so,sha256=B5krllyfmShkCDFAQnru_EggQJh7JCCQdN3LLkZqUJs,658985
|
128
130
|
sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
|
129
131
|
sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
|
130
132
|
sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
|
131
|
-
sage/graphs/isoperimetric_inequalities.cpython-313-aarch64-linux-musl.so,sha256=
|
132
|
-
sage/graphs/isoperimetric_inequalities.pyx,sha256=
|
133
|
-
sage/graphs/line_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
134
|
-
sage/graphs/line_graph.pyx,sha256=
|
133
|
+
sage/graphs/isoperimetric_inequalities.cpython-313-aarch64-linux-musl.so,sha256=CTaFAnDZaFEuUJf3rWqK0KbjzlBYw-0LlgZ9n8tVZwg,658377
|
134
|
+
sage/graphs/isoperimetric_inequalities.pyx,sha256=37Xx8CbEFdLANoztQ13JzxZXrf5L1uIjqUYtCyTDOyk,17019
|
135
|
+
sage/graphs/line_graph.cpython-313-aarch64-linux-musl.so,sha256=typTKDykFasWJW-S6wSzLzVmhTHhUDpfoHc2BjKF35Y,1246136
|
136
|
+
sage/graphs/line_graph.pyx,sha256=p_qn8oH7NCwPlmDBD01HO24Gfhsbtfclzng-RJcRHqM,27749
|
135
137
|
sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
|
136
138
|
sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
|
137
|
-
sage/graphs/matching_covered_graph.py,sha256=
|
138
|
-
sage/graphs/orientations.py,sha256=
|
139
|
+
sage/graphs/matching_covered_graph.py,sha256=_6K6V7RTu-bfAqsbR9l_2qsKZqZ6JFWO9MsC7b0jG4g,144211
|
140
|
+
sage/graphs/orientations.py,sha256=4PBJOH_ybCyF2uqbknU3QtPdiCOMqbMvN-rboqBif_8,53303
|
139
141
|
sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
|
140
|
-
sage/graphs/path_enumeration.cpython-313-aarch64-linux-musl.so,sha256=
|
141
|
-
sage/graphs/path_enumeration.pyx,sha256=
|
142
|
+
sage/graphs/path_enumeration.cpython-313-aarch64-linux-musl.so,sha256=1V4fJwDqSo75Y8rFh7OIsRU49e75edXDFl2iFWowFEA,2953209
|
143
|
+
sage/graphs/path_enumeration.pyx,sha256=WAQQiHIroIvpSfWdGvHjuC7tPdEiCX5DWxidHveiXUk,90408
|
142
144
|
sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
|
143
145
|
sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
|
144
146
|
sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
|
145
|
-
sage/graphs/spanning_tree.cpython-313-aarch64-linux-musl.so,sha256=
|
147
|
+
sage/graphs/spanning_tree.cpython-313-aarch64-linux-musl.so,sha256=Fe8-_w-uQvjJhMqfFJITsO4BDiDKgNS_HKSleNX7cqQ,1908896
|
146
148
|
sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
|
147
|
-
sage/graphs/strongly_regular_db.cpython-313-aarch64-linux-musl.so,sha256=
|
148
|
-
sage/graphs/strongly_regular_db.pyx,sha256=
|
149
|
-
sage/graphs/traversals.cpython-313-aarch64-linux-musl.so,sha256=
|
149
|
+
sage/graphs/strongly_regular_db.cpython-313-aarch64-linux-musl.so,sha256=SJTxgrim69hxLil_fM02f2nTVoPHWDZi6GHGcDhwYBc,6765960
|
150
|
+
sage/graphs/strongly_regular_db.pyx,sha256=VNa9LXXy8EV_k9QBFM_T7jKnxAcymeBGa6eaVbek19A,132599
|
151
|
+
sage/graphs/traversals.cpython-313-aarch64-linux-musl.so,sha256=RDlWy1DOT4Gm1GgW3HDmoFzi7fOw9ueMsrBUUXhpjAU,1708393
|
150
152
|
sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
|
151
|
-
sage/graphs/traversals.pyx,sha256=
|
152
|
-
sage/graphs/trees.cpython-313-aarch64-linux-musl.so,sha256=
|
153
|
+
sage/graphs/traversals.pyx,sha256=UX2ttDY92aCJPXieOB-VD3dYLfR75gxjLmD1JLBO_z0,65959
|
154
|
+
sage/graphs/trees.cpython-313-aarch64-linux-musl.so,sha256=8UIvTyD1-dsmJxAXqfAdfqD_OfHDk5tX0sDdB_h3FOQ,239592
|
153
155
|
sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
|
154
156
|
sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
|
155
|
-
sage/graphs/tutte_polynomial.py,sha256=
|
156
|
-
sage/graphs/views.cpython-313-aarch64-linux-musl.so,sha256=
|
157
|
+
sage/graphs/tutte_polynomial.py,sha256=DNn4VjxZ4dogFM4WhWD1C3jLXl_FRSwxjXRbk23Ah2k,21854
|
158
|
+
sage/graphs/views.cpython-313-aarch64-linux-musl.so,sha256=HswjhxybhqiPczuBZSVSW9LAdTMB44ly6xI80MFbpUk,754520
|
157
159
|
sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
|
158
|
-
sage/graphs/weakly_chordal.cpython-313-aarch64-linux-musl.so,sha256=
|
159
|
-
sage/graphs/weakly_chordal.pyx,sha256=
|
160
|
+
sage/graphs/weakly_chordal.cpython-313-aarch64-linux-musl.so,sha256=tw_SJr7OIC06yiGbU5jAL0eoMlAqaxov5t4f1u-FLxQ,769704
|
161
|
+
sage/graphs/weakly_chordal.pyx,sha256=quFw1k-AAmJ3BJs7Wm0YSUZgZbPCMsEvgUZ8oqiFoc0,21563
|
160
162
|
sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
161
|
-
sage/graphs/base/boost_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
162
|
-
sage/graphs/base/boost_graph.pxd,sha256=
|
163
|
+
sage/graphs/base/boost_graph.cpython-313-aarch64-linux-musl.so,sha256=2-AKmmEfbfmDgI9fkFfLjcsHf8sDWgJoMwGt9hBG_II,12813969
|
164
|
+
sage/graphs/base/boost_graph.pxd,sha256=5Z4FgnxAaZYXOizWEfsxE1D4K2hJTcdhjXxUFJ9rhA0,3654
|
163
165
|
sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
|
164
|
-
sage/graphs/base/c_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
166
|
+
sage/graphs/base/c_graph.cpython-313-aarch64-linux-musl.so,sha256=SusWSUInk8h1t2aywheQqSf9D4bQz3nzh5TJbTloP38,3808105
|
165
167
|
sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
|
166
|
-
sage/graphs/base/c_graph.pyx,sha256
|
167
|
-
sage/graphs/base/dense_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
168
|
-
sage/graphs/base/dense_graph.pxd,sha256=
|
169
|
-
sage/graphs/base/dense_graph.pyx,sha256=
|
170
|
-
sage/graphs/base/graph_backends.cpython-313-aarch64-linux-musl.so,sha256=
|
168
|
+
sage/graphs/base/c_graph.pyx,sha256=-3-_WEwS5G_jr3gx3f44fSj5zp_JOfK3po-Nu7IVRa8,179658
|
169
|
+
sage/graphs/base/dense_graph.cpython-313-aarch64-linux-musl.so,sha256=KzsepE-OYGJ9S4fm7uQJbZkcL1VsQO2slDy4yZZVQzI,855409
|
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-313-aarch64-linux-musl.so,sha256=iN5aVG3i-fPXIBVLpAjNDHrDpjrrGgtwJxv3w5UDmLk,721080
|
171
173
|
sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
|
172
174
|
sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
|
173
175
|
sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
|
174
|
-
sage/graphs/base/sparse_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
176
|
+
sage/graphs/base/sparse_graph.cpython-313-aarch64-linux-musl.so,sha256=kpOB5zHaOnqLuglpxtPozcYZrR9pWgSijz18ypUcF5s,1183473
|
175
177
|
sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
|
176
178
|
sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
|
177
|
-
sage/graphs/base/static_dense_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
179
|
+
sage/graphs/base/static_dense_graph.cpython-313-aarch64-linux-musl.so,sha256=36A0X0fos9XAY4S-SGDOaDFIVcgC1dRVmflE3xeXiio,1445609
|
178
180
|
sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
|
179
181
|
sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
|
180
|
-
sage/graphs/base/static_sparse_backend.cpython-313-aarch64-linux-musl.so,sha256=
|
182
|
+
sage/graphs/base/static_sparse_backend.cpython-313-aarch64-linux-musl.so,sha256=UCH-l-NUgAA34z8e2-VfAPe4hZvdOKnHpOI3VzRw3Y0,1531032
|
181
183
|
sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
|
182
|
-
sage/graphs/base/static_sparse_backend.pyx,sha256=
|
183
|
-
sage/graphs/base/static_sparse_graph.cpython-313-aarch64-linux-musl.so,sha256=
|
184
|
+
sage/graphs/base/static_sparse_backend.pyx,sha256=eKzp6rY9lZD9dX26QwRFk1ojyLTNPywSdPR6tKbdN4o,55396
|
185
|
+
sage/graphs/base/static_sparse_graph.cpython-313-aarch64-linux-musl.so,sha256=BPDzBESd7tt66LWZCD-LZc9yTr1Dg1rtVQ4DhAiLOgU,1118393
|
184
186
|
sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
|
185
|
-
sage/graphs/base/static_sparse_graph.pyx,sha256=
|
187
|
+
sage/graphs/base/static_sparse_graph.pyx,sha256=79ckrFBDUnAxrn_VAXOHGtCPQnO3OD0KSczE7xas4ls,52381
|
186
188
|
sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
187
|
-
sage/graphs/generators/basic.py,sha256=
|
189
|
+
sage/graphs/generators/basic.py,sha256=0KtJ29r3lQVXVENR2ceX9SZIQOkM-8yNwhWdrTHG1dM,61442
|
188
190
|
sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
|
189
191
|
sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
|
190
192
|
sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
|
191
|
-
sage/graphs/generators/distance_regular.cpython-313-aarch64-linux-musl.so,sha256
|
192
|
-
sage/graphs/generators/distance_regular.pyx,sha256=
|
193
|
-
sage/graphs/generators/families.py,sha256=
|
193
|
+
sage/graphs/generators/distance_regular.cpython-313-aarch64-linux-musl.so,sha256=biNC2YC24FpZFTxGUViw27nkqc4zPNg3VVN79qB_WW4,5738184
|
194
|
+
sage/graphs/generators/distance_regular.pyx,sha256=dIO6D98FdTS3pk9ZhdXww-Q7WlmTKthcIgRbpDQXPTc,96145
|
195
|
+
sage/graphs/generators/families.py,sha256=mw4nwFZRzNacdA5xHrRjmTvZZvTW2k0rd-NlN4sCYJs,164719
|
194
196
|
sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
|
195
197
|
sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
|
196
|
-
sage/graphs/generators/random.py,sha256=
|
197
|
-
sage/graphs/generators/smallgraphs.py,sha256=
|
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
|
198
200
|
sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
|
199
201
|
sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
200
|
-
sage/graphs/graph_decompositions/bandwidth.cpython-313-aarch64-linux-musl.so,sha256=
|
202
|
+
sage/graphs/graph_decompositions/bandwidth.cpython-313-aarch64-linux-musl.so,sha256=Ez3uLGrF9_ViZXg_Xm6aUcxnpfiqoNREHvfkSarFMm4,441312
|
201
203
|
sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
|
202
|
-
sage/graphs/graph_decompositions/clique_separators.cpython-313-aarch64-linux-musl.so,sha256=
|
203
|
-
sage/graphs/graph_decompositions/clique_separators.pyx,sha256=
|
204
|
-
sage/graphs/graph_decompositions/cutwidth.cpython-313-aarch64-linux-musl.so,sha256=
|
204
|
+
sage/graphs/graph_decompositions/clique_separators.cpython-313-aarch64-linux-musl.so,sha256=Hz5Kjpla3FGawqOwVskNqePJL6GZdrWOgd0y7ep64hE,1183945
|
205
|
+
sage/graphs/graph_decompositions/clique_separators.pyx,sha256=q2Ep-OTAN0u53tg4USepRiw9uOm61XRbsfMKAkbJouk,23690
|
206
|
+
sage/graphs/graph_decompositions/cutwidth.cpython-313-aarch64-linux-musl.so,sha256=wF5Thz8ONvoyotG_6UV_D83VKDBtKOJ7ot5PW5wps-U,1048280
|
205
207
|
sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
|
206
|
-
sage/graphs/graph_decompositions/fast_digraph.cpython-313-aarch64-linux-musl.so,sha256=
|
208
|
+
sage/graphs/graph_decompositions/fast_digraph.cpython-313-aarch64-linux-musl.so,sha256=0QAbremtWQ2G64XEWiBp01r6PFsyYHs4ClSUHMSZ7X4,321296
|
207
209
|
sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
|
208
|
-
sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=
|
209
|
-
sage/graphs/graph_decompositions/graph_products.cpython-313-aarch64-linux-musl.so,sha256=
|
210
|
-
sage/graphs/graph_decompositions/graph_products.pyx,sha256=
|
211
|
-
sage/graphs/graph_decompositions/modular_decomposition.cpython-313-aarch64-linux-musl.so,sha256=
|
210
|
+
sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=02nMqhb4MvzaJFRGSy4ZefAvhChZsMJBlCTaOtOS3Es,7388
|
211
|
+
sage/graphs/graph_decompositions/graph_products.cpython-313-aarch64-linux-musl.so,sha256=lPrbhQgfIg8bekYo7Ej4w_DB6zHlpxaQh87Y2pYnvPE,1036792
|
212
|
+
sage/graphs/graph_decompositions/graph_products.pyx,sha256=HcTfcex9hrwlcTzBHWMGDonGEUDGGj8jkma0devn5wU,19014
|
213
|
+
sage/graphs/graph_decompositions/modular_decomposition.cpython-313-aarch64-linux-musl.so,sha256=b4BdgpRNy5bxnZEWEyZtwqvKseP867cWa4M7IHEMBkQ,3808337
|
212
214
|
sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
|
213
215
|
sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
|
214
|
-
sage/graphs/graph_decompositions/slice_decomposition.cpython-313-aarch64-linux-musl.so,sha256=
|
216
|
+
sage/graphs/graph_decompositions/slice_decomposition.cpython-313-aarch64-linux-musl.so,sha256=Rm8uuU43UL6IXF4LklYIIiOjceVudQzo6ziu07bf2Q4,1583177
|
215
217
|
sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
|
216
|
-
sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=
|
217
|
-
sage/graphs/graph_decompositions/tree_decomposition.cpython-313-aarch64-linux-musl.so,sha256=
|
218
|
+
sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=oBp4OVgykHatrhiSLgscsq5B5lUINmCierb3sWpO79w,40359
|
219
|
+
sage/graphs/graph_decompositions/tree_decomposition.cpython-313-aarch64-linux-musl.so,sha256=L9F1wvrhEQTAsBRgrI-wKd3zSm12zsMz03_8yGSdY_A,2965808
|
218
220
|
sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
|
219
221
|
sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
|
220
|
-
sage/graphs/graph_decompositions/vertex_separation.cpython-313-aarch64-linux-musl.so,sha256=
|
222
|
+
sage/graphs/graph_decompositions/vertex_separation.cpython-313-aarch64-linux-musl.so,sha256=OO4RZN8aechMPTc4AvfJpppI0baT37NZfx0WKlsOUGc,1773441
|
221
223
|
sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
|
222
224
|
sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
|
223
225
|
sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
224
226
|
sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
225
227
|
sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
226
|
-
sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-313-aarch64-linux-musl.so,sha256=
|
228
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-313-aarch64-linux-musl.so,sha256=YNyZPOHGBEVhVGh089Fc5TYqt-od_e7_w2MC9tSiZSM,1773041
|
227
229
|
sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
|
228
230
|
sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
|
229
231
|
sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
|
230
|
-
sage/knots/free_knotinfo_monoid.py,sha256=
|
232
|
+
sage/knots/free_knotinfo_monoid.py,sha256=lKx7Z_M4yHt0om_fDYlkAzxGCUycD4yFsrrmKhm5xNM,19714
|
231
233
|
sage/knots/gauss_code.py,sha256=XPReZ4_t4FUiV6Nza_8MaCQ-05CuOffdMmk2ckm98jc,8978
|
232
234
|
sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
|
233
235
|
sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
|
234
|
-
sage/knots/knotinfo.py,sha256=
|
235
|
-
sage/knots/link.py,sha256=
|
236
|
+
sage/knots/knotinfo.py,sha256=4Vkm0-gWRrpnDplo5udTUEUBpv2hDLYTyG2qIFC_Wus,102919
|
237
|
+
sage/knots/link.py,sha256=hU_H43oGYkWMDG4D2xJJawdv7RfXbFYcNiFmSpalhho,179401
|
236
238
|
sage/sandpiles/all.py,sha256=GxDiTE98htXEil5sR7gdVNgIh8eCu6q1IyxjHPOLyx8,565
|
237
239
|
sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,5595
|
238
240
|
sage/sandpiles/sandpile.py,sha256=yeO4-dNtmYd5LQV86K5XyMkxYVK3w_rnvBudZNTzTpg,211694
|
239
241
|
sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
|
240
242
|
sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
|
241
|
-
sage/topology/cubical_complex.py,sha256=
|
242
|
-
sage/topology/delta_complex.py,sha256=
|
243
|
+
sage/topology/cubical_complex.py,sha256=xceZuOdl1u4ztlp1tJF2tQX58nSSIH5ylelYpZVBECs,70973
|
244
|
+
sage/topology/delta_complex.py,sha256=qyIID-0j35XBclNbaM1jEdQQwjtf7kwaOVgbofaFL0E,74587
|
243
245
|
sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
|
244
246
|
sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
|
245
|
-
sage/topology/simplicial_complex.py,sha256=
|
246
|
-
sage/topology/simplicial_complex_catalog.py,sha256=
|
247
|
-
sage/topology/simplicial_complex_examples.py,sha256=
|
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
|
248
250
|
sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
|
249
251
|
sage/topology/simplicial_complex_morphism.py,sha256=JZc3bVCAwibwccMzL0XdIi8imVTlnkDvd0R-nFBHHCQ,32596
|
250
252
|
sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz95c,152633
|
@@ -252,7 +254,7 @@ sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wm
|
|
252
254
|
sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
|
253
255
|
sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
|
254
256
|
sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
|
255
|
-
passagemath_graphs-10.
|
256
|
-
passagemath_graphs-10.
|
257
|
-
passagemath_graphs-10.
|
258
|
-
passagemath_graphs-10.
|
257
|
+
passagemath_graphs-10.6.1rc1.dist-info/METADATA,sha256=xqtJqsZzfEgzOD7JFwL3qldHqzSyBOM3DQWQAVFAZOU,13978
|
258
|
+
passagemath_graphs-10.6.1rc1.dist-info/WHEEL,sha256=3IjWZRuuq2q-vKtU0x2XxSbfx92VUEmTDWR0AUEtZxI,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,,
|
sage/all__sagemath_graphs.py
CHANGED
@@ -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:
|