passagemath-graphs 10.6.1rc5__cp310-cp310-win_amd64.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.

Potentially problematic release.


This version of passagemath-graphs might be problematic. Click here for more details.

Files changed (260) hide show
  1. passagemath_graphs-10.6.1rc5.dist-info/DELVEWHEEL +2 -0
  2. passagemath_graphs-10.6.1rc5.dist-info/METADATA +292 -0
  3. passagemath_graphs-10.6.1rc5.dist-info/RECORD +260 -0
  4. passagemath_graphs-10.6.1rc5.dist-info/WHEEL +5 -0
  5. passagemath_graphs-10.6.1rc5.dist-info/top_level.txt +2 -0
  6. passagemath_graphs.libs/libgmp-10-364adb6a4593cd5c4096780a0aeae266.dll +0 -0
  7. passagemath_graphs.libs/msvcp140-e032579cfb5279b5c4643c1c73397ccf.dll +0 -0
  8. sage/all__sagemath_graphs.py +49 -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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  89. sage/graphs/asteroidal_triples.pyx +320 -0
  90. sage/graphs/base/all.py +1 -0
  91. sage/graphs/base/boost_graph.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  118. sage/graphs/centrality.pyx +1038 -0
  119. sage/graphs/cographs.py +519 -0
  120. sage/graphs/comparability.cp310-win_amd64.pyd +0 -0
  121. sage/graphs/comparability.pyx +851 -0
  122. sage/graphs/connectivity.cp310-win_amd64.pyd +0 -0
  123. sage/graphs/connectivity.pxd +157 -0
  124. sage/graphs/connectivity.pyx +4813 -0
  125. sage/graphs/convexity_properties.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  152. sage/graphs/generic_graph_pyx.pxd +34 -0
  153. sage/graphs/generic_graph_pyx.pyx +1673 -0
  154. sage/graphs/genus.cp310-win_amd64.pyd +0 -0
  155. sage/graphs/genus.pyx +622 -0
  156. sage/graphs/graph.py +9645 -0
  157. sage/graphs/graph_coloring.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  162. sage/graphs/graph_decompositions/bandwidth.pyx +428 -0
  163. sage/graphs/graph_decompositions/clique_separators.cp310-win_amd64.pyd +0 -0
  164. sage/graphs/graph_decompositions/clique_separators.pyx +616 -0
  165. sage/graphs/graph_decompositions/cutwidth.cp310-win_amd64.pyd +0 -0
  166. sage/graphs/graph_decompositions/cutwidth.pyx +753 -0
  167. sage/graphs/graph_decompositions/fast_digraph.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  171. sage/graphs/graph_decompositions/graph_products.pyx +508 -0
  172. sage/graphs/graph_decompositions/modular_decomposition.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  194. sage/graphs/hyperbolicity.pyx +1704 -0
  195. sage/graphs/hypergraph_generators.py +364 -0
  196. sage/graphs/independent_sets.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  201. sage/graphs/isoperimetric_inequalities.pyx +489 -0
  202. sage/graphs/line_graph.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  215. sage/graphs/spanning_tree.pyx +1457 -0
  216. sage/graphs/strongly_regular_db.cp310-win_amd64.pyd +0 -0
  217. sage/graphs/strongly_regular_db.pyx +3340 -0
  218. sage/graphs/traversals.cp310-win_amd64.pyd +0 -0
  219. sage/graphs/traversals.pxd +9 -0
  220. sage/graphs/traversals.pyx +1872 -0
  221. sage/graphs/trees.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +0 -0
  226. sage/graphs/views.pyx +794 -0
  227. sage/graphs/weakly_chordal.cp310-win_amd64.pyd +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.cp310-win_amd64.pyd +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,2 @@
1
+ Version: 1.10.1
2
+ Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-tgxp4d1d\\cp310-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-vv', '--custom-patch', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-tgxp4d1d\\cp310-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-tgxp4d1d\\cp310-win_amd64\\built_wheel\\passagemath_graphs-10.6.1rc5-cp310-cp310-win_amd64.whl']
@@ -0,0 +1,292 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-graphs
3
+ Version: 10.6.1rc5
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.1rc5
34
+ Requires-Dist: passagemath-environment==10.6.1rc5
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-10.6.1rc5.dist-info/DELVEWHEEL,sha256=SxPJLJBG7-LwYRxwmP0u10pD-v55gXjqg8S9-tlLauE,440
2
+ passagemath_graphs-10.6.1rc5.dist-info/METADATA,sha256=XzotewCNqEBupuGbDsEOI6R5tqYlVHey_HAqNDCyB-Q,14270
3
+ passagemath_graphs-10.6.1rc5.dist-info/RECORD,,
4
+ passagemath_graphs-10.6.1rc5.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
5
+ passagemath_graphs-10.6.1rc5.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
6
+ passagemath_graphs.libs/libgmp-10-364adb6a4593cd5c4096780a0aeae266.dll,sha256=gwuun5uMYSzTDJksWlUDfX21xGFdkbHyqQZRa8c-XC0,3004991
7
+ passagemath_graphs.libs/msvcp140-e032579cfb5279b5c4643c1c73397ccf.dll,sha256=pMIim9wqKmMKzcCVtNhgCOXD47x3cxdDVPPaT1vrnN4,575056
8
+ sage/all__sagemath_graphs.py,sha256=E2W5gdnyHpMYMLlAWDpFFgZANIy_or6YxZTFLPH6KQU,1158
9
+ sage/combinat/abstract_tree.py,sha256=3KcwC0HaEmFz8O_dR-kvy2xiMp9G64v5SEC4zm7Szqg,94266
10
+ sage/combinat/all__sagemath_graphs.py,sha256=zAse3aKr_WJaFWDL93rOM8mNuHUvs_hs0gJsoxfbqiQ,1329
11
+ sage/combinat/binary_tree.py,sha256=BnjdPKrHRxtJrlKmUSHqrDDQ0UvQbm8onuh0IHpSGV0,183189
12
+ sage/combinat/finite_state_machine.py,sha256=rngcy9hczCxVkhNQvK6ho3A7xosqi9bv1tUJaLJR2gU,574657
13
+ sage/combinat/finite_state_machine_generators.py,sha256=YqeqpPwWpra88B4GW5IcA2rtbXpbeT9uGxREegTJFdM,73186
14
+ sage/combinat/graph_path.py,sha256=enqb7IFVXGZ-roxtMJRTaTmCDY3qr_kkjC-03qg0p5s,13122
15
+ sage/combinat/interval_posets.py,sha256=n1EpZC2XnwvRAPiG-fA5c66krNlO2V-kox9LwgawHu0,147095
16
+ sage/combinat/nu_tamari_lattice.py,sha256=DIZ3Y-hyxvATa_NZDJKv3mzlUcjKVSS7N_drsJ9LDzY,9457
17
+ sage/combinat/ordered_tree.py,sha256=Q08B55_8JZPxiymIAh5bbhiepvWtjj3T96owcR0mLfw,47856
18
+ sage/combinat/rooted_tree.py,sha256=HwZ6OlSwROTXZoZsgPEd4Hz9VqYPMsZYXdrO-PbcT4s,34211
19
+ sage/combinat/shard_order.py,sha256=hULsSgJS39xMwEe8UrNCkoTZii41V-cROxE0PAvsE8k,8060
20
+ sage/combinat/tamari_lattices.py,sha256=1K261Ntyt3uZqkFVVTC_PVyimDFomOeJeEW3UAwqpQc,11061
21
+ sage/combinat/yang_baxter_graph.py,sha256=BGcGaIfAnOzW4g9tCg6uDpKrHHeG-Q5z74TBQa0JYhc,33932
22
+ sage/combinat/cluster_algebra_quiver/all.py,sha256=Kn96IeqXORbsHL0NSlKT3mKDtcM2biPzgxNrab-BiXY,831
23
+ sage/combinat/cluster_algebra_quiver/cluster_seed.py,sha256=8WyDGr-i77io5pC5xSCdMP-0ssdWxLZKyKVTN6eMx-Y,197656
24
+ sage/combinat/cluster_algebra_quiver/interact.py,sha256=J-Ka38Eb540DIzet6XP_7qdYh1Bfz-xucAA8YL1BLO0,4250
25
+ sage/combinat/cluster_algebra_quiver/mutation_class.py,sha256=cv4g59ZLppsG55L2t5ec0TviJ0yuCqozpakIBGFAUUQ,24134
26
+ sage/combinat/cluster_algebra_quiver/mutation_type.py,sha256=1aVYcY7dOakwBueA3E3Tu7PImQNyw3TiSw_7s5lNA_M,76256
27
+ sage/combinat/cluster_algebra_quiver/quiver.py,sha256=mDBNojdFE00O_61QeHzwsWb1Zxdv9gWs3cVsXM-zzYY,86160
28
+ sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py,sha256=24QBRRseafrBvShSJC_ilP7nY6QwDX0U1GkMDxFhoBA,92005
29
+ sage/combinat/designs/all.py,sha256=z1avRgBKp3Gu_OhxVMFYtxWoXCBOcFd_t5-C1JcoAkw,2015
30
+ sage/combinat/designs/bibd.py,sha256=fB_aPra3Cbr4uqef4vLN1sIKJ9yXn-teFGMOzrkRpiw,59071
31
+ sage/combinat/designs/block_design.py,sha256=PHZG5Q9egUb7PwVnX2MQq6UPATxZPp5zq_VpJzWLAxU,38165
32
+ sage/combinat/designs/covering_array.py,sha256=SC7dwTzNt4lYJk_FKRUt_EsaOYjFRXMJus2i8NKGP84,9600
33
+ sage/combinat/designs/covering_design.py,sha256=GhpSmZALYIwSjSx2oEOxxXhLemJCaKTrIGjZS0xj6AI,17297
34
+ sage/combinat/designs/database.py,sha256=0sfODA8sYjemLejPQNZnQqj_eIgyPuLyTsNWw495w4Q,242955
35
+ sage/combinat/designs/designs_pyx.cp310-win_amd64.pyd,sha256=uAJGEFaZb4QmY_4f5AoLiYq89DzLvNSC5bgpOYVsSCY,162816
36
+ sage/combinat/designs/designs_pyx.pxd,sha256=d78q7gQf58kZirLF1TXxNjLi50YYo-EIUM2e4kXS5C8,679
37
+ sage/combinat/designs/designs_pyx.pyx,sha256=_unJWxusmZVUZ5SPiTtgOCYZmhWTFqptLb3MOz37ND0,37170
38
+ sage/combinat/designs/design_catalog.py,sha256=u9FpOxLuNuEcRxOU3C9P_bw-OGqQL0qgGsjUFFx7Icc,5095
39
+ sage/combinat/designs/difference_family.py,sha256=0fhKdWJVL0uErG5BwLfJKt2cDgF8gHIkudLtF6So1rI,155391
40
+ sage/combinat/designs/difference_matrices.py,sha256=H1gvPjsH890ASH66zSJj36yiFMIU_C40xYZA609eawE,8610
41
+ sage/combinat/designs/evenly_distributed_sets.cp310-win_amd64.pyd,sha256=WCJBa9d2V3UhegimgQZAS3gPRTKyWZSzpkobLpsPE6Q,109568
42
+ sage/combinat/designs/evenly_distributed_sets.pyx,sha256=_ExpH2ImCLYhXG4aovPXKHGa8XMKYlILw-r5Iv1Yr5E,25548
43
+ sage/combinat/designs/ext_rep.py,sha256=4t0xjnVqEyZUQn9L4JxvSt2wlhHJoY3Xz6uAP3L6_7g,34884
44
+ sage/combinat/designs/gen_quadrangles_with_spread.cp310-win_amd64.pyd,sha256=3glq5QdmNGx69vhg4tI4I6HtAzDUtCMEObIxZxGRH1w,85504
45
+ sage/combinat/designs/gen_quadrangles_with_spread.pyx,sha256=oE049xlfXkX_ly-WpQZnPw2cNXYDueHeuRJ69bfTbkQ,10767
46
+ sage/combinat/designs/group_divisible_designs.py,sha256=U8YLCTUbbsdmWH8aiKqxWHv3AFNHqmCh1eoVFELIch4,13037
47
+ sage/combinat/designs/incidence_structures.py,sha256=ki-yG_ebZenomRVE1zA-oQAKzGEAR0ObmaVFSEfHXFg,89645
48
+ sage/combinat/designs/latin_squares.py,sha256=R8tl7zoIGvbxrQdoRMoeW9eF5xeq0m41eZCNwg0i-7w,23159
49
+ sage/combinat/designs/MOLS_handbook_data.py,sha256=SOjglkjrMNtbttoKD5werH6IXSUMwt1Zh_cOLOPSwTU,42437
50
+ sage/combinat/designs/orthogonal_arrays.py,sha256=_F7d167KuXhNPoatn_aHQXnxBY6EELW_FlYQ_c1RyIk,82598
51
+ sage/combinat/designs/orthogonal_arrays_build_recursive.py,sha256=Ley_eOHwF1sOk9MukJDOM8KlPLT-JVdA7hqPz42Z_YU,70698
52
+ sage/combinat/designs/orthogonal_arrays_find_recursive.cp310-win_amd64.pyd,sha256=52aufZUdxhtdbZW2IVMkcGLDRY_aZC6YpuIQihOw4Jg,124928
53
+ sage/combinat/designs/orthogonal_arrays_find_recursive.pyx,sha256=NMqnHcUCSURto_AnwjkXuDc298lLF0m0b0uObekmG0g,34281
54
+ sage/combinat/designs/resolvable_bibd.py,sha256=WzDQ_n-_yKX-6YXYbkP5yIrXnU-UW_Mo0I7Mg6zGbyA,30498
55
+ sage/combinat/designs/steiner_quadruple_systems.py,sha256=-vnODm9iybM9_x36oDOFMZyu_kMaMTZWYbzcWAvaG0E,68601
56
+ sage/combinat/designs/subhypergraph_search.cp310-win_amd64.pyd,sha256=ikzp_0Qh5_FBQ02g0B2F8hRxGbkMzqPN_Po1EUj_MzA,70144
57
+ sage/combinat/designs/subhypergraph_search.pyx,sha256=EfLrVGZNDSiVgeGNohlO09f0wdqPh6XwQHCrHNgqmng,18146
58
+ sage/combinat/designs/twographs.py,sha256=gUba7-nivoQpPrPgHMD7UshhY9Q7do9GXylLb_U_xC8,11230
59
+ sage/combinat/posets/all.py,sha256=A-S_eIm6Io7aE5YjG_ETS9Fsam30I8xOIR56QG8hpMs,1438
60
+ sage/combinat/posets/bubble_shuffle.py,sha256=6EutFGs0dMvjN7f51WAefYRLBRLc1enZ-N2Offx74M0,7485
61
+ sage/combinat/posets/cartesian_product.py,sha256=_ZyRnB3-t3vQpaHjlXO-a_GHvCyQzxzH5FtLXIKbt88,16945
62
+ sage/combinat/posets/d_complete.py,sha256=3k1llRG7zIgKmvy-gJ6_A2liDvjTiC04OX_vOdmzoUU,6611
63
+ sage/combinat/posets/elements.py,sha256=IgixRtTMTRKz3nGJGcYtBwucK22b3I5xy84ephRjpVE,7982
64
+ sage/combinat/posets/forest.py,sha256=c-3aHa_yyTN2Zo7ddPv4GIxDCG3ebs7hmf3r99FG3kU,1017
65
+ sage/combinat/posets/hasse_cython.cp310-win_amd64.pyd,sha256=qan5ypDwUIvWXYgct1_E80sWILULt3Yqvn6k7mx-IY8,83456
66
+ sage/combinat/posets/hasse_cython.pyx,sha256=g8C4EGYMN0jl1xLhmeaMzbIIyvGujWT0W5UCT2Qje4g,5988
67
+ sage/combinat/posets/hasse_diagram.py,sha256=u-A0HrvEuLCUhZwBcTWyrLpDpM03pkpjAqtIuYrxIP4,133205
68
+ sage/combinat/posets/hochschild_lattice.py,sha256=wkrxQDkzGoAdhLU7YjiVlGHaoSXUxqwCDjmH-HE4uZQ,4667
69
+ sage/combinat/posets/incidence_algebras.py,sha256=v9QMrN1VW8T4vMfdrJpr4RULr0RlzCIPii0IaN0UVxU,25072
70
+ sage/combinat/posets/lattices.py,sha256=UMfTOqp45FQ35sf-F6LciPvva1Tb6P0mtc0cHG3fqXc,186721
71
+ sage/combinat/posets/linear_extensions.py,sha256=qFivvSYmOOyUdYj_uLyPMvtIP8i5Nl9MpFKsFaSuiTA,41635
72
+ sage/combinat/posets/linear_extension_iterator.cp310-win_amd64.pyd,sha256=HrigQDUmRd18lrQL-RtnNvgYAKUA_F1gdsvgAvxJslw,88576
73
+ sage/combinat/posets/linear_extension_iterator.pyx,sha256=1DVxfIsMvtsPGjOi3SUjWtVKFKXQfnk_UXKtmsTpQl4,9272
74
+ sage/combinat/posets/mobile.py,sha256=1Fzspx-afq66PO_5BTJoprp4GemROCPnZOacqZiJXI4,10558
75
+ sage/combinat/posets/moebius_algebra.py,sha256=FZY0OqDJd_QBWGzZJpCRk3573wlJBBXU6Cl1TxJt89s,26399
76
+ sage/combinat/posets/posets.py,sha256=geox_irhoOkz96gNyKD-fFzQZjmHojrks4bpBGE7FFI,340260
77
+ sage/combinat/posets/poset_examples.py,sha256=GSscfCvu0AbxFrwAMMVgSPoZDAg_PLmaemKUjvulRyw,78924
78
+ sage/databases/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
79
+ sage/databases/knotinfo_db.py,sha256=ijt1goKI2Z_Yst6XTbmH9511cWKZWSd3HlGMO69ugqQ,54189
80
+ sage/ext_data/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
81
+ sage/ext_data/graphs/graph_plot_js.html,sha256=OmGUTusnlNQgxC3rb2q_1FR8flYvLT6DNfY0zjY_0_0,9811
82
+ sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
83
+ sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
84
+ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
85
+ sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
86
+ sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
87
+ sage/graphs/all.py,sha256=x8SE1AFbrSgF8NtYDKAPR4Qj1rcawY5NCRN3zdNx76U,1500
88
+ sage/graphs/asteroidal_triples.cp310-win_amd64.pyd,sha256=i9rWjODemU6Ef7MNnPFqb8MOe0tQI1hZcA9ZhonZFvU,57856
89
+ sage/graphs/asteroidal_triples.pyx,sha256=kslBS2OY3d7F0k54vb4nvb1pKH4UfvXv0AssHf9U61Y,11269
90
+ sage/graphs/bipartite_graph.py,sha256=GsQhkJMclM0TCT8ifOaPTjweIwA4yX6rcD4yUoLgLXg,105820
91
+ sage/graphs/centrality.cp310-win_amd64.pyd,sha256=swMTzLO2ov96xoaFF6Rv77fPwD-BJcFkhyVbZI-zfK8,125952
92
+ sage/graphs/centrality.pyx,sha256=jXYVW5ZFRXYkI_Esw8LaPsdVKLhTG4bUZBgUjzGrDGQ,37670
93
+ sage/graphs/cographs.py,sha256=e_IBKmczjffdNkQzZmyliRgXS0j7n5wT_dE_pWj74iY,15184
94
+ sage/graphs/comparability.cp310-win_amd64.pyd,sha256=cFHteoMMdJ-z203Zs2alPh91bu4E43z_gDB6k2iFDgU,160256
95
+ sage/graphs/comparability.pyx,sha256=txNR4i4nVxETeRuITmZSnF41Bcu5Lc3-9p_Y14U5Ai4,32292
96
+ sage/graphs/connectivity.cp310-win_amd64.pyd,sha256=Pf3TwQj6hMjR673VIa2feGTDvSBgPOS5GucjMiEeIIs,542208
97
+ sage/graphs/connectivity.pxd,sha256=xbB3JNVdxZDUwuhSrPaioJujxcOOUzCM4nUZ0Cmild0,5378
98
+ sage/graphs/connectivity.pyx,sha256=Ttl1tzPlXRHmHuoFKcWOmR_YcDvKanDDcoPCqEIAsAQ,183216
99
+ sage/graphs/convexity_properties.cp310-win_amd64.pyd,sha256=tY0bAeIoU-TfmbpHcSo0JlYV75ET9MRIG6bmWdLbxjs,114176
100
+ sage/graphs/convexity_properties.pxd,sha256=5NS5R5LyBnwfiKEo6CNG-aspmA0HqkC0fvsmmr799xo,627
101
+ sage/graphs/convexity_properties.pyx,sha256=zHhpsRj6qi2oLxoUplnzDDaQL0nYYtot6q6GC1l-8Ls,31137
102
+ sage/graphs/digraph.py,sha256=Uj2hmkx-k27D2DyNAAQ-wmKirOIP-0Hyg_8g_CMFLIE,197705
103
+ sage/graphs/digraph_generators.py,sha256=GCgmzNzeNrAetGPavREZnRejf3yciY-ycIbOQkqrTYw,79777
104
+ sage/graphs/distances_all_pairs.cp310-win_amd64.pyd,sha256=VBv47wv3LE3_npOM22lFD13cnnd-VGX7yjyMmUxSlcs,209920
105
+ sage/graphs/distances_all_pairs.pxd,sha256=RMrpaxs-r98iY6BnCS2H18BFN85BNrYPk9Dipuvva0s,565
106
+ sage/graphs/distances_all_pairs.pyx,sha256=CEbGv42frddFNp3xGOyC2M4Tnh2M8vLRuNMSYk3oyS4,105359
107
+ sage/graphs/domination.py,sha256=BRTVApP6SeB-NVe3rcuJDfpSbg6jWRc4rWgTPgMUsVo,48674
108
+ sage/graphs/dot2tex_utils.py,sha256=lWUucZKdFsTltrGPeqwHhvbdScFEMltjtTU6C4p2x_E,3173
109
+ sage/graphs/edge_connectivity.cp310-win_amd64.pyd,sha256=9ncVIOq15h7nXsnNE2GAwJXzFQBsbUF4gWZtQcjoZzs,92672
110
+ sage/graphs/edge_connectivity.pyx,sha256=SBrTBJaeM8uLsF6d-_5frdbPtWanWvJSxiEO7k7H0b4,44701
111
+ sage/graphs/generic_graph.py,sha256=7ekP4UGQk12jfpCVDfumhFwo9Njuqkot28Zea_L-SOA,1114121
112
+ sage/graphs/generic_graph_pyx.cp310-win_amd64.pyd,sha256=rUmggZ_IHpNMGpKj7CvhnEs82IinnIQbSoM23bUhHOc,217600
113
+ sage/graphs/generic_graph_pyx.pxd,sha256=aVwQbA8BGVHbwufAo6-EHEhyfCFNxRq7pPI_FtOJu3Y,825
114
+ sage/graphs/generic_graph_pyx.pyx,sha256=i5gISutTP3P_Fc5LInP-fDJX_U1nFRocdXOt114lmIU,60287
115
+ sage/graphs/genus.cp310-win_amd64.pyd,sha256=fjsVZVHqYdS4k9psf9oWIVGqzPHd2urhmty3Ys3JGCE,69120
116
+ sage/graphs/genus.pyx,sha256=xzcRPWKAgtVIQfBOLJNXVm-22LPCBiYSyzmjNpE6U_w,21672
117
+ sage/graphs/graph.py,sha256=Q2GVcF9pUUuXcMLDUIL3eqdsRxDXtUXjXKHk1IT-IVY,381762
118
+ sage/graphs/graph_coloring.cp310-win_amd64.pyd,sha256=0fzaGnHsLysmd97jNufyKevfuM-rMRnZCXI0pmHJvbM,491520
119
+ sage/graphs/graph_coloring.pyx,sha256=XLq6kega_G2tzkc06urWj5JarMp_64CvpMlF3ylZhJg,85592
120
+ sage/graphs/graph_database.py,sha256=TxWGmR7ueILurw77Xk3Uz54gsbjZ00H-_jhbDmNf3m8,51558
121
+ sage/graphs/graph_editor.py,sha256=_6wr59GPJfl0lylU_tMsqQbc1jH8E8GD6ZxQdVBxBYQ,2850
122
+ sage/graphs/graph_generators.py,sha256=Z7-IqimRFQ_HFJepTs_F-f6noWZkBDCUtMcoDHmHfPg,134580
123
+ sage/graphs/graph_generators_pyx.cp310-win_amd64.pyd,sha256=5PDhYCLG-3ALNY1B14KrDIP6q1w_-XgqvhQGyR-YEd0,62464
124
+ sage/graphs/graph_generators_pyx.pyx,sha256=-TP5O6mDg7clGrKcDLUzcFsLYuw8VGGhPvLV56I9wBA,3214
125
+ sage/graphs/graph_input.py,sha256=r0n78xXCSG6awA0rZDfBPfFsPh4lpvnEBxCkE0WP5A4,28844
126
+ sage/graphs/graph_latex.py,sha256=_zJtj4YXZ0wh8wgL2Nk9-6UqKwd8joEqjfWEusX81Jc,99136
127
+ sage/graphs/graph_list.py,sha256=z7EoLhCRkH5F7acA2r28DzDkLw08xODgOLXl8f6Rf80,14439
128
+ sage/graphs/graph_plot.py,sha256=4a3j1oUY-TAfNGDJpqONvQKQEFoqDUUN56fJXym80AY,70634
129
+ sage/graphs/graph_plot_js.py,sha256=jhaO_KUhxeOCw1IsZGPeCobW5nfXXEcJqIHEWV9rt0U,12898
130
+ sage/graphs/hyperbolicity.cp310-win_amd64.pyd,sha256=sjRuK6eVVqg7XjuwZnQEd7aDTzlkEUGXubjOs8KE_O8,166912
131
+ sage/graphs/hyperbolicity.pyx,sha256=obrOeYbKJt8RbTMlAY51ITBtdJrHDtDTZJqsniGAv9Y,64499
132
+ sage/graphs/hypergraph_generators.py,sha256=0gFR6duplhJ9m6Ecn-APwNIuooR5vcBoQkBdj_hJcSA,13926
133
+ sage/graphs/independent_sets.cp310-win_amd64.pyd,sha256=7g0bhhkNZdJ3SJ_q-UlzgRGdPKlcBs98NINqa1sz98k,70144
134
+ sage/graphs/independent_sets.pxd,sha256=ozW1INPrNhfTHx9P0yQBW9m4C0VyNILAr2MixvI-Ao8,322
135
+ sage/graphs/independent_sets.pyx,sha256=AA4D-pjoMyguifXSDRCZJmwZqfTMIv6tVpxXiDo83vs,13082
136
+ sage/graphs/isgci.py,sha256=6nOGMGYeD95W_IGzRznhkCMl4Ceh2sOsLlZ6QFFDYFU,34105
137
+ sage/graphs/isoperimetric_inequalities.cp310-win_amd64.pyd,sha256=939xLxSFBb_3r9YWXwZqPf_URqxWe0DNVuFxmOIJOn4,77312
138
+ sage/graphs/isoperimetric_inequalities.pyx,sha256=37Xx8CbEFdLANoztQ13JzxZXrf5L1uIjqUYtCyTDOyk,17019
139
+ sage/graphs/line_graph.cp310-win_amd64.pyd,sha256=HywSAUDTJGFz7F8k42MzSHSJ1qemzjJwcn9-KT6-n5k,144896
140
+ sage/graphs/line_graph.pyx,sha256=p_qn8oH7NCwPlmDBD01HO24Gfhsbtfclzng-RJcRHqM,27749
141
+ sage/graphs/lovasz_theta.py,sha256=mEZIrYcmhJHNolsSfRVUnXl9FBkDdqbQ1Frg8qmqJjo,2151
142
+ sage/graphs/matching.py,sha256=rLuE4t6nErNdDnx7vnMBK8YhZhmrT4N6o75KfKo9Ry0,62208
143
+ sage/graphs/matching_covered_graph.py,sha256=_6K6V7RTu-bfAqsbR9l_2qsKZqZ6JFWO9MsC7b0jG4g,144211
144
+ sage/graphs/orientations.py,sha256=4PBJOH_ybCyF2uqbknU3QtPdiCOMqbMvN-rboqBif_8,53303
145
+ sage/graphs/partial_cube.py,sha256=u4X-fZgUIcaX9QSIv_N8kbVUYRx3dH51LCmEfc2nYkg,16402
146
+ sage/graphs/path_enumeration.cp310-win_amd64.pyd,sha256=SwgVe6dAQ6HnQLNuFqD3FQ-QQ-lwQBocmtMAZ17lUZk,318464
147
+ sage/graphs/path_enumeration.pyx,sha256=WAQQiHIroIvpSfWdGvHjuC7tPdEiCX5DWxidHveiXUk,90408
148
+ sage/graphs/pq_trees.py,sha256=6z6pzjeApBLvjx4FTqxklFHjEcwoF9Z78LlvTpcv0G0,39418
149
+ sage/graphs/print_graphs.py,sha256=pBg_hHJxWAcsEzqbqDG4ehZg8C1LreySAbqcoHBmE_A,4931
150
+ sage/graphs/schnyder.py,sha256=OdTuBwHll5p50etHaa6cU_NvEKh7BOS7ILVZcBUZjCc,30683
151
+ sage/graphs/spanning_tree.cp310-win_amd64.pyd,sha256=1-TZFrLohOE1T-Wdp9c2_P_HnftK85eMXw9q2aLXobA,221184
152
+ sage/graphs/spanning_tree.pyx,sha256=WbPx-yeaNy_UQOOL6UqdHrYvJPhv3J-1t7rWgCo_Rks,55241
153
+ sage/graphs/strongly_regular_db.cp310-win_amd64.pyd,sha256=tEOAwr73FTf7Osag2U9uNU-0vWUgea-qU77LYPABblY,697856
154
+ sage/graphs/strongly_regular_db.pyx,sha256=VNa9LXXy8EV_k9QBFM_T7jKnxAcymeBGa6eaVbek19A,132599
155
+ sage/graphs/traversals.cp310-win_amd64.pyd,sha256=vfnCRrYLIhM36jMLuRSm7epfII0pg66KdHiao9e6V1c,208384
156
+ sage/graphs/traversals.pxd,sha256=B17xUmzx5ar22san3Zcz6iX2borzlmLYHQWBzJ8cuXY,481
157
+ sage/graphs/traversals.pyx,sha256=UX2ttDY92aCJPXieOB-VD3dYLfR75gxjLmD1JLBO_z0,65959
158
+ sage/graphs/trees.cp310-win_amd64.pyd,sha256=eNevovRCjHxVRIFx9N4HyWd1Pv_rsWT1NwP1YpUKeS0,45056
159
+ sage/graphs/trees.pxd,sha256=wyQiHIkw7Zf3CCJqf1hLxJsCHOg_4D2R8cDcTGPHe3E,377
160
+ sage/graphs/trees.pyx,sha256=fxCGm1lmkjsaLSg4L0IbnA_gMzYIWhPwbU07_C8e5UA,8733
161
+ sage/graphs/tutte_polynomial.py,sha256=DNn4VjxZ4dogFM4WhWD1C3jLXl_FRSwxjXRbk23Ah2k,21854
162
+ sage/graphs/views.cp310-win_amd64.pyd,sha256=9S2iaoCb-UhnGHkLSJdp8jf1otKZU2E8DfCZK3WDG5Q,112640
163
+ sage/graphs/views.pyx,sha256=7OJX4dq4dwa5RQalTV8-NJWdurTIXOxL2_Tvr9yFn30,27971
164
+ sage/graphs/weakly_chordal.cp310-win_amd64.pyd,sha256=KxKRpqml-ByuibqIcbHD0XASGdajER9Fw_ZGmFuZAiU,90624
165
+ sage/graphs/weakly_chordal.pyx,sha256=quFw1k-AAmJ3BJs7Wm0YSUZgZbPCMsEvgUZ8oqiFoc0,21563
166
+ sage/graphs/base/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
167
+ sage/graphs/base/boost_graph.cp310-win_amd64.pyd,sha256=Nuti_5BFbHbkKCBOzeUV1x4INhjkvEeL0PfJ80-CvAc,508928
168
+ sage/graphs/base/boost_graph.pxd,sha256=5Z4FgnxAaZYXOizWEfsxE1D4K2hJTcdhjXxUFJ9rhA0,3654
169
+ sage/graphs/base/boost_graph.pyx,sha256=mWfPc01Gtyy3YDQ93CcOWZMhsUXN5q2BiyKt4wls-c8,111074
170
+ sage/graphs/base/c_graph.cp310-win_amd64.pyd,sha256=9TI6IlXBC5dj93IKT3sPcPAxwDvbjy96FT9fG76w2Qs,439296
171
+ sage/graphs/base/c_graph.pxd,sha256=pUsZ48m4XXx4fq8fRWeeaFkM0gzX0r63Kkw7L0IJdfk,4281
172
+ sage/graphs/base/c_graph.pyx,sha256=-3-_WEwS5G_jr3gx3f44fSj5zp_JOfK3po-Nu7IVRa8,179658
173
+ sage/graphs/base/dense_graph.cp310-win_amd64.pyd,sha256=RplE1aBViBAlG0XnrcPLwUlqGoxv2iBQ44_sJ5K9zhQ,101376
174
+ sage/graphs/base/dense_graph.pxd,sha256=fZLGgFg8jy8zIWlhlB18ew5Z8ogZN91NsHPmUkLsqms,1211
175
+ sage/graphs/base/dense_graph.pyx,sha256=I68QISSmnBJlaFAX59ByG8ght9rxHYtOLMeI7IvjUJ4,25188
176
+ sage/graphs/base/graph_backends.cp310-win_amd64.pyd,sha256=fU4Ip9xqAe5da-j2Wz3fuDz9N4CNsxVHibqkY8UdwZM,86528
177
+ sage/graphs/base/graph_backends.pxd,sha256=DNjOnDRc2RPV-NtCHuoliKpNfJHC3aK7l0RifUR7DSY,150
178
+ sage/graphs/base/graph_backends.pyx,sha256=vl_Cs6xcJJSDlHEfSO55bUQMSziLY3WYnsOza3oK13o,24526
179
+ sage/graphs/base/overview.py,sha256=WXk4WVm5e6XiCkWCSkHAdMV42DLxVMFnK9k74bbItkk,3186
180
+ sage/graphs/base/sparse_graph.cp310-win_amd64.pyd,sha256=9yKzE0BvBW83Sk7GPJdnWBEoRpLNU7-JX9DHWUtrioA,140288
181
+ sage/graphs/base/sparse_graph.pxd,sha256=O0oPH_Z1-fsxPK-mKMnNq-OL5cE0GcDILqDj-ajytlk,3485
182
+ sage/graphs/base/sparse_graph.pyx,sha256=dNMlc3m2Vl7fXCz5c7a-rse4boVsMSl3AevHmF0AIo0,56300
183
+ sage/graphs/base/static_dense_graph.cp310-win_amd64.pyd,sha256=y88tOGix37QXlTlulFcVEdLeyRVAD-Ps6v4tr_30kns,164352
184
+ sage/graphs/base/static_dense_graph.pxd,sha256=1jNghzZMttKdtdD4U2bSrqW0V5LUgoZl9xLIPGkCuAs,238
185
+ sage/graphs/base/static_dense_graph.pyx,sha256=XyiD925fEEu1z4qu-Mp490Z8Vme_ii_SLRnSAdiLu48,37439
186
+ sage/graphs/base/static_sparse_backend.cp310-win_amd64.pyd,sha256=YeW9sg3lFfZy8uljM8iyl_CAVGwXCH6gvSDEPjby6Tc,200704
187
+ sage/graphs/base/static_sparse_backend.pxd,sha256=DbBBsONS0Utp1szKGQaeTpoqiNC23XDaL9tnMrDAxvI,903
188
+ sage/graphs/base/static_sparse_backend.pyx,sha256=eKzp6rY9lZD9dX26QwRFk1ojyLTNPywSdPR6tKbdN4o,55396
189
+ sage/graphs/base/static_sparse_graph.cp310-win_amd64.pyd,sha256=83fmgHIlcTnzwecUzzrTw9ny-IgN1kDYZiwBVYf0I_I,127488
190
+ sage/graphs/base/static_sparse_graph.pxd,sha256=YYCH7F6h1OteiFLfleAb57CCN-gx42n3W_9fzh8avkA,1500
191
+ sage/graphs/base/static_sparse_graph.pyx,sha256=79ckrFBDUnAxrn_VAXOHGtCPQnO3OD0KSczE7xas4ls,52381
192
+ sage/graphs/generators/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
193
+ sage/graphs/generators/basic.py,sha256=0KtJ29r3lQVXVENR2ceX9SZIQOkM-8yNwhWdrTHG1dM,61442
194
+ sage/graphs/generators/chessboard.py,sha256=AYh9NIWZcueME7xiSL3MUdEa9O8O_NTDXh01cHfP8Js,20682
195
+ sage/graphs/generators/classical_geometries.py,sha256=3xoCUEGmShNiGwvc5eKvFbLgeQH-lWM23Iv2uYVtp5A,63415
196
+ sage/graphs/generators/degree_sequence.py,sha256=oN9BFV3aC3g0Im_L9v1bx4aBzEf2qFRc8IHpxMVLkF8,8735
197
+ sage/graphs/generators/distance_regular.cp310-win_amd64.pyd,sha256=Eex_byWAZkEXCYhLhyy7VspHHTd50-tjtdtpgfNjcMo,595456
198
+ sage/graphs/generators/distance_regular.pyx,sha256=dIO6D98FdTS3pk9ZhdXww-Q7WlmTKthcIgRbpDQXPTc,96145
199
+ sage/graphs/generators/families.py,sha256=mw4nwFZRzNacdA5xHrRjmTvZZvTW2k0rd-NlN4sCYJs,164719
200
+ sage/graphs/generators/intersection.py,sha256=N3C3dLzBjL_Jeii1aU_Xm3O78yMLvZoAY1Y6Egu4MxA,20349
201
+ sage/graphs/generators/platonic_solids.py,sha256=v3TMsnK2gI0vnhX9IxP3IsTWqw6GpYQdk6xZk9WEJG0,10134
202
+ sage/graphs/generators/random.py,sha256=lDQxB_YZ6Gwo-_LrqXx4hXC1H2AsP_Tsa0Q8-p44A-8,92227
203
+ sage/graphs/generators/smallgraphs.py,sha256=y441EzXwvSBnJ-qwp4lbZvlS19FfoC8tV4MO4H_HEpA,202063
204
+ sage/graphs/generators/world_map.py,sha256=YZ992gxxy6kXKaWvbXqG2tfxk5AaHw3a0t991pskPlY,34547
205
+ sage/graphs/graph_decompositions/all.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
206
+ sage/graphs/graph_decompositions/bandwidth.cp310-win_amd64.pyd,sha256=Day1ZLxogoscKprrcNzpcX2h8aLo6yhuDrrEFSUNbp8,58368
207
+ sage/graphs/graph_decompositions/bandwidth.pyx,sha256=9BvA6v6LheIIqwtkvbendaO_aux-ROfaMBcAM4aZFd0,15576
208
+ sage/graphs/graph_decompositions/clique_separators.cp310-win_amd64.pyd,sha256=_2_Evb1WJRl5ydQXQ875qhDt_bTrXEOXTYQP76XUq_A,134144
209
+ sage/graphs/graph_decompositions/clique_separators.pyx,sha256=q2Ep-OTAN0u53tg4USepRiw9uOm61XRbsfMKAkbJouk,23690
210
+ sage/graphs/graph_decompositions/cutwidth.cp310-win_amd64.pyd,sha256=NnnNcFnBFD6ybq7wbuBH0hOZnqCO_bBFokDQ8xJCyow,133120
211
+ sage/graphs/graph_decompositions/cutwidth.pyx,sha256=ah8ysfGRlDw3UTeG9uPcQuVAjs0SfaYSnRdJ3z-RvdA,28601
212
+ sage/graphs/graph_decompositions/fast_digraph.cp310-win_amd64.pyd,sha256=r2oQ9AKeVCTYAITqS4oj1XqRqQsqeSazY7e2sZcsPiY,48640
213
+ sage/graphs/graph_decompositions/fast_digraph.pxd,sha256=vfxjVz_M8l9rkauaJpXkW1_ubTM3mqUdEjUwlqdD4PQ,343
214
+ sage/graphs/graph_decompositions/fast_digraph.pyx,sha256=02nMqhb4MvzaJFRGSy4ZefAvhChZsMJBlCTaOtOS3Es,7388
215
+ sage/graphs/graph_decompositions/graph_products.cp310-win_amd64.pyd,sha256=9VH3M5ELO4XuRavwKhagWdJCZ1HS6vaYCzsp7PDDPks,126464
216
+ sage/graphs/graph_decompositions/graph_products.pyx,sha256=HcTfcex9hrwlcTzBHWMGDonGEUDGGj8jkma0devn5wU,19014
217
+ sage/graphs/graph_decompositions/modular_decomposition.cp310-win_amd64.pyd,sha256=mVIHoxzlIMRkN8IqrOdM9Jo8bNz0HLKvpDPj0eo_meE,338944
218
+ sage/graphs/graph_decompositions/modular_decomposition.pxd,sha256=SAqgLApPT4pa_e2XpZ7us9PhDV34y5cTZB7YzP_lbkI,1100
219
+ sage/graphs/graph_decompositions/modular_decomposition.pyx,sha256=EkuXojAhXF53MXTiat63_EWdglqfodFZQiZk5dHV7-E,51818
220
+ sage/graphs/graph_decompositions/slice_decomposition.cp310-win_amd64.pyd,sha256=isT4Rm8jAO6uLe0eXJgvBCou8LabB8rVu2hetFhqDf8,171520
221
+ sage/graphs/graph_decompositions/slice_decomposition.pxd,sha256=OawVDRv8wbwIP6rbSZHGZQUVF31TNw3fbIXbE2q9XyA,602
222
+ sage/graphs/graph_decompositions/slice_decomposition.pyx,sha256=oBp4OVgykHatrhiSLgscsq5B5lUINmCierb3sWpO79w,40359
223
+ sage/graphs/graph_decompositions/tree_decomposition.cp310-win_amd64.pyd,sha256=937CvjA_d0w16RGZBxUEl5zEinwJVbD64xe3m_hP6UU,337408
224
+ sage/graphs/graph_decompositions/tree_decomposition.pxd,sha256=dxfbHIMapSvsj67OLVBfLtvAYhWvDNSwmbmqmrvEYZg,555
225
+ sage/graphs/graph_decompositions/tree_decomposition.pyx,sha256=IWrChlzZXjEKscgZcbRr4mhvODbAuAbZoHhSNxx-3Dw,73665
226
+ sage/graphs/graph_decompositions/vertex_separation.cp310-win_amd64.pyd,sha256=yJB5ehsviuWeHF9LO7mUxi-tvL39K5noQ5mGEMfIh-w,214528
227
+ sage/graphs/graph_decompositions/vertex_separation.pxd,sha256=kuVp6HcFIRCamGKOy_Z_Qlzb2W_GlrdBRL4b44jdLsw,200
228
+ sage/graphs/graph_decompositions/vertex_separation.pyx,sha256=nF-RwfUUZZ-JHi-iMj7D2ibAsrbmLQuEpGRXqN7_DTQ,74865
229
+ sage/groups/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
230
+ sage/groups/perm_gps/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
231
+ sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py,sha256=hFccVjiRkLdUqyJcwgIkR5OUo1DvjVPZwsCZIWtgEXM,45
232
+ sage/groups/perm_gps/partn_ref/refinement_graphs.cp310-win_amd64.pyd,sha256=8Iug4N28WF3lremmPtpLL_NXonh0DyzQnyT6Idm_fUI,194048
233
+ sage/groups/perm_gps/partn_ref/refinement_graphs.pxd,sha256=6sU1BVnxoySV9GhDXZsUKBlAgAMBqc8Bp3FELHB3neU,1759
234
+ sage/groups/perm_gps/partn_ref/refinement_graphs.pyx,sha256=AyuBZ0MJ0x9EIiVzInK__7W4dy_hCONOBHyP4qy721M,56634
235
+ sage/knots/all.py,sha256=pkVdIL2rSa6WRTBcnx6zew7aZMJJoIKeBmf81XAqyT0,248
236
+ sage/knots/free_knotinfo_monoid.py,sha256=lKx7Z_M4yHt0om_fDYlkAzxGCUycD4yFsrrmKhm5xNM,19714
237
+ sage/knots/gauss_code.py,sha256=XPReZ4_t4FUiV6Nza_8MaCQ-05CuOffdMmk2ckm98jc,8978
238
+ sage/knots/knot.py,sha256=x0eH6Oag_nDOWt6KX0oOnLEogHdvTIlHI3Loj00ZFY8,21094
239
+ sage/knots/knotinfo.py,sha256=4Vkm0-gWRrpnDplo5udTUEUBpv2hDLYTyG2qIFC_Wus,102919
240
+ sage/knots/knot_table.py,sha256=riB4GuRrdOMHmOan1JFsJg4vMzmFEL4u3dwuCHYgj8k,12884
241
+ sage/knots/link.py,sha256=hU_H43oGYkWMDG4D2xJJawdv7RfXbFYcNiFmSpalhho,179401
242
+ sage/sandpiles/all.py,sha256=GxDiTE98htXEil5sR7gdVNgIh8eCu6q1IyxjHPOLyx8,565
243
+ sage/sandpiles/examples.py,sha256=NNlBeEP0Nd7G4FNDNbsGRH51a1vOX-Pxo2aUjY1cUao,5595
244
+ sage/sandpiles/sandpile.py,sha256=yeO4-dNtmYd5LQV86K5XyMkxYVK3w_rnvBudZNTzTpg,211694
245
+ sage/topology/all.py,sha256=A2U5MB47msO-FzH_uDI6A17k0cNQcYlT9kqr6GLE1-c,969
246
+ sage/topology/cell_complex.py,sha256=2La9yE3TJ5Rtm4CY-LqKC6LrUofaufqQUaoVN7G8p00,47382
247
+ sage/topology/cubical_complex.py,sha256=xceZuOdl1u4ztlp1tJF2tQX58nSSIH5ylelYpZVBECs,70973
248
+ sage/topology/delta_complex.py,sha256=qyIID-0j35XBclNbaM1jEdQQwjtf7kwaOVgbofaFL0E,74587
249
+ sage/topology/filtered_simplicial_complex.py,sha256=B1dyj4DuYe6qmLuxtAAtv4UIrC0arhf-QBbixJW44v4,27020
250
+ sage/topology/moment_angle_complex.py,sha256=x4IBzLq8cJ3Vg6jEX_r_iiBJgELl9bwoDp_YCf9u5Rk,32849
251
+ sage/topology/simplicial_complex.py,sha256=IcEqOQAUvfj2yvld8BZwuWMpt_wlGvzyvVwA5Rl74mo,196261
252
+ sage/topology/simplicial_complex_catalog.py,sha256=GjQMVaPprLhooPWTetGlb27hL-t8sMIssECeb2ESdi0,4722
253
+ sage/topology/simplicial_complex_examples.py,sha256=68Ul_u-OiKNgQooX6uTVKuvXv_w3-yokshrBf-ytF58,70188
254
+ sage/topology/simplicial_complex_homset.py,sha256=8wSfpi6t6qQpRW1CkLSb36eFieflaYQKpcshdEjutZ8,7425
255
+ sage/topology/simplicial_complex_morphism.py,sha256=JZc3bVCAwibwccMzL0XdIi8imVTlnkDvd0R-nFBHHCQ,32596
256
+ sage/topology/simplicial_set.py,sha256=YiE4MsCy1qsBFFJYSes9gxh4tXl9bQSirj2PYWaz95c,152633
257
+ sage/topology/simplicial_set_catalog.py,sha256=Kr3lNNBDks_fux7zLfvv5J9ZTW_WFK8wmpYDzlumod0,2172
258
+ sage/topology/simplicial_set_constructions.py,sha256=5Qw7TdOn10-NjSf8Vfrfc73-WEjKSnqFcHI3mi2SkcE,115261
259
+ sage/topology/simplicial_set_examples.py,sha256=8SqHHg08N0c43JHK-7pSqF-EOElYhrU8P0qNMdmdYcA,32765
260
+ sage/topology/simplicial_set_morphism.py,sha256=JeB8BKzOsemRrvXlqdzADa1WOBh3JnuKE47I5VskMiY,55739
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-win_amd64
5
+
@@ -0,0 +1,49 @@
1
+ # sage_setup: distribution = sagemath-graphs
2
+ # start delvewheel patch
3
+ def _delvewheel_patch_1_10_1():
4
+ import os
5
+ if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, 'passagemath_graphs.libs'))):
6
+ os.add_dll_directory(libs_dir)
7
+
8
+
9
+ _delvewheel_patch_1_10_1()
10
+ del _delvewheel_patch_1_10_1
11
+ # end delvewheel patch
12
+ r"""
13
+ Top level of the distribution package sagemath-graphs
14
+
15
+ This distribution makes the following feature available::
16
+
17
+ sage: from sage.features.sagemath import *
18
+ sage: sage__graphs().is_present()
19
+ FeatureTestResult('sage.graphs', True)
20
+ """
21
+
22
+ from .all__sagemath_categories import *
23
+
24
+ try: # extra
25
+ from sage.all__sagemath_gap import *
26
+ except ImportError:
27
+ pass
28
+
29
+ try: # extra
30
+ from sage.all__sagemath_modules import *
31
+ except ImportError:
32
+ pass
33
+
34
+ try: # extra
35
+ from sage.all__sagemath_polyhedra import *
36
+ except ImportError:
37
+ pass
38
+
39
+ from sage.graphs.all import *
40
+
41
+ from sage.topology.all import *
42
+
43
+ from sage.combinat.all__sagemath_graphs import *
44
+
45
+ from sage.databases.all__sagemath_graphs import *
46
+
47
+ from sage.sandpiles.all import *
48
+
49
+ from sage.knots.all import *