passagemath-graphs 10.5.10__cp39-cp39-macosx_14_0_arm64.whl → 10.5.43__cp39-cp39-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.
- {passagemath_graphs-10.5.10.dist-info → passagemath_graphs-10.5.43.dist-info}/METADATA +126 -30
- passagemath_graphs-10.5.43.dist-info/RECORD +256 -0
- {passagemath_graphs-10.5.10.dist-info → passagemath_graphs-10.5.43.dist-info}/WHEEL +2 -1
- passagemath_graphs.dylibs/libgmp.10.dylib +0 -0
- sage/all__sagemath_graphs.py +5 -0
- sage/combinat/abstract_tree.py +1 -1
- sage/combinat/binary_tree.py +1 -1
- sage/combinat/cluster_algebra_quiver/all.py +1 -1
- sage/combinat/cluster_algebra_quiver/cluster_seed.py +28 -24
- sage/combinat/cluster_algebra_quiver/interact.py +4 -0
- sage/combinat/designs/MOLS_handbook_data.py +5 -5
- sage/combinat/designs/bibd.py +10 -9
- sage/combinat/designs/covering_array.py +3 -3
- sage/combinat/designs/covering_design.py +2 -1
- sage/combinat/designs/database.py +11 -10
- sage/combinat/designs/designs_pyx.cpython-39-darwin.so +0 -0
- sage/combinat/designs/designs_pyx.pyx +13 -45
- sage/combinat/designs/difference_family.py +6 -6
- sage/combinat/designs/difference_matrices.py +1 -1
- sage/combinat/designs/evenly_distributed_sets.cpython-39-darwin.so +0 -0
- sage/combinat/designs/evenly_distributed_sets.pyx +15 -22
- sage/combinat/designs/ext_rep.py +9 -14
- sage/combinat/designs/gen_quadrangles_with_spread.cpython-39-darwin.so +0 -0
- sage/combinat/designs/gen_quadrangles_with_spread.pyx +1 -1
- sage/combinat/designs/group_divisible_designs.py +1 -1
- sage/combinat/designs/incidence_structures.py +8 -8
- sage/combinat/designs/latin_squares.py +1 -1
- sage/combinat/designs/orthogonal_arrays_build_recursive.py +8 -7
- sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-39-darwin.so +0 -0
- sage/combinat/designs/resolvable_bibd.py +1 -1
- sage/combinat/designs/steiner_quadruple_systems.py +1 -1
- sage/combinat/designs/subhypergraph_search.cpython-39-darwin.so +0 -0
- sage/combinat/designs/subhypergraph_search.pyx +9 -9
- sage/combinat/finite_state_machine_generators.py +2 -2
- sage/combinat/graph_path.py +3 -3
- sage/combinat/interval_posets.py +10 -10
- sage/combinat/ordered_tree.py +1 -1
- sage/combinat/posets/cartesian_product.py +1 -1
- sage/combinat/posets/d_complete.py +1 -1
- sage/combinat/posets/forest.py +1 -1
- sage/combinat/posets/hasse_cython.cpython-39-darwin.so +0 -0
- sage/combinat/posets/hasse_diagram.py +8 -6
- sage/combinat/posets/incidence_algebras.py +8 -8
- sage/combinat/posets/lattices.py +28 -4
- sage/combinat/posets/linear_extension_iterator.cpython-39-darwin.so +0 -0
- sage/combinat/posets/linear_extension_iterator.pyx +2 -0
- sage/combinat/posets/linear_extensions.py +7 -16
- sage/combinat/posets/moebius_algebra.py +1 -1
- sage/combinat/posets/poset_examples.py +1 -1
- sage/combinat/posets/posets.py +54 -56
- sage/combinat/rooted_tree.py +3 -3
- sage/combinat/tamari_lattices.py +1 -1
- sage/ext_data/kenzo/CP2.txt +45 -0
- sage/ext_data/kenzo/CP3.txt +349 -0
- sage/ext_data/kenzo/CP4.txt +4774 -0
- sage/ext_data/kenzo/README.txt +49 -0
- sage/ext_data/kenzo/S4.txt +20 -0
- sage/graphs/asteroidal_triples.cpython-39-darwin.so +0 -0
- sage/graphs/base/boost_graph.cpython-39-darwin.so +0 -0
- sage/graphs/base/boost_graph.pxd +1 -1
- sage/graphs/base/boost_graph.pyx +1 -1
- sage/graphs/base/c_graph.cpython-39-darwin.so +0 -0
- sage/graphs/base/c_graph.pxd +4 -4
- sage/graphs/base/c_graph.pyx +270 -184
- sage/graphs/base/dense_graph.cpython-39-darwin.so +0 -0
- sage/graphs/base/graph_backends.cpython-39-darwin.so +0 -0
- sage/graphs/base/sparse_graph.cpython-39-darwin.so +0 -0
- sage/graphs/base/static_dense_graph.cpython-39-darwin.so +0 -0
- sage/graphs/base/static_sparse_backend.cpython-39-darwin.so +0 -0
- sage/graphs/base/static_sparse_backend.pyx +93 -6
- sage/graphs/base/static_sparse_graph.cpython-39-darwin.so +0 -0
- sage/graphs/base/static_sparse_graph.pyx +1 -1
- sage/graphs/bipartite_graph.py +0 -1
- sage/graphs/centrality.cpython-39-darwin.so +0 -0
- sage/graphs/centrality.pyx +0 -0
- sage/graphs/comparability.cpython-39-darwin.so +0 -0
- sage/graphs/comparability.pyx +172 -138
- sage/graphs/connectivity.cpython-39-darwin.so +0 -0
- sage/graphs/connectivity.pyx +194 -18
- sage/graphs/convexity_properties.cpython-39-darwin.so +0 -0
- sage/graphs/digraph_generators.py +118 -74
- sage/graphs/distances_all_pairs.cpython-39-darwin.so +0 -0
- sage/graphs/distances_all_pairs.pyx +145 -27
- sage/graphs/edge_connectivity.cpython-39-darwin.so +0 -0
- sage/graphs/generators/basic.py +471 -130
- sage/graphs/generators/distance_regular.cpython-39-darwin.so +0 -0
- sage/graphs/generators/distance_regular.pyx +12 -12
- sage/graphs/generators/families.py +2 -2
- sage/graphs/generators/random.py +8 -13
- sage/graphs/generators/smallgraphs.py +12 -11
- sage/graphs/generic_graph.py +687 -265
- sage/graphs/generic_graph_pyx.cpython-39-darwin.so +0 -0
- sage/graphs/genus.cpython-39-darwin.so +0 -0
- sage/graphs/graph.py +12 -46
- sage/graphs/graph_coloring.cpython-39-darwin.so +0 -0
- sage/graphs/graph_database.py +1 -1
- sage/graphs/graph_decompositions/bandwidth.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/clique_separators.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/cutwidth.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/fast_digraph.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/graph_products.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/modular_decomposition.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/slice_decomposition.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/tree_decomposition.cpython-39-darwin.so +0 -0
- sage/graphs/graph_decompositions/vertex_separation.cpython-39-darwin.so +0 -0
- sage/graphs/graph_generators.py +110 -55
- sage/graphs/graph_generators_pyx.cpython-39-darwin.so +0 -0
- sage/graphs/graph_latex.py +1 -1
- sage/graphs/graph_list.py +2 -3
- sage/graphs/graph_plot.py +225 -30
- sage/graphs/hyperbolicity.cpython-39-darwin.so +0 -0
- sage/graphs/independent_sets.cpython-39-darwin.so +0 -0
- sage/graphs/isgci.py +3 -8
- sage/graphs/isoperimetric_inequalities.cpython-39-darwin.so +0 -0
- sage/graphs/line_graph.cpython-39-darwin.so +0 -0
- sage/graphs/matching.py +14 -25
- sage/graphs/matching_covered_graph.py +871 -60
- sage/graphs/orientations.py +190 -134
- sage/graphs/path_enumeration.cpython-39-darwin.so +0 -0
- sage/graphs/path_enumeration.pyx +25 -25
- sage/graphs/spanning_tree.cpython-39-darwin.so +0 -0
- sage/graphs/strongly_regular_db.cpython-39-darwin.so +0 -0
- sage/graphs/strongly_regular_db.pyx +54 -52
- sage/graphs/traversals.cpython-39-darwin.so +0 -0
- sage/graphs/traversals.pyx +114 -46
- sage/graphs/trees.cpython-39-darwin.so +0 -0
- sage/graphs/views.cpython-39-darwin.so +0 -0
- sage/graphs/weakly_chordal.cpython-39-darwin.so +0 -0
- sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-39-darwin.so +0 -0
- sage/knots/free_knotinfo_monoid.py +2 -3
- sage/knots/knot.py +1 -1
- sage/knots/knotinfo.py +4 -4
- sage/knots/link.py +58 -57
- sage/sandpiles/sandpile.py +2 -3
- sage/topology/cell_complex.py +1 -1
- sage/topology/cubical_complex.py +7 -7
- sage/topology/delta_complex.py +4 -4
- sage/topology/simplicial_complex.py +7 -22
- passagemath_graphs-10.5.10.dist-info/RECORD +0 -251
- {passagemath_graphs-10.5.10.dist-info → passagemath_graphs-10.5.43.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: passagemath-graphs
|
3
|
-
Version: 10.5.
|
3
|
+
Version: 10.5.43
|
4
4
|
Summary: passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
7
|
-
License:
|
7
|
+
License-Expression: GPL-2.0-or-later
|
8
8
|
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
9
9
|
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
10
10
|
Project-URL: repo, https://github.com/passagemath/passagemath
|
@@ -16,7 +16,6 @@ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
|
|
16
16
|
Classifier: Development Status :: 6 - Mature
|
17
17
|
Classifier: Intended Audience :: Education
|
18
18
|
Classifier: Intended Audience :: Science/Research
|
19
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
20
19
|
Classifier: Operating System :: POSIX
|
21
20
|
Classifier: Operating System :: MacOS :: MacOS X
|
22
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
@@ -24,14 +23,16 @@ Classifier: Programming Language :: Python :: 3.9
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.10
|
25
24
|
Classifier: Programming Language :: Python :: 3.11
|
26
25
|
Classifier: Programming Language :: Python :: 3.12
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
27
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
28
28
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
29
|
-
Requires-Python: <3.
|
29
|
+
Requires-Python: <3.14,>=3.9
|
30
30
|
Description-Content-Type: text/x-rst
|
31
31
|
Requires-Dist: gmpy2~=2.1.b999
|
32
|
-
Requires-Dist: cysignals
|
32
|
+
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
33
33
|
Requires-Dist: memory_allocator
|
34
|
-
Requires-Dist: passagemath-categories~=10.5.
|
34
|
+
Requires-Dist: passagemath-categories~=10.5.43.0
|
35
|
+
Requires-Dist: passagemath-environment~=10.5.43.0
|
35
36
|
Provides-Extra: test
|
36
37
|
Requires-Dist: passagemath-repl; extra == "test"
|
37
38
|
Provides-Extra: benzene
|
@@ -42,6 +43,8 @@ Provides-Extra: buckygen
|
|
42
43
|
Requires-Dist: passagemath-buckygen; extra == "buckygen"
|
43
44
|
Provides-Extra: cliquer
|
44
45
|
Requires-Dist: passagemath-cliquer; extra == "cliquer"
|
46
|
+
Provides-Extra: cmr
|
47
|
+
Requires-Dist: passagemath-cmr; extra == "cmr"
|
45
48
|
Provides-Extra: gap
|
46
49
|
Requires-Dist: passagemath-gap; extra == "gap"
|
47
50
|
Provides-Extra: igraph
|
@@ -68,6 +71,9 @@ Provides-Extra: combinat
|
|
68
71
|
Requires-Dist: passagemath-combinat; extra == "combinat"
|
69
72
|
Provides-Extra: editor
|
70
73
|
Requires-Dist: phitigra>=0.2.6; extra == "editor"
|
74
|
+
Provides-Extra: groups
|
75
|
+
Requires-Dist: passagemath-groups; extra == "groups"
|
76
|
+
Requires-Dist: passagemath-graphs[nauty]; extra == "groups"
|
71
77
|
Provides-Extra: homology
|
72
78
|
Requires-Dist: passagemath-modules; extra == "homology"
|
73
79
|
Provides-Extra: mip
|
@@ -83,33 +89,59 @@ Requires-Dist: passagemath-repl; extra == "repl"
|
|
83
89
|
Provides-Extra: sat
|
84
90
|
Requires-Dist: passagemath-combinat; extra == "sat"
|
85
91
|
Provides-Extra: standard
|
86
|
-
Requires-Dist: passagemath-graphs[combinat,databases,mip,modules,planarity,
|
92
|
+
Requires-Dist: passagemath-graphs[combinat,databases,groups,mip,modules,planarity,polyhedra,rankwidth,repl]; extra == "standard"
|
93
|
+
Requires-Dist: passagemath-plot[tachyon]; extra == "standard"
|
87
94
|
|
88
95
|
=======================================================================================================================================================
|
89
96
|
passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
|
90
97
|
=======================================================================================================================================================
|
91
98
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
99
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
100
|
+
source mathematical software in Python, released under the GNU General
|
101
|
+
Public Licence GPLv2+.
|
102
|
+
|
103
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
104
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
105
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
106
|
+
|
107
|
+
The passagemath fork was created in October 2024 with the following
|
108
|
+
goals:
|
109
|
+
|
110
|
+
- providing modularized installation with pip, thus completing a `major
|
111
|
+
project started in 2020 in the Sage
|
112
|
+
codebase <https://github.com/sagemath/sage/issues/29705>`__,
|
113
|
+
- establishing first-class membership in the scientific Python
|
114
|
+
ecosystem,
|
115
|
+
- giving `clear attribution of upstream
|
116
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
117
|
+
- providing independently usable Python interfaces to upstream
|
118
|
+
libraries,
|
119
|
+
- providing `platform portability and integration testing
|
120
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
121
|
+
to upstream projects,
|
122
|
+
- inviting collaborations with upstream projects,
|
123
|
+
- `building a professional, respectful, inclusive
|
124
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
125
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
126
|
+
serverless deployment with Javascript,
|
127
|
+
- developing a native Windows port.
|
128
|
+
|
129
|
+
`Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
|
130
|
+
available online.
|
131
|
+
|
132
|
+
passagemath attempts to support all major Linux distributions and recent versions of
|
133
|
+
macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
|
134
|
+
virtualization.
|
135
|
+
|
136
|
+
Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
|
137
|
+
Python 3.13.x is also supported, but some third-party packages are still missing wheels,
|
138
|
+
so compilation from source is triggered for those.
|
107
139
|
|
108
140
|
|
109
141
|
About this pip-installable distribution package
|
110
142
|
-----------------------------------------------
|
111
143
|
|
112
|
-
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", `
|
144
|
+
This pip-installable package `passagemath-graphs` is a distribution of a part of the Sage Library. It provides a small subset of the modules of the Sage library ("sagelib", `passagemath-standard`) for computations with graphs, posets, complexes, etc.
|
113
145
|
|
114
146
|
It consists of over 170 first-party Python and Cython modules and uses the `Boost Graph Library <https://github.com/boostorg/graph>`_, with additional functionality from `NetworkX <https://networkx.github.io/>`_ and several other libraries.
|
115
147
|
|
@@ -156,32 +188,96 @@ A quick way to try it out interactively::
|
|
156
188
|
Available as extras, from other distributions
|
157
189
|
---------------------------------------------
|
158
190
|
|
191
|
+
Libraries
|
192
|
+
~~~~~~~~~
|
193
|
+
|
194
|
+
``pip install passagemath-graphs[benzene,buckygen,plantri]`` additionally make
|
195
|
+
various graph generators available via `passagemath-benzene <https://pypi.org/project/passagemath-benzene/>`_, `passagemath-buckygen <https://pypi.org/project/passagemath-buckygen/>`_, and `passagemath-plantri <https://pypi.org/project/passagemath-plantri/>`_.
|
196
|
+
|
197
|
+
``pip install passagemath-graphs[bliss]`` additionally installs `passagemath-bliss <https://pypi.org/project/passagemath-bliss/>`_ for the purpose
|
198
|
+
of computing graph (iso/auto)morphisms.
|
199
|
+
|
200
|
+
``pip install passagemath-graphs[cliquer]`` additionally installs `passagemath-cliquer <https://pypi.org/project/passagemath-cliquer/>`_
|
201
|
+
|
202
|
+
``pip install passagemath-graphs[cmr]`` additionally installs `passagemath-cmr <https://pypi.org/project/passagemath-cmr/>`_ for recognition and decomposition algorithms
|
203
|
+
for network matrices, totally unimodular matrices and regular matroids, series-parallel matroids, etc.
|
204
|
+
|
205
|
+
``pip install passagemath-graphs[gap]`` additionally installs `passagemath-gap <https://pypi.org/project/passagemath-gap/>`_ for group-theoretic functionality.
|
206
|
+
|
207
|
+
``pip install passagemath-graphs[igraph]`` additionally installs
|
208
|
+
`igraph <https://python.igraph.org/en/stable/>`_::
|
209
|
+
|
210
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[igraph,test]" ipython
|
211
|
+
In [1]: from sage.all__sagemath_graphs import *
|
212
|
+
|
213
|
+
In [2]: ## Example depending on igraph goes here
|
214
|
+
|
215
|
+
``pip install passagemath-graphs[mcqd]`` additionally installs `passagemath-mcqd <https://pypi.org/project/passagemath-mcqd/>`_
|
216
|
+
|
217
|
+
``pip install passagemath-graphs[nauty]`` additionally installs `passagemath-nauty <https://pypi.org/project/passagemath-nauty/>`_ for computing
|
218
|
+
automorphism groups of graphs and digraphs.
|
219
|
+
|
159
220
|
``pip install passagemath-graphs[networkx]`` additionally installs
|
160
|
-
`NetworkX <https://networkx.github.io
|
221
|
+
`NetworkX <https://networkx.github.io>`__::
|
161
222
|
|
162
223
|
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[networkx,test]" ipython
|
163
224
|
In [1]: from sage.all__sagemath_graphs import *
|
164
225
|
|
165
226
|
In [2]: ## Example depending on networkx goes here
|
166
227
|
|
228
|
+
``pip install passagemath-graphs[pari]`` additionally installs `passagemath-pari <https://pypi.org/project/passagemath-pari/>`_
|
167
229
|
|
168
|
-
``pip install passagemath-graphs[
|
169
|
-
`igraph <https://python.igraph.org/en/stable/>`::
|
230
|
+
``pip install passagemath-graphs[planarity]`` additionally installs `passagemath-planarity <https://pypi.org/project/passagemath-planarity/>`_ for planarity testing.
|
170
231
|
|
171
|
-
|
232
|
+
``pip install passagemath-graphs[rankwidth]`` additionally installs `passagemath-rankwidth <https://pypi.org/project/passagemath-rankwidth/>`_ for rank width and rank decompositions.
|
233
|
+
|
234
|
+
``pip install passagemath-graphs[tdlib]`` additionally installs `passagemath-tdlib <https://pypi.org/project/passagemath-tdlib/>`_ for computing tree decompositions.
|
235
|
+
|
236
|
+
|
237
|
+
Features
|
238
|
+
~~~~~~~~
|
239
|
+
|
240
|
+
``pip install passagemath-graphs[combinat]`` additionally installs `passagemath-combinat <https://pypi.org/project/passagemath-combinat/>`_
|
241
|
+
|
242
|
+
``pip install passagemath-graphs[editor]`` additionally installs the interactive graph editor `phitigra <https://pypi.org/project/phitigra/>`_.
|
243
|
+
|
244
|
+
``pip install passagemath-graphs[groups]`` additionally makes group-theoretic features
|
245
|
+
available via `passagemath-gap <https://pypi.org/project/passagemath-gap/>`_, `passagemath-groups <https://pypi.org/project/passagemath-groups/>`_, and `passagemath-nauty <https://pypi.org/project/passagemath-nauty/>`_::
|
246
|
+
|
247
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[groups,test]" ipython
|
172
248
|
In [1]: from sage.all__sagemath_graphs import *
|
173
249
|
|
174
|
-
In [2]:
|
250
|
+
In [2]: g = Graph({
|
251
|
+
0: [1, 2],
|
252
|
+
1: [0, 2],
|
253
|
+
2: [0, 1, 3],
|
254
|
+
3: [2]
|
255
|
+
})
|
256
|
+
|
257
|
+
In [3]: aut = g.automorphism_group()
|
258
|
+
|
259
|
+
In [4]: print(aut.order())
|
175
260
|
|
261
|
+
``pip install passagemath-graphs[homology]`` provides homological computations for abstract complexes via `passagemath-modules <https://pypi.org/project/passagemath-modules/>`_.
|
176
262
|
|
177
263
|
``pip install passagemath-graphs[mip]`` additionally makes the mixed-integer programming
|
178
|
-
solver GLPK available
|
264
|
+
solver GLPK available via `passagemath-glpk <https://pypi.org/project/passagemath-glpk/>`_ and `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra/>`_ (see there for other available solvers).::
|
179
265
|
|
180
266
|
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[mip,test]" ipython
|
181
267
|
In [1]: from sage.all__sagemath_graphs import *
|
182
268
|
|
183
269
|
In [2]: ## Example depending on MIP goes here
|
184
270
|
|
271
|
+
``pip install passagemath-graphs[modules]`` additionally makes linear algebra features available via `passagemath-modules <https://pypi.org/project/passagemath-modules/>`_.
|
272
|
+
|
273
|
+
``pip install passagemath-graphs[plot]`` additionally installs `passagemath-plot <https://pypi.org/project/passagemath-plot/>`_.
|
274
|
+
|
275
|
+
``pip install passagemath-graphs[polyhedra]`` additionally installs `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra/>`_.
|
276
|
+
|
277
|
+
``pip install passagemath-graphs[sat]`` additionally provides SAT features via `passagemath-combinat <https://pypi.org/project/passagemath-combinat/>`_.
|
278
|
+
|
279
|
+
``pip install passagemath-graphs[standard]`` installs all libraries and features related to graphs that
|
280
|
+
are available in a standard installation of Sage.
|
185
281
|
|
186
282
|
|
187
283
|
Development
|
@@ -0,0 +1,256 @@
|
|
1
|
+
passagemath_graphs-10.5.43.dist-info/RECORD,,
|
2
|
+
passagemath_graphs-10.5.43.dist-info/WHEEL,sha256=DhkyuvaF_ECzC6tOpvYO14C_ylOEhcIxq8q81VPjNdw,134
|
3
|
+
passagemath_graphs-10.5.43.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
|
4
|
+
passagemath_graphs-10.5.43.dist-info/METADATA,sha256=gVMFPM2vtlhzB42_c0VHDoUJbISz2ijTNyynxtlAvOA,14024
|
5
|
+
passagemath_graphs.dylibs/libgmp.10.dylib,sha256=9Zh0g_D30IVg20eXzyK6Q7tW_EozvBqH314SGDdKZRk,464688
|
6
|
+
sage/all__sagemath_graphs.py,sha256=q3QFFFTkeijGtFSjZtlnAko3Mrnr8fK-m5Yghw2VQyM,837
|
7
|
+
sage/topology/simplicial_complex_catalog.py,sha256=JGHpK2P6JilXIbnSIanraJTST2SQaHSqBWg8ZAlqhFU,4396
|
8
|
+
sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
|
9
|
+
sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
|
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
|
14
|
+
sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
|
15
|
+
sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
|
16
|
+
sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
|
17
|
+
sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz95c,152633
|
18
|
+
sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wmpYDzlumod0,2172
|
19
|
+
sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
|
20
|
+
sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
|
21
|
+
sage/topology/simplicial_complex.py,sha256=5rPDy-11TzNggeM-QKDYt21KAGAzmcMULNAnkNgu5WE,196306
|
22
|
+
sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
|
23
|
+
sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
24
|
+
sage/databases/knotinfo_db.py,sha256=EafNspIultVKdtZrwtzYySTGxPun0oTXN_zFCwagYQE,54188
|
25
|
+
sage/combinat/graph_path.py,sha256=enqb7IFVXGZ-roxtMJRTaTmCDY3qr_kkjC-03qg0p5s,13122
|
26
|
+
sage/combinat/shard_order.py,sha256=hULsSgJS39xMwEe8UrNCkoTZii41V-cROxE0PAvsE8k,8060
|
27
|
+
sage/combinat/binary_tree.py,sha256=BnjdPKrHRxtJrlKmUSHqrDDQ0UvQbm8onuh0IHpSGV0,183189
|
28
|
+
sage/combinat/abstract_tree.py,sha256=mE_VtaSWztO_BJHthsJNhvD3mCTf2wVfHQr-3--169k,88714
|
29
|
+
sage/combinat/nu_tamari_lattice.py,sha256=DIZ3Y-hyxvATa_NZDJKv3mzlUcjKVSS7N_drsJ9LDzY,9457
|
30
|
+
sage/combinat/ordered_tree.py,sha256=Q08B55_8JZPxiymIAh5bbhiepvWtjj3T96owcR0mLfw,47856
|
31
|
+
sage/combinat/finite_state_machine.py,sha256=nOn9HzDZljzaNaTY_x4eL39HkM_2TbRreqXvk3X_XsI,574609
|
32
|
+
sage/combinat/finite_state_machine_generators.py,sha256=YqeqpPwWpra88B4GW5IcA2rtbXpbeT9uGxREegTJFdM,73186
|
33
|
+
sage/combinat/all__sagemath_graphs.py,sha256=zAse3aKr_WJaFWDL93rOM8mNuHUvs_hs0gJsoxfbqiQ,1329
|
34
|
+
sage/combinat/yang_baxter_graph.py,sha256=BGcGaIfAnOzW4g9tCg6uDpKrHHeG-Q5z74TBQa0JYhc,33932
|
35
|
+
sage/combinat/interval_posets.py,sha256=n1EpZC2XnwvRAPiG-fA5c66krNlO2V-kox9LwgawHu0,147095
|
36
|
+
sage/combinat/rooted_tree.py,sha256=HwZ6OlSwROTXZoZsgPEd4Hz9VqYPMsZYXdrO-PbcT4s,34211
|
37
|
+
sage/combinat/tamari_lattices.py,sha256=1K261Ntyt3uZqkFVVTC_PVyimDFomOeJeEW3UAwqpQc,11061
|
38
|
+
sage/combinat/designs/covering_array.py,sha256=SC7dwTzNt4lYJk_FKRUt_EsaOYjFRXMJus2i8NKGP84,9600
|
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
|
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-39-darwin.so,sha256=7ZDvXHHpEU-TVedGqHedeiN0eGqwMpBSBrJZw8oyqK4,125080
|
45
|
+
sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
|
46
|
+
sage/combinat/designs/MOLS_handbook_data.py,sha256=SOjglkjrMNtbttoKD5werH6IXSUMwt1Zh_cOLOPSwTU,42437
|
47
|
+
sage/combinat/designs/subhypergraph_search.pyx,sha256=HLopGk2XtAZXaMHWSrAhhBdJC87szaeaNrcKpvSAFvA,18125
|
48
|
+
sage/combinat/designs/evenly_distributed_sets.cpython-39-darwin.so,sha256=bqjvfZ0Bg0PezQdu2cKEVMaqucTIJWzXx06Aa3qV_QM,205632
|
49
|
+
sage/combinat/designs/block_design.py,sha256=PHZG5Q9egUb7PwVnX2MQq6UPATxZPp5zq_VpJzWLAxU,38165
|
50
|
+
sage/combinat/designs/database.py,sha256=3zky0T2enXCAIFXfsHUlB1z2JsGbIuNpC8HFEHltgT0,242946
|
51
|
+
sage/combinat/designs/gen_quadrangles_with_spread.cpython-39-darwin.so,sha256=Q0s0Fost9i3GADMhB3-uF3F4dMqxYLQoDiDjLaLwv5s,144752
|
52
|
+
sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
|
53
|
+
sage/combinat/designs/group_divisible_designs.py,sha256=U8YLCTUbbsdmWH8aiKqxWHv3AFNHqmCh1eoVFELIch4,13037
|
54
|
+
sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
|
55
|
+
sage/combinat/designs/all.py,sha256=z1avRgBKp3Gu_OhxVMFYtxWoXCBOcFd_t5-C1JcoAkw,2015
|
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
|
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
|
61
|
+
sage/combinat/designs/incidence_structures.py,sha256=-a1Ub9q_91055qr-Ns3CuQduJvVmVqja2tBbMRu0u4Q,89619
|
62
|
+
sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=IIiOkj4T2ibHoUefBPxWxAN7n0gtzWQd6Cbii2ullbM,34298
|
63
|
+
sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
|
64
|
+
sage/combinat/designs/covering_design.py,sha256=ysOReKTgxyYD5EVwNqd3iWESWM8oLJ5gQLRmQJrSa1A,17380
|
65
|
+
sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-39-darwin.so,sha256=CjsGJ8QFqr6Gc1OX1XW3WiOq8zEbnioZSg12_DeMzyo,210736
|
66
|
+
sage/combinat/designs/difference_family.py,sha256=0fhKdWJVL0uErG5BwLfJKt2cDgF8gHIkudLtF6So1rI,155391
|
67
|
+
sage/combinat/designs/designs_pyx.cpython-39-darwin.so,sha256=LmGLvv2ufZf3u2dHSC5sUAOhk7pJyORcsaa5SAi3niM,261840
|
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
|
70
|
+
sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
|
71
|
+
sage/combinat/cluster_algebra_quiver/all.py,sha256=Kn96IeqXORbsHL0NSlKT3mKDtcM2biPzgxNrab-BiXY,831
|
72
|
+
sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py,sha256=24QBRRseafrBvShSJC_ilP7nY6QwDX0U1GkMDxFhoBA,92005
|
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
|
80
|
+
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/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
|
83
|
+
sage/combinat/posets/linear_extensions.py,sha256=hpABWmpo5kXMxKUY3A2R4JmrtyiYONe3M3oaS_VA2qM,41598
|
84
|
+
sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
|
85
|
+
sage/combinat/posets/linear_extension_iterator.cpython-39-darwin.so,sha256=eTGKRsI5nekpVw01DM1i8NwTb1ikfQRubyYfpqAxrcM,146704
|
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/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
|
89
|
+
sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
|
90
|
+
sage/combinat/posets/hasse_cython.cpython-39-darwin.so,sha256=QjRJvRH6dnuRxQenDI17zmKJnFnLF0BLaeQxPG6y4wE,150016
|
91
|
+
sage/combinat/posets/d_complete.py,sha256=ZkqWd-FTQMFppkXv8si4Ku4ZWmwydVeWWazv17JI1H0,6621
|
92
|
+
sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
93
|
+
sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
|
94
|
+
sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
|
95
|
+
sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
|
96
|
+
sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
|
97
|
+
sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
|
98
|
+
sage/ext_data/graphs/graph_plot_js.html,sha256=OmGUTusnlNQgxC3rb2q_1FR8flYvLT6DNfY0zjY_0_0,9811
|
99
|
+
sage/sandpiles/sandpile.py,sha256=yeO4-dNtmYd5LQV86K5XyMkxYVK3w_rnvBudZNTzTpg,211694
|
100
|
+
sage/sandpiles/all.py,sha256=GxDiTE98htXEil5sR7gdVNgIh8eCu6q1IyxjHPOLyx8,565
|
101
|
+
sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,5595
|
102
|
+
sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
103
|
+
sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
104
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-39-darwin.so,sha256=HeO1lt44Q3keZWKl8e46sl8ABkZqBEtufDVO0AoHgk8,309408
|
105
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
|
106
|
+
sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
107
|
+
sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
|
108
|
+
sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
|
109
|
+
sage/graphs/digraph_generators.py,sha256=QcVOE4jpqe8QxbEk79fFr33Mc0zZuIjJadkKTJG_-Bc,75899
|
110
|
+
sage/graphs/centrality.cpython-39-darwin.so,sha256=v4D8ntyY7L8f4p0jLXvqisNTK1x6ArgLBSA2vHmiGlk,203232
|
111
|
+
sage/graphs/asteroidal_triples.pyx,sha256=8y4J9SN8HNXQIBRQjXPAmeSfkqJ1KaHmOe-NV5_3dpI,10431
|
112
|
+
sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
|
113
|
+
sage/graphs/graph_latex.py,sha256=58UNam13b4n9QVvdrMWGniZMrs-QnVXbmdpMPnA-Afg,99128
|
114
|
+
sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
|
115
|
+
sage/graphs/graph_generators_pyx.cpython-39-darwin.so,sha256=9cIXqyQRx8-8w2b-gIH5q0JYigl7HdnKzYMiOwKQGAQ,98456
|
116
|
+
sage/graphs/matching_covered_graph.py,sha256=B_-x9cutL3AIMGaKIayFyMyIUIB6JjZSDY3fy9OB-kc,143004
|
117
|
+
sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
|
118
|
+
sage/graphs/asteroidal_triples.cpython-39-darwin.so,sha256=GRIlQipNW7vpeYe7slp1E7-GSD5YkVEkytSZnwcWC4Q,123248
|
119
|
+
sage/graphs/generic_graph_pyx.cpython-39-darwin.so,sha256=5iFARMEl4_YhOVkufCKx-xJqgOhLcOAkqCfyN9qpcQM,320528
|
120
|
+
sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
|
121
|
+
sage/graphs/spanning_tree.cpython-39-darwin.so,sha256=ywMBlA3u1ALuVZ9ZaRj_JyCeEj__sj--a5BkkTfqqqE,352032
|
122
|
+
sage/graphs/edge_connectivity.cpython-39-darwin.so,sha256=s4eAKXAApphYLnjGhT0JxVBNoQ_4idceIkRyYs31lvI,200464
|
123
|
+
sage/graphs/traversals.cpython-39-darwin.so,sha256=RoCDOHfxvWKjVG0kNBNcEEm4gbkoof6hfXo6i3nsZGQ,326000
|
124
|
+
sage/graphs/genus.cpython-39-darwin.so,sha256=eN7iFd9XiPa1JbpuXxTHfZNMQh0KP2TcziYhfyuZFT0,144368
|
125
|
+
sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
|
126
|
+
sage/graphs/graph_coloring.cpython-39-darwin.so,sha256=qRCczRx8WvWXkWv9bhyacwqQCeeLPclqDl-KAe5CR4A,713776
|
127
|
+
sage/graphs/generic_graph_pyx.pyx,sha256=T1QiJGKc1tcKSrMEFJM6-cTLko5ffC0kw2GH3Ml2qOs,58405
|
128
|
+
sage/graphs/line_graph.pyx,sha256=fg92Q-gxnzRMjPmID7IztliBYP7n8JL0HhpK0CTCLio,22272
|
129
|
+
sage/graphs/hyperbolicity.pyx,sha256=Xij4iR3b0gQ0095UklppcWc3uZfEeh3GlcjrYlN0jVM,64417
|
130
|
+
sage/graphs/graph.py,sha256=C078UpvczPdjrh9nqFr_uvruwXW7JyF9_fkRsRqkJNc,369909
|
131
|
+
sage/graphs/convexity_properties.pyx,sha256=G5bhKH3lho-CMMNrIMTx3OjC0fN_8GekR_VwqGBynBk,29524
|
132
|
+
sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
|
133
|
+
sage/graphs/views.cpython-39-darwin.so,sha256=Q8O5oi7_CLcrHqkyvFxA9rVxuE-pcHosVFE3gBqKVFE,203712
|
134
|
+
sage/graphs/line_graph.cpython-39-darwin.so,sha256=MTAxJtzLGzljpPNVIIvKjARbyTIStHRRVRd8WfYp6cs,220960
|
135
|
+
sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
|
136
|
+
sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
|
137
|
+
sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
|
138
|
+
sage/graphs/graph_generators_pyx.pyx,sha256=1E81srDiCWxRmesm86ne47frn2UJ04Kp5AaFI7kW-j4,3092
|
139
|
+
sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
|
140
|
+
sage/graphs/strongly_regular_db.cpython-39-darwin.so,sha256=meIT2tc-JU3-6lUbNkl95ykGURiwwVyM4p-DaOj7l3k,976968
|
141
|
+
sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
|
142
|
+
sage/graphs/path_enumeration.cpython-39-darwin.so,sha256=wL8zqev5LZ3emmc-qWDjOh8M_TErqyeWe7xXtyBjV1Y,439096
|
143
|
+
sage/graphs/convexity_properties.cpython-39-darwin.so,sha256=ZIOcp-tXJy7zwC2Rc2Uju-Mt_s5kuQPewPIdn4Jghd8,191088
|
144
|
+
sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
|
145
|
+
sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
|
146
|
+
sage/graphs/connectivity.cpython-39-darwin.so,sha256=sCblgD7e91yCrJCxOfaMI1L1go7fBDcIyKeQjsCpnPc,782864
|
147
|
+
sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
|
148
|
+
sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
|
149
|
+
sage/graphs/bipartite_graph.py,sha256=L0-eIF8q2JZbkKqOHEafxsbJirxrKVB5N0Gsh5CpVkQ,104781
|
150
|
+
sage/graphs/isoperimetric_inequalities.cpython-39-darwin.so,sha256=FqpmUm-eYVVfswfeNZ3yQBcXoMc9uZyn3A9Cp-4Oi4Q,144784
|
151
|
+
sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
|
152
|
+
sage/graphs/weakly_chordal.cpython-39-darwin.so,sha256=fB0F9Y9Bpc0kr1G41aKHBVyiTgOsuJcIEvdkL3ahr1Y,164704
|
153
|
+
sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
|
154
|
+
sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
|
155
|
+
sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
|
156
|
+
sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
|
157
|
+
sage/graphs/independent_sets.cpython-39-darwin.so,sha256=CSJ7YHvBxVLHHupezPp6I4v_-tbQ2bKy7UVYjJpE7fE,145616
|
158
|
+
sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
|
159
|
+
sage/graphs/tutte_polynomial.py,sha256=Wcid9JQ5dJFZITAzmJ18YnOskNPxCbzXvBDvgjNE-pA,21811
|
160
|
+
sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
|
161
|
+
sage/graphs/trees.cpython-39-darwin.so,sha256=W5m5QI_sQ4FtS9ey49qPgT5SVp7JvmG18mWFMEbbGlQ,118272
|
162
|
+
sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
|
163
|
+
sage/graphs/graph_plot.py,sha256=EfcwzdjrtsUuEXoyWb6j1CbkJt170ASzCmgkJiFuMfI,70278
|
164
|
+
sage/graphs/distances_all_pairs.cpython-39-darwin.so,sha256=cZyiIhiPGFaY_Pd6NyGLljrYGVUJ9tpXPcwyvS9hzCI,319152
|
165
|
+
sage/graphs/graph_list.py,sha256=XW3g5tAW_zmdMpmEUgXniTeu3GG2i7e-_NgStIRGWdU,12712
|
166
|
+
sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
|
167
|
+
sage/graphs/digraph.py,sha256=uryks9iuR5KU_XpPV2dk2GHMud2djfX5wbcQKm-dkec,180720
|
168
|
+
sage/graphs/dot2tex_utils.py,sha256=nCUHldadHC4Jvdx3sOWypkwlRH7Lc3x_xCuJOk_o4jA,3165
|
169
|
+
sage/graphs/traversals.pyx,sha256=si8EwslGcNTJYevubcuwqxmVgKTV0MhFk3ojDHGZnQw,66058
|
170
|
+
sage/graphs/path_enumeration.pyx,sha256=5xXf3-5mobCohaddLgVx-jhyZaT7R4cB8lsNyVUb2zU,90410
|
171
|
+
sage/graphs/isoperimetric_inequalities.pyx,sha256=4pdhidMCuISinpH-4v7yxppuLZ7niRrIr5LjY62bPMc,15689
|
172
|
+
sage/graphs/weakly_chordal.pyx,sha256=hgEid9JOeR2WYmMbnVM2_E4DSUHrb5iaN3E6oFFhqs8,19988
|
173
|
+
sage/graphs/graph_database.py,sha256=IR6SzI3zZXhWrAhWOat_rweckxNYsq108GTL5APxCco,49241
|
174
|
+
sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
|
175
|
+
sage/graphs/comparability.cpython-39-darwin.so,sha256=QgY22wejI9660NH_rw3IADWCAQiUgzX4AJ8o3lsJIOA,238768
|
176
|
+
sage/graphs/centrality.pyx,sha256=mJIHu3It0FzZsJ9vhNi5h1sr2_7SHFdPtXmUx6-c-R0,34973
|
177
|
+
sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
|
178
|
+
sage/graphs/strongly_regular_db.pyx,sha256=FFxau4Zr8YjZp7wboDqJmCWcNOEHwxfizCnOrzicisU,132851
|
179
|
+
sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
|
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/hyperbolicity.cpython-39-darwin.so,sha256=2rCq-6PxvSVx19IZrfHv_t9I5LNbUhxf-PMpVfmA5tM,277936
|
184
|
+
sage/graphs/generic_graph.py,sha256=AVIWhd10PwauaDHO4Ddv-xW9dZbi1PIhI3dCv8vVRr8,1094325
|
185
|
+
sage/graphs/orientations.py,sha256=ZMTASPviyKb4t2swDdTajNeGfemG3vbVmU9IwRUmCzU,53818
|
186
|
+
sage/graphs/comparability.pyx,sha256=k6yGZH9qZbabyaIGPQBGY75Tmsl8EaT-_XyTgPtKPRI,30696
|
187
|
+
sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
|
188
|
+
sage/graphs/generators/distance_regular.pyx,sha256=qnYVaHCpc7L4m2Z1pXuEg98tyJ2ED73bNky5_Fk9ASI,96145
|
189
|
+
sage/graphs/generators/smallgraphs.py,sha256=Kwqzi6iXl36QRVJ8L9-YQcuRjIMlAVhJQpMDdXmwIBY,201988
|
190
|
+
sage/graphs/generators/families.py,sha256=Ex6zqwclb1OXLs7uzuLaBzrWmiephaD0nwKSR5jYxGY,164644
|
191
|
+
sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
192
|
+
sage/graphs/generators/random.py,sha256=Hwnid8-_Hx9N8kA6i9Vpuqlw-l-5cemVqUjo7qSCpVw,92229
|
193
|
+
sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
|
194
|
+
sage/graphs/generators/basic.py,sha256=aSkIJvPJ_eD5pG-2Uf5jh5qxEv8Tbe7o3vwDLiisSYc,61441
|
195
|
+
sage/graphs/generators/distance_regular.cpython-39-darwin.so,sha256=ohL395bpdNqed_8cSK57nhKPRQ-kJPuhFvzy43y4SOk,830552
|
196
|
+
sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
|
197
|
+
sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
|
198
|
+
sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
|
199
|
+
sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
|
200
|
+
sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
|
201
|
+
sage/graphs/graph_decompositions/tree_decomposition.cpython-39-darwin.so,sha256=HhDQGHyZnzINE2VnL4dQz1VajdNBDktbINViKToycWw,507408
|
202
|
+
sage/graphs/graph_decompositions/vertex_separation.cpython-39-darwin.so,sha256=_r8cn_DHyFXYEohq7DPT2Ep_viTqcWdL_AiWp6Pwd7U,321632
|
203
|
+
sage/graphs/graph_decompositions/modular_decomposition.cpython-39-darwin.so,sha256=mYRycN6wgb5SUxf9Ea-OkCcYmQg2h9gG0xmXHfnDaiY,491696
|
204
|
+
sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=RwR3geuP8uwPxNlKfHJQHvPsf3_z6DvwQEWyUEf1Df8,7389
|
205
|
+
sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
|
206
|
+
sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
|
207
|
+
sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=FuuFnQc9XS61ukySrFBLvYfSlvpgTsGz_lMnzIN4-5g,39622
|
208
|
+
sage/graphs/graph_decompositions/cutwidth.cpython-39-darwin.so,sha256=lChd6TfbJ4neCU7mWsRZn0VGFJkL0vBGU7fjD0ZRb6E,206832
|
209
|
+
sage/graphs/graph_decompositions/bandwidth.cpython-39-darwin.so,sha256=saieT9u67izxZrYsXHqAiz5XoXNfhgbEOT7v_7SR6f0,104304
|
210
|
+
sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
211
|
+
sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
|
212
|
+
sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
|
213
|
+
sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
|
214
|
+
sage/graphs/graph_decompositions/graph_products.cpython-39-darwin.so,sha256=Gr3M051Mo4tZ9DZy5nO0LfEd_gAKZtfQ1OSpPCILbQk,206224
|
215
|
+
sage/graphs/graph_decompositions/graph_products.pyx,sha256=XcghL4BzFWPPNmpNIKSC37zzBwNMmmaNqnEAtXnP0hw,17139
|
216
|
+
sage/graphs/graph_decompositions/clique_separators.pyx,sha256=nZpjLIQYuRND2eu1jvvawGo19_WSFROk8I1NRhHzhCU,22876
|
217
|
+
sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
|
218
|
+
sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
|
219
|
+
sage/graphs/graph_decompositions/clique_separators.cpython-39-darwin.so,sha256=T6B8lJ41bU8tKadTdW-8Aw91LIo86SZNuC7---PYPng,242336
|
220
|
+
sage/graphs/graph_decompositions/slice_decomposition.cpython-39-darwin.so,sha256=V7q3gVvX1QiLb7MUmyOBUppxEHCssH-3loHi7i0A-IQ,274576
|
221
|
+
sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
|
222
|
+
sage/graphs/graph_decompositions/fast_digraph.cpython-39-darwin.so,sha256=M0YVFjHVfNu3g9M1CQ7Wsh0UZjh1FAgYFDCz7BL4tmM,102176
|
223
|
+
sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
|
224
|
+
sage/graphs/base/graph_backends.cpython-39-darwin.so,sha256=ZMZ6XNKNoFqzYpTFPcfpj88mxe36XZy6U9XjgzBHjSE,163360
|
225
|
+
sage/graphs/base/static_sparse_graph.pyx,sha256=bnMe1AinoGjIsIlsJGeCCRuihiDtZkGQmG4kh41hvqM,49908
|
226
|
+
sage/graphs/base/c_graph.cpython-39-darwin.so,sha256=iy7Hdu8OksQ77gHBBiNWKjgu88R2eqCvChae-A_Hv1U,632128
|
227
|
+
sage/graphs/base/boost_graph.pxd,sha256=K3GCaIXjsmhwgTzlSntrHi3IB1t2vJpOzSS7FQGlxEo,3655
|
228
|
+
sage/graphs/base/c_graph.pyx,sha256=Lr1cxK2A5mtR0EIQmYIljc2OgYgiBeRn5Rw0mC_k0x8,179656
|
229
|
+
sage/graphs/base/sparse_graph.cpython-39-darwin.so,sha256=pQC3UxSBzb7EUISW31d9qj-OuypK2M07chkTvpNQ52w,229904
|
230
|
+
sage/graphs/base/dense_graph.cpython-39-darwin.so,sha256=k8f54UVig54VPkqBSo-UbGZfabvq69EVt-Y1CkcT9qA,187360
|
231
|
+
sage/graphs/base/static_sparse_backend.pyx,sha256=Gu5fS7Jq-p2jfNuU-QwV60YsUtyc2jVlZ9h9hWCM9eE,55323
|
232
|
+
sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
|
233
|
+
sage/graphs/base/boost_graph.cpython-39-darwin.so,sha256=vQo1ktQdtMtUlzhPrwIOqwmC6MpFgC6Yt3iOmmHRHnw,835952
|
234
|
+
sage/graphs/base/dense_graph.pyx,sha256=HfZU7L2IScsA8_a6VCcs8rM6aWRkYTSz8oRhJWHX5mY,24167
|
235
|
+
sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
|
236
|
+
sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
|
237
|
+
sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
|
238
|
+
sage/graphs/base/static_sparse_graph.cpython-39-darwin.so,sha256=DePlZp6huiTo_a8-U-od5t37dCDt1R7RtfSFepGV9ik,233168
|
239
|
+
sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
|
240
|
+
sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
|
241
|
+
sage/graphs/base/dense_graph.pxd,sha256=VltYtRdTHhfpXG11C-lfMPSlm57dyP4Ot3E3FOzlsjI,1119
|
242
|
+
sage/graphs/base/static_sparse_backend.cpython-39-darwin.so,sha256=67M64Srh52q7NYjRP_r7GhUm7d_bCxIrR81ed3dr_C8,322864
|
243
|
+
sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
|
244
|
+
sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
|
245
|
+
sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
|
246
|
+
sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
|
247
|
+
sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
|
248
|
+
sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
|
249
|
+
sage/graphs/base/static_dense_graph.cpython-39-darwin.so,sha256=u9k-WQgLA70LEogrOAq4tOZL4zT4eV5_7lvnycbdtTo,263088
|
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
|
253
|
+
sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
|
254
|
+
sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
|
255
|
+
sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
|
256
|
+
sage/knots/gauss_code.py,sha256=XPReZ4_t4FUiV6Nza_8MaCQ-05CuOffdMmk2ckm98jc,8978
|
Binary file
|
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:
|
sage/combinat/abstract_tree.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# sage_setup: distribution = sagemath-graphs
|
2
2
|
r"""
|
3
|
-
Abstract
|
3
|
+
Abstract recursive trees
|
4
4
|
|
5
5
|
The purpose of this class is to help implement trees with a specific structure
|
6
6
|
on the children of each node. For instance, one could want to define a tree in
|
sage/combinat/binary_tree.py
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
r"""
|
3
3
|
Cluster algebras and quivers
|
4
4
|
|
5
|
-
|
5
|
+
A compendium on the cluster algebra and quiver package in Sage [MS2011]_
|
6
6
|
|
7
7
|
- :ref:`sage.combinat.cluster_algebra_quiver.quiver_mutation_type`
|
8
8
|
- :ref:`sage.combinat.cluster_algebra_quiver.quiver`
|