passagemath-graphs 10.6.1rc1__cp310-cp310-musllinux_1_2_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (260) hide show
  1. passagemath_graphs-10.6.1rc1.dist-info/METADATA +292 -0
  2. passagemath_graphs-10.6.1rc1.dist-info/RECORD +260 -0
  3. passagemath_graphs-10.6.1rc1.dist-info/WHEEL +5 -0
  4. passagemath_graphs-10.6.1rc1.dist-info/top_level.txt +2 -0
  5. passagemath_graphs.libs/libgcc_s-69c45f16.so.1 +0 -0
  6. passagemath_graphs.libs/libgmp-8e78bd9b.so.10.5.0 +0 -0
  7. passagemath_graphs.libs/libstdc++-1f1a71be.so.6.0.33 +0 -0
  8. sage/all__sagemath_graphs.py +39 -0
  9. sage/combinat/abstract_tree.py +2723 -0
  10. sage/combinat/all__sagemath_graphs.py +34 -0
  11. sage/combinat/binary_tree.py +5306 -0
  12. sage/combinat/cluster_algebra_quiver/all.py +22 -0
  13. sage/combinat/cluster_algebra_quiver/cluster_seed.py +5208 -0
  14. sage/combinat/cluster_algebra_quiver/interact.py +124 -0
  15. sage/combinat/cluster_algebra_quiver/mutation_class.py +625 -0
  16. sage/combinat/cluster_algebra_quiver/mutation_type.py +1555 -0
  17. sage/combinat/cluster_algebra_quiver/quiver.py +2290 -0
  18. sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py +2468 -0
  19. sage/combinat/designs/MOLS_handbook_data.py +570 -0
  20. sage/combinat/designs/all.py +58 -0
  21. sage/combinat/designs/bibd.py +1655 -0
  22. sage/combinat/designs/block_design.py +1071 -0
  23. sage/combinat/designs/covering_array.py +269 -0
  24. sage/combinat/designs/covering_design.py +530 -0
  25. sage/combinat/designs/database.py +5615 -0
  26. sage/combinat/designs/design_catalog.py +122 -0
  27. sage/combinat/designs/designs_pyx.cpython-310-aarch64-linux-gnu.so +0 -0
  28. sage/combinat/designs/designs_pyx.pxd +21 -0
  29. sage/combinat/designs/designs_pyx.pyx +993 -0
  30. sage/combinat/designs/difference_family.py +3951 -0
  31. sage/combinat/designs/difference_matrices.py +279 -0
  32. sage/combinat/designs/evenly_distributed_sets.cpython-310-aarch64-linux-gnu.so +0 -0
  33. sage/combinat/designs/evenly_distributed_sets.pyx +661 -0
  34. sage/combinat/designs/ext_rep.py +1064 -0
  35. sage/combinat/designs/gen_quadrangles_with_spread.cpython-310-aarch64-linux-gnu.so +0 -0
  36. sage/combinat/designs/gen_quadrangles_with_spread.pyx +339 -0
  37. sage/combinat/designs/group_divisible_designs.py +361 -0
  38. sage/combinat/designs/incidence_structures.py +2357 -0
  39. sage/combinat/designs/latin_squares.py +581 -0
  40. sage/combinat/designs/orthogonal_arrays.py +2244 -0
  41. sage/combinat/designs/orthogonal_arrays_build_recursive.py +1780 -0
  42. sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-310-aarch64-linux-gnu.so +0 -0
  43. sage/combinat/designs/orthogonal_arrays_find_recursive.pyx +967 -0
  44. sage/combinat/designs/resolvable_bibd.py +815 -0
  45. sage/combinat/designs/steiner_quadruple_systems.py +1306 -0
  46. sage/combinat/designs/subhypergraph_search.cpython-310-aarch64-linux-gnu.so +0 -0
  47. sage/combinat/designs/subhypergraph_search.pyx +530 -0
  48. sage/combinat/designs/twographs.py +306 -0
  49. sage/combinat/finite_state_machine.py +14874 -0
  50. sage/combinat/finite_state_machine_generators.py +2006 -0
  51. sage/combinat/graph_path.py +448 -0
  52. sage/combinat/interval_posets.py +3908 -0
  53. sage/combinat/nu_tamari_lattice.py +269 -0
  54. sage/combinat/ordered_tree.py +1446 -0
  55. sage/combinat/posets/all.py +46 -0
  56. sage/combinat/posets/bubble_shuffle.py +247 -0
  57. sage/combinat/posets/cartesian_product.py +493 -0
  58. sage/combinat/posets/d_complete.py +182 -0
  59. sage/combinat/posets/elements.py +273 -0
  60. sage/combinat/posets/forest.py +30 -0
  61. sage/combinat/posets/hasse_cython.cpython-310-aarch64-linux-gnu.so +0 -0
  62. sage/combinat/posets/hasse_cython.pyx +174 -0
  63. sage/combinat/posets/hasse_diagram.py +3672 -0
  64. sage/combinat/posets/hochschild_lattice.py +158 -0
  65. sage/combinat/posets/incidence_algebras.py +794 -0
  66. sage/combinat/posets/lattices.py +5117 -0
  67. sage/combinat/posets/linear_extension_iterator.cpython-310-aarch64-linux-gnu.so +0 -0
  68. sage/combinat/posets/linear_extension_iterator.pyx +292 -0
  69. sage/combinat/posets/linear_extensions.py +1037 -0
  70. sage/combinat/posets/mobile.py +275 -0
  71. sage/combinat/posets/moebius_algebra.py +776 -0
  72. sage/combinat/posets/poset_examples.py +2178 -0
  73. sage/combinat/posets/posets.py +9360 -0
  74. sage/combinat/rooted_tree.py +1070 -0
  75. sage/combinat/shard_order.py +239 -0
  76. sage/combinat/tamari_lattices.py +384 -0
  77. sage/combinat/yang_baxter_graph.py +923 -0
  78. sage/databases/all__sagemath_graphs.py +1 -0
  79. sage/databases/knotinfo_db.py +1231 -0
  80. sage/ext_data/all__sagemath_graphs.py +1 -0
  81. sage/ext_data/graphs/graph_plot_js.html +330 -0
  82. sage/ext_data/kenzo/CP2.txt +45 -0
  83. sage/ext_data/kenzo/CP3.txt +349 -0
  84. sage/ext_data/kenzo/CP4.txt +4774 -0
  85. sage/ext_data/kenzo/README.txt +49 -0
  86. sage/ext_data/kenzo/S4.txt +20 -0
  87. sage/graphs/all.py +42 -0
  88. sage/graphs/asteroidal_triples.cpython-310-aarch64-linux-gnu.so +0 -0
  89. sage/graphs/asteroidal_triples.pyx +320 -0
  90. sage/graphs/base/all.py +1 -0
  91. sage/graphs/base/boost_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  92. sage/graphs/base/boost_graph.pxd +106 -0
  93. sage/graphs/base/boost_graph.pyx +3045 -0
  94. sage/graphs/base/c_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  95. sage/graphs/base/c_graph.pxd +106 -0
  96. sage/graphs/base/c_graph.pyx +5096 -0
  97. sage/graphs/base/dense_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  98. sage/graphs/base/dense_graph.pxd +28 -0
  99. sage/graphs/base/dense_graph.pyx +801 -0
  100. sage/graphs/base/graph_backends.cpython-310-aarch64-linux-gnu.so +0 -0
  101. sage/graphs/base/graph_backends.pxd +5 -0
  102. sage/graphs/base/graph_backends.pyx +797 -0
  103. sage/graphs/base/overview.py +85 -0
  104. sage/graphs/base/sparse_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  105. sage/graphs/base/sparse_graph.pxd +90 -0
  106. sage/graphs/base/sparse_graph.pyx +1653 -0
  107. sage/graphs/base/static_dense_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  108. sage/graphs/base/static_dense_graph.pxd +5 -0
  109. sage/graphs/base/static_dense_graph.pyx +1032 -0
  110. sage/graphs/base/static_sparse_backend.cpython-310-aarch64-linux-gnu.so +0 -0
  111. sage/graphs/base/static_sparse_backend.pxd +27 -0
  112. sage/graphs/base/static_sparse_backend.pyx +1583 -0
  113. sage/graphs/base/static_sparse_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  114. sage/graphs/base/static_sparse_graph.pxd +37 -0
  115. sage/graphs/base/static_sparse_graph.pyx +1375 -0
  116. sage/graphs/bipartite_graph.py +2732 -0
  117. sage/graphs/centrality.cpython-310-aarch64-linux-gnu.so +0 -0
  118. sage/graphs/centrality.pyx +1038 -0
  119. sage/graphs/cographs.py +519 -0
  120. sage/graphs/comparability.cpython-310-aarch64-linux-gnu.so +0 -0
  121. sage/graphs/comparability.pyx +851 -0
  122. sage/graphs/connectivity.cpython-310-aarch64-linux-gnu.so +0 -0
  123. sage/graphs/connectivity.pxd +157 -0
  124. sage/graphs/connectivity.pyx +4813 -0
  125. sage/graphs/convexity_properties.cpython-310-aarch64-linux-gnu.so +0 -0
  126. sage/graphs/convexity_properties.pxd +16 -0
  127. sage/graphs/convexity_properties.pyx +870 -0
  128. sage/graphs/digraph.py +4754 -0
  129. sage/graphs/digraph_generators.py +1993 -0
  130. sage/graphs/distances_all_pairs.cpython-310-aarch64-linux-gnu.so +0 -0
  131. sage/graphs/distances_all_pairs.pxd +12 -0
  132. sage/graphs/distances_all_pairs.pyx +2938 -0
  133. sage/graphs/domination.py +1363 -0
  134. sage/graphs/dot2tex_utils.py +100 -0
  135. sage/graphs/edge_connectivity.cpython-310-aarch64-linux-gnu.so +0 -0
  136. sage/graphs/edge_connectivity.pyx +1215 -0
  137. sage/graphs/generators/all.py +1 -0
  138. sage/graphs/generators/basic.py +1769 -0
  139. sage/graphs/generators/chessboard.py +538 -0
  140. sage/graphs/generators/classical_geometries.py +1611 -0
  141. sage/graphs/generators/degree_sequence.py +235 -0
  142. sage/graphs/generators/distance_regular.cpython-310-aarch64-linux-gnu.so +0 -0
  143. sage/graphs/generators/distance_regular.pyx +2846 -0
  144. sage/graphs/generators/families.py +4759 -0
  145. sage/graphs/generators/intersection.py +565 -0
  146. sage/graphs/generators/platonic_solids.py +262 -0
  147. sage/graphs/generators/random.py +2623 -0
  148. sage/graphs/generators/smallgraphs.py +5741 -0
  149. sage/graphs/generators/world_map.py +724 -0
  150. sage/graphs/generic_graph.py +26867 -0
  151. sage/graphs/generic_graph_pyx.cpython-310-aarch64-linux-gnu.so +0 -0
  152. sage/graphs/generic_graph_pyx.pxd +34 -0
  153. sage/graphs/generic_graph_pyx.pyx +1673 -0
  154. sage/graphs/genus.cpython-310-aarch64-linux-gnu.so +0 -0
  155. sage/graphs/genus.pyx +622 -0
  156. sage/graphs/graph.py +9645 -0
  157. sage/graphs/graph_coloring.cpython-310-aarch64-linux-gnu.so +0 -0
  158. sage/graphs/graph_coloring.pyx +2284 -0
  159. sage/graphs/graph_database.py +1177 -0
  160. sage/graphs/graph_decompositions/all.py +1 -0
  161. sage/graphs/graph_decompositions/bandwidth.cpython-310-aarch64-linux-gnu.so +0 -0
  162. sage/graphs/graph_decompositions/bandwidth.pyx +428 -0
  163. sage/graphs/graph_decompositions/clique_separators.cpython-310-aarch64-linux-gnu.so +0 -0
  164. sage/graphs/graph_decompositions/clique_separators.pyx +616 -0
  165. sage/graphs/graph_decompositions/cutwidth.cpython-310-aarch64-linux-gnu.so +0 -0
  166. sage/graphs/graph_decompositions/cutwidth.pyx +753 -0
  167. sage/graphs/graph_decompositions/fast_digraph.cpython-310-aarch64-linux-gnu.so +0 -0
  168. sage/graphs/graph_decompositions/fast_digraph.pxd +13 -0
  169. sage/graphs/graph_decompositions/fast_digraph.pyx +212 -0
  170. sage/graphs/graph_decompositions/graph_products.cpython-310-aarch64-linux-gnu.so +0 -0
  171. sage/graphs/graph_decompositions/graph_products.pyx +508 -0
  172. sage/graphs/graph_decompositions/modular_decomposition.cpython-310-aarch64-linux-gnu.so +0 -0
  173. sage/graphs/graph_decompositions/modular_decomposition.pxd +27 -0
  174. sage/graphs/graph_decompositions/modular_decomposition.pyx +1536 -0
  175. sage/graphs/graph_decompositions/slice_decomposition.cpython-310-aarch64-linux-gnu.so +0 -0
  176. sage/graphs/graph_decompositions/slice_decomposition.pxd +18 -0
  177. sage/graphs/graph_decompositions/slice_decomposition.pyx +1106 -0
  178. sage/graphs/graph_decompositions/tree_decomposition.cpython-310-aarch64-linux-gnu.so +0 -0
  179. sage/graphs/graph_decompositions/tree_decomposition.pxd +17 -0
  180. sage/graphs/graph_decompositions/tree_decomposition.pyx +1996 -0
  181. sage/graphs/graph_decompositions/vertex_separation.cpython-310-aarch64-linux-gnu.so +0 -0
  182. sage/graphs/graph_decompositions/vertex_separation.pxd +5 -0
  183. sage/graphs/graph_decompositions/vertex_separation.pyx +1963 -0
  184. sage/graphs/graph_editor.py +82 -0
  185. sage/graphs/graph_generators.py +3314 -0
  186. sage/graphs/graph_generators_pyx.cpython-310-aarch64-linux-gnu.so +0 -0
  187. sage/graphs/graph_generators_pyx.pyx +95 -0
  188. sage/graphs/graph_input.py +812 -0
  189. sage/graphs/graph_latex.py +2064 -0
  190. sage/graphs/graph_list.py +410 -0
  191. sage/graphs/graph_plot.py +1756 -0
  192. sage/graphs/graph_plot_js.py +338 -0
  193. sage/graphs/hyperbolicity.cpython-310-aarch64-linux-gnu.so +0 -0
  194. sage/graphs/hyperbolicity.pyx +1704 -0
  195. sage/graphs/hypergraph_generators.py +364 -0
  196. sage/graphs/independent_sets.cpython-310-aarch64-linux-gnu.so +0 -0
  197. sage/graphs/independent_sets.pxd +13 -0
  198. sage/graphs/independent_sets.pyx +402 -0
  199. sage/graphs/isgci.py +1033 -0
  200. sage/graphs/isoperimetric_inequalities.cpython-310-aarch64-linux-gnu.so +0 -0
  201. sage/graphs/isoperimetric_inequalities.pyx +489 -0
  202. sage/graphs/line_graph.cpython-310-aarch64-linux-gnu.so +0 -0
  203. sage/graphs/line_graph.pyx +743 -0
  204. sage/graphs/lovasz_theta.py +77 -0
  205. sage/graphs/matching.py +1633 -0
  206. sage/graphs/matching_covered_graph.py +3590 -0
  207. sage/graphs/orientations.py +1489 -0
  208. sage/graphs/partial_cube.py +459 -0
  209. sage/graphs/path_enumeration.cpython-310-aarch64-linux-gnu.so +0 -0
  210. sage/graphs/path_enumeration.pyx +2040 -0
  211. sage/graphs/pq_trees.py +1129 -0
  212. sage/graphs/print_graphs.py +201 -0
  213. sage/graphs/schnyder.py +865 -0
  214. sage/graphs/spanning_tree.cpython-310-aarch64-linux-gnu.so +0 -0
  215. sage/graphs/spanning_tree.pyx +1457 -0
  216. sage/graphs/strongly_regular_db.cpython-310-aarch64-linux-gnu.so +0 -0
  217. sage/graphs/strongly_regular_db.pyx +3340 -0
  218. sage/graphs/traversals.cpython-310-aarch64-linux-gnu.so +0 -0
  219. sage/graphs/traversals.pxd +9 -0
  220. sage/graphs/traversals.pyx +1872 -0
  221. sage/graphs/trees.cpython-310-aarch64-linux-gnu.so +0 -0
  222. sage/graphs/trees.pxd +15 -0
  223. sage/graphs/trees.pyx +310 -0
  224. sage/graphs/tutte_polynomial.py +713 -0
  225. sage/graphs/views.cpython-310-aarch64-linux-gnu.so +0 -0
  226. sage/graphs/views.pyx +794 -0
  227. sage/graphs/weakly_chordal.cpython-310-aarch64-linux-gnu.so +0 -0
  228. sage/graphs/weakly_chordal.pyx +604 -0
  229. sage/groups/all__sagemath_graphs.py +1 -0
  230. sage/groups/perm_gps/all__sagemath_graphs.py +1 -0
  231. sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py +1 -0
  232. sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-310-aarch64-linux-gnu.so +0 -0
  233. sage/groups/perm_gps/partn_ref/refinement_graphs.pxd +38 -0
  234. sage/groups/perm_gps/partn_ref/refinement_graphs.pyx +1666 -0
  235. sage/knots/all.py +6 -0
  236. sage/knots/free_knotinfo_monoid.py +507 -0
  237. sage/knots/gauss_code.py +291 -0
  238. sage/knots/knot.py +682 -0
  239. sage/knots/knot_table.py +284 -0
  240. sage/knots/knotinfo.py +2900 -0
  241. sage/knots/link.py +4715 -0
  242. sage/sandpiles/all.py +13 -0
  243. sage/sandpiles/examples.py +225 -0
  244. sage/sandpiles/sandpile.py +6365 -0
  245. sage/topology/all.py +22 -0
  246. sage/topology/cell_complex.py +1214 -0
  247. sage/topology/cubical_complex.py +1976 -0
  248. sage/topology/delta_complex.py +1806 -0
  249. sage/topology/filtered_simplicial_complex.py +744 -0
  250. sage/topology/moment_angle_complex.py +823 -0
  251. sage/topology/simplicial_complex.py +5160 -0
  252. sage/topology/simplicial_complex_catalog.py +92 -0
  253. sage/topology/simplicial_complex_examples.py +1680 -0
  254. sage/topology/simplicial_complex_homset.py +205 -0
  255. sage/topology/simplicial_complex_morphism.py +836 -0
  256. sage/topology/simplicial_set.py +4102 -0
  257. sage/topology/simplicial_set_catalog.py +55 -0
  258. sage/topology/simplicial_set_constructions.py +2954 -0
  259. sage/topology/simplicial_set_examples.py +865 -0
  260. sage/topology/simplicial_set_morphism.py +1464 -0
@@ -0,0 +1,292 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-graphs
3
+ Version: 10.6.1rc1
4
+ Summary: passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License-Expression: GPL-2.0-or-later
8
+ Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
+ Project-URL: repo (upstream), https://github.com/sagemath/sage
10
+ Project-URL: repo, https://github.com/passagemath/passagemath
11
+ Project-URL: documentation, https://doc.sagemath.org
12
+ Project-URL: homepage (upstream), https://www.sagemath.org
13
+ Project-URL: discourse, https://passagemath.discourse.group
14
+ Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
15
+ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
+ Classifier: Development Status :: 6 - Mature
17
+ Classifier: Intended Audience :: Education
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: MacOS :: MacOS X
21
+ Classifier: Programming Language :: Python :: 3 :: Only
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: Implementation :: CPython
27
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
28
+ Requires-Python: <3.14,>=3.10
29
+ Description-Content-Type: text/x-rst
30
+ Requires-Dist: gmpy2~=2.1.b999
31
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
32
+ Requires-Dist: memory_allocator
33
+ Requires-Dist: passagemath-categories==10.6.1rc1
34
+ Requires-Dist: passagemath-environment==10.6.1rc1
35
+ Provides-Extra: test
36
+ Requires-Dist: passagemath-repl; extra == "test"
37
+ Provides-Extra: benzene
38
+ Requires-Dist: passagemath-benzene; extra == "benzene"
39
+ Provides-Extra: bliss
40
+ Requires-Dist: passagemath-bliss; extra == "bliss"
41
+ Provides-Extra: buckygen
42
+ Requires-Dist: passagemath-buckygen; extra == "buckygen"
43
+ Provides-Extra: cliquer
44
+ Requires-Dist: passagemath-cliquer; extra == "cliquer"
45
+ Provides-Extra: cmr
46
+ Requires-Dist: passagemath-cmr; extra == "cmr"
47
+ Provides-Extra: gap
48
+ Requires-Dist: passagemath-gap; extra == "gap"
49
+ Provides-Extra: igraph
50
+ Requires-Dist: igraph; extra == "igraph"
51
+ Provides-Extra: mcqd
52
+ Requires-Dist: passagemath-mcqd; extra == "mcqd"
53
+ Provides-Extra: nauty
54
+ Requires-Dist: passagemath-nauty; extra == "nauty"
55
+ Provides-Extra: networkx
56
+ Requires-Dist: networkx>=2.4; extra == "networkx"
57
+ Provides-Extra: pari
58
+ Requires-Dist: passagemath-pari; extra == "pari"
59
+ Provides-Extra: planarity
60
+ Requires-Dist: passagemath-planarity; extra == "planarity"
61
+ Provides-Extra: plantri
62
+ Requires-Dist: passagemath-plantri; extra == "plantri"
63
+ Provides-Extra: rankwidth
64
+ Requires-Dist: passagemath-rankwidth; extra == "rankwidth"
65
+ Provides-Extra: rw
66
+ Requires-Dist: passagemath-graphs[rankwidth]; extra == "rw"
67
+ Provides-Extra: tdlib
68
+ Requires-Dist: passagemath-tdlib; extra == "tdlib"
69
+ Provides-Extra: combinat
70
+ Requires-Dist: passagemath-combinat; extra == "combinat"
71
+ Provides-Extra: editor
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"
76
+ Provides-Extra: homology
77
+ Requires-Dist: passagemath-modules; extra == "homology"
78
+ Provides-Extra: mip
79
+ Requires-Dist: passagemath-polyhedra; extra == "mip"
80
+ Provides-Extra: modules
81
+ Requires-Dist: passagemath-modules; extra == "modules"
82
+ Provides-Extra: plot
83
+ Requires-Dist: passagemath-plot; extra == "plot"
84
+ Provides-Extra: polyhedra
85
+ Requires-Dist: passagemath-polyhedra; extra == "polyhedra"
86
+ Provides-Extra: repl
87
+ Requires-Dist: passagemath-repl; extra == "repl"
88
+ Provides-Extra: sat
89
+ Requires-Dist: passagemath-combinat; extra == "sat"
90
+ Provides-Extra: standard
91
+ Requires-Dist: passagemath-graphs[combinat,databases,groups,mip,modules,planarity,polyhedra,rankwidth,repl]; extra == "standard"
92
+ Requires-Dist: passagemath-plot[tachyon]; extra == "standard"
93
+
94
+ =======================================================================================================================================================
95
+ passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
96
+ =======================================================================================================================================================
97
+
98
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
99
+ source mathematical software in Python, released under the GNU General
100
+ Public Licence GPLv2+.
101
+
102
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
103
+ developed 2005-2025 under the motto “Creating a Viable Open Source
104
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
105
+
106
+ The passagemath fork was created in October 2024 with the following
107
+ goals:
108
+
109
+ - providing modularized installation with pip, thus completing a `major
110
+ project started in 2020 in the Sage
111
+ codebase <https://github.com/sagemath/sage/issues/29705>`__,
112
+ - establishing first-class membership in the scientific Python
113
+ ecosystem,
114
+ - giving `clear attribution of upstream
115
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
116
+ - providing independently usable Python interfaces to upstream
117
+ libraries,
118
+ - providing `platform portability and integration testing
119
+ services <https://github.com/passagemath/passagemath/issues/704>`__
120
+ to upstream projects,
121
+ - inviting collaborations with upstream projects,
122
+ - `building a professional, respectful, inclusive
123
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
124
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
125
+ serverless deployment with Javascript,
126
+ - developing a native Windows port.
127
+
128
+ `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
129
+ available online.
130
+
131
+ passagemath attempts to support all major Linux distributions and recent versions of
132
+ macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
133
+ virtualization.
134
+
135
+ Complete sets of binary wheels are provided on PyPI for Python versions 3.10.x-3.13.x.
136
+ Python 3.13.x is also supported, but some third-party packages are still missing wheels,
137
+ so compilation from source is triggered for those.
138
+
139
+
140
+ About this pip-installable distribution package
141
+ -----------------------------------------------
142
+
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.
144
+
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.
146
+
147
+
148
+ What is included
149
+ ----------------
150
+
151
+ * `Graph Theory <https://doc.sagemath.org/html/en/reference/graphs/index.html>`_
152
+
153
+ * `Trees <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/enumerated_sets.html#trees>`_
154
+
155
+ * `Posets <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/posets/all.html>`_
156
+
157
+ * `Abstract Complexes <https://doc.sagemath.org/html/en/reference/topology/index.html>`_
158
+
159
+ * `Combinatorial Designs and Incidence Structure <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/designs/all.html>`_
160
+
161
+ * `Finite State Machines, Automata, Transducers <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/finite_state_machine.html>`_
162
+
163
+ * `Cluster Algebras and Quivers <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/cluster_algebra_quiver/all.html>`_
164
+
165
+ * `Knot Theory <https://doc.sagemath.org/html/en/reference/knots/index.html>`_
166
+
167
+ * `Sandpiles <https://doc.sagemath.org/html/en/reference/dynamics/sage/sandpiles/sandpile.html>`_
168
+
169
+ * see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-graphs/MANIFEST.in
170
+
171
+
172
+ Examples
173
+ --------
174
+
175
+ A quick way to try it out interactively::
176
+
177
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[test]" ipython
178
+ In [1]: from sage.all__sagemath_graphs import *
179
+
180
+ In [6]: g = Graph([(1, 3), (3, 8), (5, 2)]); g
181
+ Out[6]: Graph on 5 vertices
182
+
183
+ In [7]: g.is_connected()
184
+ Out[7]: False
185
+
186
+
187
+ Available as extras, from other distributions
188
+ ---------------------------------------------
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
+
219
+ ``pip install passagemath-graphs[networkx]`` additionally installs
220
+ `NetworkX <https://networkx.github.io>`__::
221
+
222
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[networkx,test]" ipython
223
+ In [1]: from sage.all__sagemath_graphs import *
224
+
225
+ In [2]: ## Example depending on networkx goes here
226
+
227
+ ``pip install passagemath-graphs[pari]`` additionally installs `passagemath-pari <https://pypi.org/project/passagemath-pari/>`_
228
+
229
+ ``pip install passagemath-graphs[planarity]`` additionally installs `passagemath-planarity <https://pypi.org/project/passagemath-planarity/>`_ for planarity testing.
230
+
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
247
+ In [1]: from sage.all__sagemath_graphs import *
248
+
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()
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/>`_.
261
+
262
+ ``pip install passagemath-graphs[mip]`` additionally makes the mixed-integer programming
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).::
264
+
265
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[mip,test]" ipython
266
+ In [1]: from sage.all__sagemath_graphs import *
267
+
268
+ In [2]: ## Example depending on MIP goes here
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.
280
+
281
+
282
+ Development
283
+ -----------
284
+
285
+ ::
286
+
287
+ $ git clone --origin passagemath https://github.com/passagemath/passagemath.git
288
+ $ cd passagemath
289
+ passagemath $ ./bootstrap
290
+ passagemath $ python3 -m venv graphs-venv
291
+ passagemath $ source graphs-venv/bin/activate
292
+ (graphs-venv) passagemath $ pip install -v -e pkgs/sagemath-graphs
@@ -0,0 +1,260 @@
1
+ passagemath_graphs.libs/libgcc_s-69c45f16.so.1,sha256=BOFjRP57t9LgRNNAnFVK5VHmrp5UU-p5NcfcZ10dnd4,201673
2
+ passagemath_graphs.libs/libgmp-8e78bd9b.so.10.5.0,sha256=im50qR2w_N41DOhdzO_WChiY-_a2Ite2YarRdCFuysg,666617
3
+ passagemath_graphs.libs/libstdc++-1f1a71be.so.6.0.33,sha256=sURAhanafc8tH6FGDqPKz7dsPGNb0Aym8vBo6UbJ3Ok,3650097
4
+ sage/all__sagemath_graphs.py,sha256=q3QFFFTkeijGtFSjZtlnAko3Mrnr8fK-m5Yghw2VQyM,837
5
+ sage/combinat/abstract_tree.py,sha256=3KcwC0HaEmFz8O_dR-kvy2xiMp9G64v5SEC4zm7Szqg,94266
6
+ sage/combinat/all__sagemath_graphs.py,sha256=zAse3aKr_WJaFWDL93rOM8mNuHUvs_hs0gJsoxfbqiQ,1329
7
+ sage/combinat/binary_tree.py,sha256=BnjdPKrHRxtJrlKmUSHqrDDQ0UvQbm8onuh0IHpSGV0,183189
8
+ sage/combinat/finite_state_machine.py,sha256=rngcy9hczCxVkhNQvK6ho3A7xosqi9bv1tUJaLJR2gU,574657
9
+ sage/combinat/finite_state_machine_generators.py,sha256=YqeqpPwWpra88B4GW5IcA2rtbXpbeT9uGxREegTJFdM,73186
10
+ sage/combinat/graph_path.py,sha256=enqb7IFVXGZ-roxtMJRTaTmCDY3qr_kkjC-03qg0p5s,13122
11
+ sage/combinat/interval_posets.py,sha256=n1EpZC2XnwvRAPiG-fA5c66krNlO2V-kox9LwgawHu0,147095
12
+ sage/combinat/nu_tamari_lattice.py,sha256=DIZ3Y-hyxvATa_NZDJKv3mzlUcjKVSS7N_drsJ9LDzY,9457
13
+ sage/combinat/ordered_tree.py,sha256=Q08B55_8JZPxiymIAh5bbhiepvWtjj3T96owcR0mLfw,47856
14
+ sage/combinat/rooted_tree.py,sha256=HwZ6OlSwROTXZoZsgPEd4Hz9VqYPMsZYXdrO-PbcT4s,34211
15
+ sage/combinat/shard_order.py,sha256=hULsSgJS39xMwEe8UrNCkoTZii41V-cROxE0PAvsE8k,8060
16
+ sage/combinat/tamari_lattices.py,sha256=1K261Ntyt3uZqkFVVTC_PVyimDFomOeJeEW3UAwqpQc,11061
17
+ sage/combinat/yang_baxter_graph.py,sha256=BGcGaIfAnOzW4g9tCg6uDpKrHHeG-Q5z74TBQa0JYhc,33932
18
+ sage/combinat/cluster_algebra_quiver/all.py,sha256=Kn96IeqXORbsHL0NSlKT3mKDtcM2biPzgxNrab-BiXY,831
19
+ sage/combinat/cluster_algebra_quiver/cluster_seed.py,sha256=8WyDGr-i77io5pC5xSCdMP-0ssdWxLZKyKVTN6eMx-Y,197656
20
+ sage/combinat/cluster_algebra_quiver/interact.py,sha256=J-Ka38Eb540DIzet6XP_7qdYh1Bfz-xucAA8YL1BLO0,4250
21
+ sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
22
+ sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=1aVYcY7dOakwBueA3E3Tu7PImQNyw3TiSw_7s5lNA_M,76256
23
+ sage/combinat/cluster_algebra_quiver/quiver.py,sha256=mDBNojdFE00O_61QeHzwsWb1Zxdv9gWs3cVsXM-zzYY,86160
24
+ sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py,sha256=24QBRRseafrBvShSJC_ilP7nY6QwDX0U1GkMDxFhoBA,92005
25
+ sage/combinat/designs/MOLS_handbook_data.py,sha256=SOjglkjrMNtbttoKD5werH6IXSUMwt1Zh_cOLOPSwTU,42437
26
+ sage/combinat/designs/all.py,sha256=z1avRgBKp3Gu_OhxVMFYtxWoXCBOcFd_t5-C1JcoAkw,2015
27
+ sage/combinat/designs/bibd.py,sha256=fB_aPra3Cbr4uqef4vLN1sIKJ9yXn-teFGMOzrkRpiw,59071
28
+ sage/combinat/designs/block_design.py,sha256=PHZG5Q9egUb7PwVnX2MQq6UPATxZPp5zq_VpJzWLAxU,38165
29
+ sage/combinat/designs/covering_array.py,sha256=SC7dwTzNt4lYJk_FKRUt_EsaOYjFRXMJus2i8NKGP84,9600
30
+ sage/combinat/designs/covering_design.py,sha256=GhpSmZALYIwSjSx2oEOxxXhLemJCaKTrIGjZS0xj6AI,17297
31
+ sage/combinat/designs/database.py,sha256=0sfODA8sYjemLejPQNZnQqj_eIgyPuLyTsNWw495w4Q,242955
32
+ sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
33
+ sage/combinat/designs/designs_pyx.cpython-310-aarch64-linux-gnu.so,sha256=Ik34g55_M--tsV42E7ogfLcAA5ivwPlxoeqX1bwKo5w,1380097
34
+ sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
35
+ sage/combinat/designs/designs_pyx.pyx,sha256=_unJWxusmZVUZ5SPiTtgOCYZmhWTFqptLb3MOz37ND0,37170
36
+ sage/combinat/designs/difference_family.py,sha256=0fhKdWJVL0uErG5BwLfJKt2cDgF8gHIkudLtF6So1rI,155391
37
+ sage/combinat/designs/difference_matrices.py,sha256=H1gvPjsH890ASH66zSJj36yiFMIU_C40xYZA609eawE,8610
38
+ sage/combinat/designs/evenly_distributed_sets.cpython-310-aarch64-linux-gnu.so,sha256=skut79H-7BguqAoKqySk59q4FRh0Z-RK_2WLRu-ecWY,760464
39
+ sage/combinat/designs/evenly_distributed_sets.pyx,sha256=_ExpH2ImCLYhXG4aovPXKHGa8XMKYlILw-r5Iv1Yr5E,25548
40
+ sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
41
+ sage/combinat/designs/gen_quadrangles_with_spread.cpython-310-aarch64-linux-gnu.so,sha256=wL5R366ZJiaiOSlshVE5f3AB6ckZl5lznZjY-6CSm1Y,672944
42
+ sage/combinat/designs/gen_quadrangles_with_spread.pyx,sha256=oE049xlfXkX_ly-WpQZnPw2cNXYDueHeuRJ69bfTbkQ,10767
43
+ sage/combinat/designs/group_divisible_designs.py,sha256=U8YLCTUbbsdmWH8aiKqxWHv3AFNHqmCh1eoVFELIch4,13037
44
+ sage/combinat/designs/incidence_structures.py,sha256=-a1Ub9q_91055qr-Ns3CuQduJvVmVqja2tBbMRu0u4Q,89619
45
+ sage/combinat/designs/latin_squares.py,sha256=R8tl7zoIGvbxrQdoRMoeW9eF5xeq0m41eZCNwg0i-7w,23159
46
+ sage/combinat/designs/orthogonal_arrays.py,sha256=_F7d167KuXhNPoatn_aHQXnxBY6EELW_FlYQ_c1RyIk,82598
47
+ sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
48
+ sage/combinat/designs/orthogonal_arrays_find_recursive.cpython-310-aarch64-linux-gnu.so,sha256=zFUeyzygzkf39DSmJHX_01BlDp_OArIaZbx0hIGZKFY,1001248
49
+ sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=NMqnHcUCSURto_AnwjkXuDc298lLF0m0b0uObekmG0g,34281
50
+ sage/combinat/designs/resolvable_bibd.py,sha256=WzDQ_n-_yKX-6YXYbkP5yIrXnU-UW_Mo0I7Mg6zGbyA,30498
51
+ sage/combinat/designs/steiner_quadruple_systems.py,sha256=-vnODm9iybM9_x36oDOFMZyu_kMaMTZWYbzcWAvaG0E,68601
52
+ sage/combinat/designs/subhypergraph_search.cpython-310-aarch64-linux-gnu.so,sha256=40oQUY9T3wN1FWN-ewQn-uIdWpG12PPKMRXT4kmBaoo,571856
53
+ sage/combinat/designs/subhypergraph_search.pyx,sha256=EfLrVGZNDSiVgeGNohlO09f0wdqPh6XwQHCrHNgqmng,18146
54
+ sage/combinat/designs/twographs.py,sha256=gUba7-nivoQpPrPgHMD7UshhY9Q7do9GXylLb_U_xC8,11230
55
+ sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
56
+ sage/combinat/posets/bubble_shuffle.py,sha256=6EutFGs0dMvjN7f51WAefYRLBRLc1enZ-N2Offx74M0,7485
57
+ sage/combinat/posets/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
58
+ sage/combinat/posets/d_complete.py,sha256=3k1llRG7zIgKmvy-gJ6_A2liDvjTiC04OX_vOdmzoUU,6611
59
+ sage/combinat/posets/elements.py,sha256=IgixRtTMTRKz3nGJGcYtBwucK22b3I5xy84ephRjpVE,7982
60
+ sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
61
+ sage/combinat/posets/hasse_cython.cpython-310-aarch64-linux-gnu.so,sha256=3LWzyu5-wLFcLsevWzmCAan62olxPRFmaBrnHj93_e8,652272
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-310-aarch64-linux-gnu.so,sha256=COsu1TkVO-9_uGBSQQ1QW0siKrSgholKAol-J_Bez1Y,635136
68
+ sage/combinat/posets/linear_extension_iterator.pyx,sha256=1DVxfIsMvtsPGjOi3SUjWtVKFKXQfnk_UXKtmsTpQl4,9272
69
+ sage/combinat/posets/linear_extensions.py,sha256=qFivvSYmOOyUdYj_uLyPMvtIP8i5Nl9MpFKsFaSuiTA,41635
70
+ sage/combinat/posets/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
71
+ sage/combinat/posets/moebius_algebra.py,sha256=FZY0OqDJd_QBWGzZJpCRk3573wlJBBXU6Cl1TxJt89s,26399
72
+ sage/combinat/posets/poset_examples.py,sha256=GSscfCvu0AbxFrwAMMVgSPoZDAg_PLmaemKUjvulRyw,78924
73
+ sage/combinat/posets/posets.py,sha256=geox_irhoOkz96gNyKD-fFzQZjmHojrks4bpBGE7FFI,340260
74
+ sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
75
+ sage/databases/knotinfo_db.py,sha256=ijt1goKI2Z_Yst6XTbmH9511cWKZWSd3HlGMO69ugqQ,54189
76
+ sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
77
+ sage/ext_data/graphs/graph_plot_js.html,sha256=OmGUTusnlNQgxC3rb2q_1FR8flYvLT6DNfY0zjY_0_0,9811
78
+ sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
79
+ sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
80
+ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
81
+ sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
82
+ sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
83
+ sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
84
+ sage/graphs/asteroidal_triples.cpython-310-aarch64-linux-gnu.so,sha256=zMzoBTADabWZYgQzAASr-YJgpMsswqr4OtY6jRPn2z0,396177
85
+ sage/graphs/asteroidal_triples.pyx,sha256=kslBS2OY3d7F0k54vb4nvb1pKH4UfvXv0AssHf9U61Y,11269
86
+ sage/graphs/bipartite_graph.py,sha256=GsQhkJMclM0TCT8ifOaPTjweIwA4yX6rcD4yUoLgLXg,105820
87
+ sage/graphs/centrality.cpython-310-aarch64-linux-gnu.so,sha256=ZFbji85jH4GBa9M3M0IH19X-F8Laax_1UKFi1p_bAmI,1052137
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-310-aarch64-linux-gnu.so,sha256=kYLbY62_kTtN0fuLaCjvHSwDiUK8p4p3-pl9HZvRNCA,1314321
91
+ sage/graphs/comparability.pyx,sha256=txNR4i4nVxETeRuITmZSnF41Bcu5Lc3-9p_Y14U5Ai4,32292
92
+ sage/graphs/connectivity.cpython-310-aarch64-linux-gnu.so,sha256=0ih-8HcjG3xXwRJF6clWdFBE0e46NhuqtFp3KM_IZBs,4436224
93
+ sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
94
+ sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
95
+ sage/graphs/convexity_properties.cpython-310-aarch64-linux-gnu.so,sha256=7_zxed4Jk61Rfehxrh8VVBk5dCAdRpYIvE2sRDap2ms,855713
96
+ sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
97
+ sage/graphs/convexity_properties.pyx,sha256=zHhpsRj6qi2oLxoUplnzDDaQL0nYYtot6q6GC1l-8Ls,31137
98
+ sage/graphs/digraph.py,sha256=Uj2hmkx-k27D2DyNAAQ-wmKirOIP-0Hyg_8g_CMFLIE,197705
99
+ sage/graphs/digraph_generators.py,sha256=GCgmzNzeNrAetGPavREZnRejf3yciY-ycIbOQkqrTYw,79777
100
+ sage/graphs/distances_all_pairs.cpython-310-aarch64-linux-gnu.so,sha256=sRZFdmLvtsec93puFkaFXCINgLQfAKWtb7qIXvvQvcg,1511113
101
+ sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
102
+ sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
103
+ sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
104
+ sage/graphs/dot2tex_utils.py,sha256=lWUucZKdFsTltrGPeqwHhvbdScFEMltjtTU6C4p2x_E,3173
105
+ sage/graphs/edge_connectivity.cpython-310-aarch64-linux-gnu.so,sha256=j_VoR8jihzvj1yIYdvge59mDA9pmFrbQ_0zogzgGcDI,925609
106
+ sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
107
+ sage/graphs/generic_graph.py,sha256=7ekP4UGQk12jfpCVDfumhFwo9Njuqkot28Zea_L-SOA,1114121
108
+ sage/graphs/generic_graph_pyx.cpython-310-aarch64-linux-gnu.so,sha256=nBkF7LZ9BmD-xK9w6Z7YR-8KC13G0UsYoRouskySDGY,1708217
109
+ sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
110
+ sage/graphs/generic_graph_pyx.pyx,sha256=i5gISutTP3P_Fc5LInP-fDJX_U1nFRocdXOt114lmIU,60287
111
+ sage/graphs/genus.cpython-310-aarch64-linux-gnu.so,sha256=zDzdiewH2kzjfEue5tS2kIBiQOgDYc1tMjuR1wuByqE,494224
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-310-aarch64-linux-gnu.so,sha256=k23kM7_JPg0TSi9koKr7mN6YMGl1wsd0w2jsUNjIHMw,4395449
115
+ sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
116
+ sage/graphs/graph_database.py,sha256=TxWGmR7ueILurw77Xk3Uz54gsbjZ00H-_jhbDmNf3m8,51558
117
+ sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
118
+ sage/graphs/graph_generators.py,sha256=Z7-IqimRFQ_HFJepTs_F-f6noWZkBDCUtMcoDHmHfPg,134580
119
+ sage/graphs/graph_generators_pyx.cpython-310-aarch64-linux-gnu.so,sha256=MeYJFoB9l0moCVfvmfL-9zQUccQCAusmAsrClWEfqmI,453720
120
+ sage/graphs/graph_generators_pyx.pyx,sha256=-TP5O6mDg7clGrKcDLUzcFsLYuw8VGGhPvLV56I9wBA,3214
121
+ sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
122
+ sage/graphs/graph_latex.py,sha256=_zJtj4YXZ0wh8wgL2Nk9-6UqKwd8joEqjfWEusX81Jc,99136
123
+ sage/graphs/graph_list.py,sha256=z7EoLhCRkH5F7acA2r28DzDkLw08xODgOLXl8f6Rf80,14439
124
+ sage/graphs/graph_plot.py,sha256=4a3j1oUY-TAfNGDJpqONvQKQEFoqDUUN56fJXym80AY,70634
125
+ sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
126
+ sage/graphs/hyperbolicity.cpython-310-aarch64-linux-gnu.so,sha256=RRfk2omvPe487BQ9y_AdbXK4B30MvEDXNx4CvfFiblc,1380129
127
+ sage/graphs/hyperbolicity.pyx,sha256=qzLZkEAC2zDrksEfqL2wqFHcTWzDsQpGxWWH5Gnke_o,64503
128
+ sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
129
+ sage/graphs/independent_sets.cpython-310-aarch64-linux-gnu.so,sha256=IT3vRPFXCziDRG8GfEWsdnwgtjZYfl5-1rY-g_Zw7Fc,593457
130
+ sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
131
+ sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
132
+ sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
133
+ sage/graphs/isoperimetric_inequalities.cpython-310-aarch64-linux-gnu.so,sha256=yLTw3Peo-1ppBS53r63Lt1_aJ8ndQ9fWOCrUm_nJUTQ,592873
134
+ sage/graphs/isoperimetric_inequalities.pyx,sha256=37Xx8CbEFdLANoztQ13JzxZXrf5L1uIjqUYtCyTDOyk,17019
135
+ sage/graphs/line_graph.cpython-310-aarch64-linux-gnu.so,sha256=to03XGJ7jrd122D1m-_ZTMYdHZZ0R4XEy6MjALNz39Q,1145752
136
+ sage/graphs/line_graph.pyx,sha256=p_qn8oH7NCwPlmDBD01HO24Gfhsbtfclzng-RJcRHqM,27749
137
+ sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
138
+ sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
139
+ sage/graphs/matching_covered_graph.py,sha256=_6K6V7RTu-bfAqsbR9l_2qsKZqZ6JFWO9MsC7b0jG4g,144211
140
+ sage/graphs/orientations.py,sha256=4PBJOH_ybCyF2uqbknU3QtPdiCOMqbMvN-rboqBif_8,53303
141
+ sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
142
+ sage/graphs/path_enumeration.cpython-310-aarch64-linux-gnu.so,sha256=djYmmaVE8ZE8hxuvYoSDCYzVi3fydCH8SjIqfOKV9wE,2494441
143
+ sage/graphs/path_enumeration.pyx,sha256=WAQQiHIroIvpSfWdGvHjuC7tPdEiCX5DWxidHveiXUk,90408
144
+ sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
145
+ sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
146
+ sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
147
+ sage/graphs/spanning_tree.cpython-310-aarch64-linux-gnu.so,sha256=PZ3Nirp5rLjqv1x_Szkrm3mC6U2cvdsrQRbrZt8RuHw,1648872
148
+ sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
149
+ sage/graphs/strongly_regular_db.cpython-310-aarch64-linux-gnu.so,sha256=qYyFTzwWFR5k5JSy_AYYhUY4MMbpRhTLvUhW0pr4tEs,6076632
150
+ sage/graphs/strongly_regular_db.pyx,sha256=VNa9LXXy8EV_k9QBFM_T7jKnxAcymeBGa6eaVbek19A,132599
151
+ sage/graphs/traversals.cpython-310-aarch64-linux-gnu.so,sha256=10L1QBzNwmkmi8tYceGzaWIRLcffEPBQfzVQ22AVrJs,1577273
152
+ sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
153
+ sage/graphs/traversals.pyx,sha256=UX2ttDY92aCJPXieOB-VD3dYLfR75gxjLmD1JLBO_z0,65959
154
+ sage/graphs/trees.cpython-310-aarch64-linux-gnu.so,sha256=u3H8RGvg3DeWMXYvOhJafA3aNsIr1qsN2vjT7_CbQac,230056
155
+ sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
156
+ sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
157
+ sage/graphs/tutte_polynomial.py,sha256=DNn4VjxZ4dogFM4WhWD1C3jLXl_FRSwxjXRbk23Ah2k,21854
158
+ sage/graphs/views.cpython-310-aarch64-linux-gnu.so,sha256=QyzYUWP3kLn0XfFsBziyvu6KWX5Rl9co7KMPKM1PoQk,777824
159
+ sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
160
+ sage/graphs/weakly_chordal.cpython-310-aarch64-linux-gnu.so,sha256=jetuZFA9-kdrZ1hkc8wej_3SEjdtZYe6uishN0Wgezk,655800
161
+ sage/graphs/weakly_chordal.pyx,sha256=quFw1k-AAmJ3BJs7Wm0YSUZgZbPCMsEvgUZ8oqiFoc0,21563
162
+ sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
163
+ sage/graphs/base/boost_graph.cpython-310-aarch64-linux-gnu.so,sha256=KqXqVFo2lXeszHtB6rSaMhWvzSLk3cFnvgDfLPifB50,12617249
164
+ sage/graphs/base/boost_graph.pxd,sha256=5Z4FgnxAaZYXOizWEfsxE1D4K2hJTcdhjXxUFJ9rhA0,3654
165
+ sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
166
+ sage/graphs/base/c_graph.cpython-310-aarch64-linux-gnu.so,sha256=F-N9X72fGUFc6SVDT8imBenMHC_L6F5qyHRufRXY6wg,3545905
167
+ sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
168
+ sage/graphs/base/c_graph.pyx,sha256=-3-_WEwS5G_jr3gx3f44fSj5zp_JOfK3po-Nu7IVRa8,179658
169
+ sage/graphs/base/dense_graph.cpython-310-aarch64-linux-gnu.so,sha256=9efb-17TJNNAh7FM93oT4-H1tE82sWCN7zMIiCfSGjo,789833
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-310-aarch64-linux-gnu.so,sha256=JNT_yddz6nNYSUpIBeCGl5L7J-hqr8_N4KXtHlcQ_dQ,602304
173
+ sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
174
+ sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
175
+ sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
176
+ sage/graphs/base/sparse_graph.cpython-310-aarch64-linux-gnu.so,sha256=orxkmf4yfbAvavnLD2w4qrG4J5tMbJnTDJM58YIxIAk,1117889
177
+ sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
178
+ sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
179
+ sage/graphs/base/static_dense_graph.cpython-310-aarch64-linux-gnu.so,sha256=nwGljWsq31_idcahvGxV4G7ayRcOJDNFUUgpTdK4sPs,1314513
180
+ sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
181
+ sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
182
+ sage/graphs/base/static_sparse_backend.cpython-310-aarch64-linux-gnu.so,sha256=GxGOFCN97kq2m1mFW5oQDqy6Iclx_Xdti5afBV9XVZY,1433280
183
+ sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
184
+ sage/graphs/base/static_sparse_backend.pyx,sha256=eKzp6rY9lZD9dX26QwRFk1ojyLTNPywSdPR6tKbdN4o,55396
185
+ sage/graphs/base/static_sparse_graph.cpython-310-aarch64-linux-gnu.so,sha256=8f7L63dcek_vzMpj0ssKBzHf_Et6Xb7JhNx6m5fngyM,1052849
186
+ sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
187
+ sage/graphs/base/static_sparse_graph.pyx,sha256=79ckrFBDUnAxrn_VAXOHGtCPQnO3OD0KSczE7xas4ls,52381
188
+ sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
189
+ sage/graphs/generators/basic.py,sha256=0KtJ29r3lQVXVENR2ceX9SZIQOkM-8yNwhWdrTHG1dM,61442
190
+ sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
191
+ sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
192
+ sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
193
+ sage/graphs/generators/distance_regular.cpython-310-aarch64-linux-gnu.so,sha256=-Aa7HPTvvQh9zfRdJhugl8CfZ4ZVHC_IUJBwLVfJaow,5080744
194
+ sage/graphs/generators/distance_regular.pyx,sha256=dIO6D98FdTS3pk9ZhdXww-Q7WlmTKthcIgRbpDQXPTc,96145
195
+ sage/graphs/generators/families.py,sha256=mw4nwFZRzNacdA5xHrRjmTvZZvTW2k0rd-NlN4sCYJs,164719
196
+ sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
197
+ sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
198
+ sage/graphs/generators/random.py,sha256=lDQxB_YZ6Gwo-_LrqXx4hXC1H2AsP_Tsa0Q8-p44A-8,92227
199
+ sage/graphs/generators/smallgraphs.py,sha256=y441EzXwvSBnJ-qwp4lbZvlS19FfoC8tV4MO4H_HEpA,202063
200
+ sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
201
+ sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
202
+ sage/graphs/graph_decompositions/bandwidth.cpython-310-aarch64-linux-gnu.so,sha256=bCW9WhgcX6NPI_RrRx7N8WoRPn-4ZnbbyJvoPbh5008,324736
203
+ sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
204
+ sage/graphs/graph_decompositions/clique_separators.cpython-310-aarch64-linux-gnu.so,sha256=J2A4VbSd9rcIkar8p3fG5TI-Yarxfs1YlGtj_KWzf04,1118401
205
+ sage/graphs/graph_decompositions/clique_separators.pyx,sha256=q2Ep-OTAN0u53tg4USepRiw9uOm61XRbsfMKAkbJouk,23690
206
+ sage/graphs/graph_decompositions/cutwidth.cpython-310-aarch64-linux-gnu.so,sha256=LrUjz6e9ExTsvVQ5knb8mYeol_CjSPd62LJ5dXPkYG0,928088
207
+ sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
208
+ sage/graphs/graph_decompositions/fast_digraph.cpython-310-aarch64-linux-gnu.so,sha256=Cz7DwtNUtfrVKQU16lVaosAxESCH5YmU2Ex9cY5CSqU,303088
209
+ sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
210
+ sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=02nMqhb4MvzaJFRGSy4ZefAvhChZsMJBlCTaOtOS3Es,7388
211
+ sage/graphs/graph_decompositions/graph_products.cpython-310-aarch64-linux-gnu.so,sha256=rv2KAXBTpxtFCJSFF72MIs8IMdO-GSpPotXckBSOn2Q,923448
212
+ sage/graphs/graph_decompositions/graph_products.pyx,sha256=HcTfcex9hrwlcTzBHWMGDonGEUDGGj8jkma0devn5wU,19014
213
+ sage/graphs/graph_decompositions/modular_decomposition.cpython-310-aarch64-linux-gnu.so,sha256=56KBJD8ToM9x11UM883QVsD8KKMXi2cO5S3NOLaszDs,3546257
214
+ sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
215
+ sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
216
+ sage/graphs/graph_decompositions/slice_decomposition.cpython-310-aarch64-linux-gnu.so,sha256=WrC_m55OcTaz3fJUGRNFg5JMw1YrryI02EHN6SqXvYM,1517585
217
+ sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
218
+ sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=oBp4OVgykHatrhiSLgscsq5B5lUINmCierb3sWpO79w,40359
219
+ sage/graphs/graph_decompositions/tree_decomposition.cpython-310-aarch64-linux-gnu.so,sha256=J1k-ZvMTMBjbQHmV7vezrHIQyAxTa_RLZV5pEtLer-0,2680880
220
+ sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
221
+ sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
222
+ sage/graphs/graph_decompositions/vertex_separation.cpython-310-aarch64-linux-gnu.so,sha256=fxfGUcjlwy-dpHgfA2XJgw5RvPEkezRk9LJAB4Rzlx8,1642361
223
+ sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
224
+ sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
225
+ sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
226
+ sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
227
+ sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
228
+ sage/groups/perm_gps/partn_ref/refinement_graphs.cpython-310-aarch64-linux-gnu.so,sha256=sXdMvQ508vb2kbmzdcbeEInHvUaDxhfaisyxtlH8lTo,1641985
229
+ sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
230
+ sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
231
+ sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
232
+ sage/knots/free_knotinfo_monoid.py,sha256=lKx7Z_M4yHt0om_fDYlkAzxGCUycD4yFsrrmKhm5xNM,19714
233
+ sage/knots/gauss_code.py,sha256=XPReZ4_t4FUiV6Nza_8MaCQ-05CuOffdMmk2ckm98jc,8978
234
+ sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
235
+ sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
236
+ sage/knots/knotinfo.py,sha256=4Vkm0-gWRrpnDplo5udTUEUBpv2hDLYTyG2qIFC_Wus,102919
237
+ sage/knots/link.py,sha256=hU_H43oGYkWMDG4D2xJJawdv7RfXbFYcNiFmSpalhho,179401
238
+ sage/sandpiles/all.py,sha256=GxDiTE98htXEil5sR7gdVNgIh8eCu6q1IyxjHPOLyx8,565
239
+ sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,5595
240
+ sage/sandpiles/sandpile.py,sha256=yeO4-dNtmYd5LQV86K5XyMkxYVK3w_rnvBudZNTzTpg,211694
241
+ sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
242
+ sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
243
+ sage/topology/cubical_complex.py,sha256=xceZuOdl1u4ztlp1tJF2tQX58nSSIH5ylelYpZVBECs,70973
244
+ sage/topology/delta_complex.py,sha256=qyIID-0j35XBclNbaM1jEdQQwjtf7kwaOVgbofaFL0E,74587
245
+ sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
246
+ sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
247
+ sage/topology/simplicial_complex.py,sha256=IcEqOQAUvfj2yvld8BZwuWMpt_wlGvzyvVwA5Rl74mo,196261
248
+ sage/topology/simplicial_complex_catalog.py,sha256=GjQMVaPprLhooPWTetGlb27hL-t8sMIssECeb2ESdi0,4722
249
+ sage/topology/simplicial_complex_examples.py,sha256=68Ul_u-OiKNgQooX6uTVKuvXv_w3-yokshrBf-ytF58,70188
250
+ sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
251
+ sage/topology/simplicial_complex_morphism.py,sha256=JZc3bVCAwibwccMzL0XdIi8imVTlnkDvd0R-nFBHHCQ,32596
252
+ sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz95c,152633
253
+ sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wmpYDzlumod0,2172
254
+ sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
255
+ sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
256
+ sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
257
+ passagemath_graphs-10.6.1rc1.dist-info/METADATA,sha256=xqtJqsZzfEgzOD7JFwL3qldHqzSyBOM3DQWQAVFAZOU,13978
258
+ passagemath_graphs-10.6.1rc1.dist-info/WHEEL,sha256=qvx19vD_zYvGQFVzkH0wrT4tVIal9wOVogYGQfy9ymw,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,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-musllinux_1_2_aarch64
5
+
@@ -0,0 +1,39 @@
1
+ # sage_setup: distribution = sagemath-graphs
2
+ r"""
3
+ Top level of the distribution package sagemath-graphs
4
+
5
+ This distribution makes the following feature available::
6
+
7
+ sage: from sage.features.sagemath import *
8
+ sage: sage__graphs().is_present()
9
+ FeatureTestResult('sage.graphs', True)
10
+ """
11
+
12
+ from .all__sagemath_categories import *
13
+
14
+ try: # extra
15
+ from sage.all__sagemath_gap import *
16
+ except ImportError:
17
+ pass
18
+
19
+ try: # extra
20
+ from sage.all__sagemath_modules import *
21
+ except ImportError:
22
+ pass
23
+
24
+ try: # extra
25
+ from sage.all__sagemath_polyhedra import *
26
+ except ImportError:
27
+ pass
28
+
29
+ from sage.graphs.all import *
30
+
31
+ from sage.topology.all import *
32
+
33
+ from sage.combinat.all__sagemath_graphs import *
34
+
35
+ from sage.databases.all__sagemath_graphs import *
36
+
37
+ from sage.sandpiles.all import *
38
+
39
+ from sage.knots.all import *