passagemath-polyhedra 10.6.31rc3__cp314-cp314-musllinux_1_2_x86_64.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-polyhedra might be problematic. Click here for more details.

Files changed (208) hide show
  1. passagemath_polyhedra-10.6.31rc3.dist-info/METADATA +367 -0
  2. passagemath_polyhedra-10.6.31rc3.dist-info/METADATA.bak +369 -0
  3. passagemath_polyhedra-10.6.31rc3.dist-info/RECORD +208 -0
  4. passagemath_polyhedra-10.6.31rc3.dist-info/WHEEL +5 -0
  5. passagemath_polyhedra-10.6.31rc3.dist-info/top_level.txt +2 -0
  6. passagemath_polyhedra.libs/libgcc_s-0cd532bd.so.1 +0 -0
  7. passagemath_polyhedra.libs/libgmp-0e7fc84e.so.10.5.0 +0 -0
  8. passagemath_polyhedra.libs/libgomp-8949ffbe.so.1.0.0 +0 -0
  9. passagemath_polyhedra.libs/libstdc++-5d72f927.so.6.0.33 +0 -0
  10. sage/all__sagemath_polyhedra.py +50 -0
  11. sage/game_theory/all.py +8 -0
  12. sage/game_theory/catalog.py +6 -0
  13. sage/game_theory/catalog_normal_form_games.py +923 -0
  14. sage/game_theory/cooperative_game.py +844 -0
  15. sage/game_theory/matching_game.py +1181 -0
  16. sage/game_theory/normal_form_game.py +2697 -0
  17. sage/game_theory/parser.py +275 -0
  18. sage/geometry/all__sagemath_polyhedra.py +22 -0
  19. sage/geometry/cone.py +6940 -0
  20. sage/geometry/cone_catalog.py +847 -0
  21. sage/geometry/cone_critical_angles.py +1027 -0
  22. sage/geometry/convex_set.py +1119 -0
  23. sage/geometry/fan.py +3743 -0
  24. sage/geometry/fan_isomorphism.py +389 -0
  25. sage/geometry/fan_morphism.py +1884 -0
  26. sage/geometry/hasse_diagram.py +202 -0
  27. sage/geometry/hyperplane_arrangement/affine_subspace.py +390 -0
  28. sage/geometry/hyperplane_arrangement/all.py +1 -0
  29. sage/geometry/hyperplane_arrangement/arrangement.py +3895 -0
  30. sage/geometry/hyperplane_arrangement/check_freeness.py +145 -0
  31. sage/geometry/hyperplane_arrangement/hyperplane.py +773 -0
  32. sage/geometry/hyperplane_arrangement/library.py +825 -0
  33. sage/geometry/hyperplane_arrangement/ordered_arrangement.py +642 -0
  34. sage/geometry/hyperplane_arrangement/plot.py +520 -0
  35. sage/geometry/integral_points.py +35 -0
  36. sage/geometry/integral_points_generic_dense.cpython-314-x86_64-linux-musl.so +0 -0
  37. sage/geometry/integral_points_generic_dense.pyx +7 -0
  38. sage/geometry/lattice_polytope.py +5894 -0
  39. sage/geometry/linear_expression.py +773 -0
  40. sage/geometry/newton_polygon.py +767 -0
  41. sage/geometry/point_collection.cpython-314-x86_64-linux-musl.so +0 -0
  42. sage/geometry/point_collection.pyx +1008 -0
  43. sage/geometry/polyhedral_complex.py +2616 -0
  44. sage/geometry/polyhedron/all.py +8 -0
  45. sage/geometry/polyhedron/backend_cdd.py +460 -0
  46. sage/geometry/polyhedron/backend_cdd_rdf.py +231 -0
  47. sage/geometry/polyhedron/backend_field.py +347 -0
  48. sage/geometry/polyhedron/backend_normaliz.py +2503 -0
  49. sage/geometry/polyhedron/backend_number_field.py +168 -0
  50. sage/geometry/polyhedron/backend_polymake.py +765 -0
  51. sage/geometry/polyhedron/backend_ppl.py +582 -0
  52. sage/geometry/polyhedron/base.py +1206 -0
  53. sage/geometry/polyhedron/base0.py +1444 -0
  54. sage/geometry/polyhedron/base1.py +886 -0
  55. sage/geometry/polyhedron/base2.py +812 -0
  56. sage/geometry/polyhedron/base3.py +1845 -0
  57. sage/geometry/polyhedron/base4.py +1262 -0
  58. sage/geometry/polyhedron/base5.py +2700 -0
  59. sage/geometry/polyhedron/base6.py +1741 -0
  60. sage/geometry/polyhedron/base7.py +997 -0
  61. sage/geometry/polyhedron/base_QQ.py +1258 -0
  62. sage/geometry/polyhedron/base_RDF.py +98 -0
  63. sage/geometry/polyhedron/base_ZZ.py +934 -0
  64. sage/geometry/polyhedron/base_mutable.py +215 -0
  65. sage/geometry/polyhedron/base_number_field.py +122 -0
  66. sage/geometry/polyhedron/cdd_file_format.py +155 -0
  67. sage/geometry/polyhedron/combinatorial_polyhedron/all.py +1 -0
  68. sage/geometry/polyhedron/combinatorial_polyhedron/base.cpython-314-x86_64-linux-musl.so +0 -0
  69. sage/geometry/polyhedron/combinatorial_polyhedron/base.pxd +76 -0
  70. sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx +3859 -0
  71. sage/geometry/polyhedron/combinatorial_polyhedron/combinatorial_face.cpython-314-x86_64-linux-musl.so +0 -0
  72. sage/geometry/polyhedron/combinatorial_polyhedron/combinatorial_face.pxd +39 -0
  73. sage/geometry/polyhedron/combinatorial_polyhedron/combinatorial_face.pyx +1038 -0
  74. sage/geometry/polyhedron/combinatorial_polyhedron/conversions.cpython-314-x86_64-linux-musl.so +0 -0
  75. sage/geometry/polyhedron/combinatorial_polyhedron/conversions.pxd +9 -0
  76. sage/geometry/polyhedron/combinatorial_polyhedron/conversions.pyx +501 -0
  77. sage/geometry/polyhedron/combinatorial_polyhedron/face_data_structure.pxd +207 -0
  78. sage/geometry/polyhedron/combinatorial_polyhedron/face_iterator.cpython-314-x86_64-linux-musl.so +0 -0
  79. sage/geometry/polyhedron/combinatorial_polyhedron/face_iterator.pxd +102 -0
  80. sage/geometry/polyhedron/combinatorial_polyhedron/face_iterator.pyx +2274 -0
  81. sage/geometry/polyhedron/combinatorial_polyhedron/face_list_data_structure.cpython-314-x86_64-linux-musl.so +0 -0
  82. sage/geometry/polyhedron/combinatorial_polyhedron/face_list_data_structure.pxd +370 -0
  83. sage/geometry/polyhedron/combinatorial_polyhedron/face_list_data_structure.pyx +84 -0
  84. sage/geometry/polyhedron/combinatorial_polyhedron/list_of_faces.cpython-314-x86_64-linux-musl.so +0 -0
  85. sage/geometry/polyhedron/combinatorial_polyhedron/list_of_faces.pxd +31 -0
  86. sage/geometry/polyhedron/combinatorial_polyhedron/list_of_faces.pyx +587 -0
  87. sage/geometry/polyhedron/combinatorial_polyhedron/polyhedron_face_lattice.cpython-314-x86_64-linux-musl.so +0 -0
  88. sage/geometry/polyhedron/combinatorial_polyhedron/polyhedron_face_lattice.pxd +52 -0
  89. sage/geometry/polyhedron/combinatorial_polyhedron/polyhedron_face_lattice.pyx +560 -0
  90. sage/geometry/polyhedron/constructor.py +773 -0
  91. sage/geometry/polyhedron/double_description.py +753 -0
  92. sage/geometry/polyhedron/double_description_inhomogeneous.py +564 -0
  93. sage/geometry/polyhedron/face.py +1060 -0
  94. sage/geometry/polyhedron/generating_function.py +1810 -0
  95. sage/geometry/polyhedron/lattice_euclidean_group_element.py +178 -0
  96. sage/geometry/polyhedron/library.py +3502 -0
  97. sage/geometry/polyhedron/misc.py +121 -0
  98. sage/geometry/polyhedron/modules/all.py +1 -0
  99. sage/geometry/polyhedron/modules/formal_polyhedra_module.py +155 -0
  100. sage/geometry/polyhedron/palp_database.py +447 -0
  101. sage/geometry/polyhedron/parent.py +1279 -0
  102. sage/geometry/polyhedron/plot.py +1986 -0
  103. sage/geometry/polyhedron/ppl_lattice_polygon.py +556 -0
  104. sage/geometry/polyhedron/ppl_lattice_polytope.py +1257 -0
  105. sage/geometry/polyhedron/representation.py +1723 -0
  106. sage/geometry/pseudolines.py +515 -0
  107. sage/geometry/relative_interior.py +445 -0
  108. sage/geometry/toric_plotter.py +1103 -0
  109. sage/geometry/triangulation/all.py +2 -0
  110. sage/geometry/triangulation/base.cpython-314-x86_64-linux-musl.so +0 -0
  111. sage/geometry/triangulation/base.pyx +963 -0
  112. sage/geometry/triangulation/data.h +147 -0
  113. sage/geometry/triangulation/data.pxd +4 -0
  114. sage/geometry/triangulation/element.py +914 -0
  115. sage/geometry/triangulation/functions.h +10 -0
  116. sage/geometry/triangulation/functions.pxd +4 -0
  117. sage/geometry/triangulation/point_configuration.py +2256 -0
  118. sage/geometry/triangulation/triangulations.h +49 -0
  119. sage/geometry/triangulation/triangulations.pxd +7 -0
  120. sage/geometry/voronoi_diagram.py +319 -0
  121. sage/interfaces/all__sagemath_polyhedra.py +1 -0
  122. sage/interfaces/polymake.py +2028 -0
  123. sage/numerical/all.py +13 -0
  124. sage/numerical/all__sagemath_polyhedra.py +11 -0
  125. sage/numerical/backends/all.py +1 -0
  126. sage/numerical/backends/all__sagemath_polyhedra.py +1 -0
  127. sage/numerical/backends/cvxopt_backend.cpython-314-x86_64-linux-musl.so +0 -0
  128. sage/numerical/backends/cvxopt_backend.pyx +1006 -0
  129. sage/numerical/backends/cvxopt_backend_test.py +19 -0
  130. sage/numerical/backends/cvxopt_sdp_backend.cpython-314-x86_64-linux-musl.so +0 -0
  131. sage/numerical/backends/cvxopt_sdp_backend.pyx +382 -0
  132. sage/numerical/backends/cvxpy_backend.cpython-314-x86_64-linux-musl.so +0 -0
  133. sage/numerical/backends/cvxpy_backend.pxd +41 -0
  134. sage/numerical/backends/cvxpy_backend.pyx +934 -0
  135. sage/numerical/backends/cvxpy_backend_test.py +13 -0
  136. sage/numerical/backends/generic_backend_test.py +24 -0
  137. sage/numerical/backends/interactivelp_backend.cpython-314-x86_64-linux-musl.so +0 -0
  138. sage/numerical/backends/interactivelp_backend.pxd +36 -0
  139. sage/numerical/backends/interactivelp_backend.pyx +1231 -0
  140. sage/numerical/backends/interactivelp_backend_test.py +12 -0
  141. sage/numerical/backends/logging_backend.py +391 -0
  142. sage/numerical/backends/matrix_sdp_backend.cpython-314-x86_64-linux-musl.so +0 -0
  143. sage/numerical/backends/matrix_sdp_backend.pxd +15 -0
  144. sage/numerical/backends/matrix_sdp_backend.pyx +478 -0
  145. sage/numerical/backends/ppl_backend.cpython-314-x86_64-linux-musl.so +0 -0
  146. sage/numerical/backends/ppl_backend.pyx +1126 -0
  147. sage/numerical/backends/ppl_backend_test.py +13 -0
  148. sage/numerical/backends/scip_backend.cpython-314-x86_64-linux-musl.so +0 -0
  149. sage/numerical/backends/scip_backend.pxd +22 -0
  150. sage/numerical/backends/scip_backend.pyx +1289 -0
  151. sage/numerical/backends/scip_backend_test.py +13 -0
  152. sage/numerical/interactive_simplex_method.py +5338 -0
  153. sage/numerical/knapsack.py +665 -0
  154. sage/numerical/linear_functions.cpython-314-x86_64-linux-musl.so +0 -0
  155. sage/numerical/linear_functions.pxd +31 -0
  156. sage/numerical/linear_functions.pyx +1648 -0
  157. sage/numerical/linear_tensor.py +470 -0
  158. sage/numerical/linear_tensor_constraints.py +448 -0
  159. sage/numerical/linear_tensor_element.cpython-314-x86_64-linux-musl.so +0 -0
  160. sage/numerical/linear_tensor_element.pxd +6 -0
  161. sage/numerical/linear_tensor_element.pyx +459 -0
  162. sage/numerical/mip.cpython-314-x86_64-linux-musl.so +0 -0
  163. sage/numerical/mip.pxd +40 -0
  164. sage/numerical/mip.pyx +3667 -0
  165. sage/numerical/sdp.cpython-314-x86_64-linux-musl.so +0 -0
  166. sage/numerical/sdp.pxd +39 -0
  167. sage/numerical/sdp.pyx +1433 -0
  168. sage/rings/all__sagemath_polyhedra.py +3 -0
  169. sage/rings/polynomial/all__sagemath_polyhedra.py +10 -0
  170. sage/rings/polynomial/omega.py +982 -0
  171. sage/schemes/all__sagemath_polyhedra.py +2 -0
  172. sage/schemes/toric/all.py +10 -0
  173. sage/schemes/toric/chow_group.py +1248 -0
  174. sage/schemes/toric/divisor.py +2082 -0
  175. sage/schemes/toric/divisor_class.cpython-314-x86_64-linux-musl.so +0 -0
  176. sage/schemes/toric/divisor_class.pyx +322 -0
  177. sage/schemes/toric/fano_variety.py +1606 -0
  178. sage/schemes/toric/homset.py +650 -0
  179. sage/schemes/toric/ideal.py +451 -0
  180. sage/schemes/toric/library.py +1322 -0
  181. sage/schemes/toric/morphism.py +1958 -0
  182. sage/schemes/toric/points.py +1032 -0
  183. sage/schemes/toric/sheaf/all.py +1 -0
  184. sage/schemes/toric/sheaf/constructor.py +302 -0
  185. sage/schemes/toric/sheaf/klyachko.py +921 -0
  186. sage/schemes/toric/toric_subscheme.py +905 -0
  187. sage/schemes/toric/variety.py +3460 -0
  188. sage/schemes/toric/weierstrass.py +1078 -0
  189. sage/schemes/toric/weierstrass_covering.py +457 -0
  190. sage/schemes/toric/weierstrass_higher.py +288 -0
  191. sage_wheels/share/reflexive_polytopes/Full2d/zzdb.info +10 -0
  192. sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v03 +0 -0
  193. sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v04 +0 -0
  194. sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v05 +1 -0
  195. sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v06 +1 -0
  196. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.info +22 -0
  197. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v04 +0 -0
  198. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v05 +0 -0
  199. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v06 +0 -0
  200. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v07 +0 -0
  201. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v08 +0 -0
  202. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v09 +0 -0
  203. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v10 +0 -0
  204. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v11 +1 -0
  205. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v12 +1 -0
  206. sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v13 +1 -0
  207. sage_wheels/share/reflexive_polytopes/reflexive_polytopes_2d +80 -0
  208. sage_wheels/share/reflexive_polytopes/reflexive_polytopes_3d +37977 -0
@@ -0,0 +1,369 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-polyhedra
3
+ Version: 10.6.31rc3
4
+ Summary: passagemath: Convex polyhedra in arbitrary dimension, mixed integer linear optimization
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://passagemath.org/docs/latest
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 :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: 3.14
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.15,>=3.10
31
+ Description-Content-Type: text/x-rst
32
+ Requires-Dist: gmpy2~=2.1.b999
33
+ Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
34
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
35
+ Requires-Dist: passagemath-ppl
36
+ Requires-Dist: memory_allocator
37
+ Requires-Dist: passagemath-conf==10.6.31rc3; sys_platform != "win32"
38
+ Requires-Dist: passagemath-environment==10.6.31rc3
39
+ Requires-Dist: passagemath-glpk==10.6.31rc3
40
+ Requires-Dist: passagemath-modules==10.6.31rc3
41
+ Provides-Extra: conf
42
+ Requires-Dist: passagemath-conf; extra == "conf"
43
+ Provides-Extra: test
44
+ Requires-Dist: passagemath-repl; extra == "test"
45
+ Provides-Extra: flint
46
+ Requires-Dist: passagemath-flint; extra == "flint"
47
+ Provides-Extra: fpylll
48
+ Requires-Dist: fpylll>=0.5.9; extra == "fpylll"
49
+ Provides-Extra: linbox
50
+ Requires-Dist: passagemath-linbox; extra == "linbox"
51
+ Provides-Extra: pari
52
+ Requires-Dist: passagemath-pari; extra == "pari"
53
+ Provides-Extra: 4ti2
54
+ Requires-Dist: passagemath-latte-4ti2; extra == "4ti2"
55
+ Provides-Extra: cddlib
56
+ Requires-Dist: passagemath-cddlib; extra == "cddlib"
57
+ Provides-Extra: latte
58
+ Requires-Dist: passagemath-polyhedra[latte_int]; extra == "latte"
59
+ Provides-Extra: latte-int
60
+ Requires-Dist: passagemath-latte-4ti2; extra == "latte-int"
61
+ Provides-Extra: normaliz
62
+ Requires-Dist: pynormaliz==2.21; extra == "normaliz"
63
+ Provides-Extra: palp
64
+ Requires-Dist: passagemath-palp; extra == "palp"
65
+ Provides-Extra: polymake
66
+ Requires-Dist: jupymake>=0.9; extra == "polymake"
67
+ Provides-Extra: ppl
68
+ Provides-Extra: topcom
69
+ Requires-Dist: passagemath-topcom; extra == "topcom"
70
+ Provides-Extra: cbc
71
+ Requires-Dist: passagemath-polyhedra[cbc_sage]; extra == "cbc"
72
+ Provides-Extra: cbc-sage
73
+ Requires-Dist: passagemath-coin-or-cbc; extra == "cbc-sage"
74
+ Provides-Extra: coin
75
+ Requires-Dist: passagemath-polyhedra[cbc_sage]; extra == "coin"
76
+ Provides-Extra: coin-sage
77
+ Requires-Dist: passagemath-polyhedra[cbc_sage]; extra == "coin-sage"
78
+ Provides-Extra: cplex
79
+ Requires-Dist: passagemath-polyhedra[cplex_sage]; extra == "cplex"
80
+ Provides-Extra: cplex-sage
81
+ Requires-Dist: passagemath-cplex; extra == "cplex-sage"
82
+ Provides-Extra: cvxopt
83
+ Requires-Dist: passagemath-polyhedra[cvxopt_sage]; extra == "cvxopt"
84
+ Provides-Extra: cvxopt-sage
85
+ Requires-Dist: cvxopt>=1.2.5; extra == "cvxopt-sage"
86
+ Provides-Extra: cvxpy
87
+ Requires-Dist: cvxpy; extra == "cvxpy"
88
+ Provides-Extra: glpk
89
+ Requires-Dist: passagemath-polyhedra[glpk_sage]; extra == "glpk"
90
+ Provides-Extra: glpk-sage
91
+ Provides-Extra: gurobi
92
+ Requires-Dist: passagemath-polyhedra[gurobi_sage]; extra == "gurobi"
93
+ Provides-Extra: gurobi-sage
94
+ Requires-Dist: passagemath-gurobi; extra == "gurobi-sage"
95
+ Provides-Extra: scip
96
+ Requires-Dist: PySCIPOpt; extra == "scip"
97
+ Provides-Extra: polytopes-db-4d
98
+ Requires-Dist: passagemath-polytopes-db-4d; extra == "polytopes-db-4d"
99
+ Provides-Extra: qq
100
+ Provides-Extra: zz
101
+ Provides-Extra: rdf
102
+ Requires-Dist: passagemath-polyhedra[cddlib]; extra == "rdf"
103
+ Provides-Extra: numberfield
104
+ Requires-Dist: passagemath-polyhedra[flint]; extra == "numberfield"
105
+ Provides-Extra: databases
106
+ Requires-Dist: passagemath-polyhedra[polytopes-db-4d]; extra == "databases"
107
+ Provides-Extra: graphs
108
+ Requires-Dist: passagemath-graphs; extra == "graphs"
109
+ Provides-Extra: groups
110
+ Requires-Dist: passagemath-groups; extra == "groups"
111
+ Provides-Extra: plot
112
+ Requires-Dist: passagemath-plot; extra == "plot"
113
+ Provides-Extra: standard
114
+ Requires-Dist: passagemath-polyhedra[RDF,flint,fpylll,glpk,graphs,groups,linbox,pari]; extra == "standard"
115
+ Requires-Dist: passagemath-plot[tachyon]; extra == "standard"
116
+
117
+ ====================================================================================================================
118
+ passagemath: Convex polyhedra in arbitrary dimension, mixed integer linear optimization
119
+ ====================================================================================================================
120
+
121
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
122
+ source mathematical software in Python, released under the GNU General
123
+ Public Licence GPLv2+.
124
+
125
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
126
+ developed 2005-2025 under the motto “Creating a Viable Open Source
127
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
128
+
129
+ The passagemath fork uses the motto "Creating a Free Passage Between the
130
+ Scientific Python Ecosystem and Mathematical Software Communities."
131
+ It was created in October 2024 with the following goals:
132
+
133
+ - providing modularized installation with pip,
134
+ - establishing first-class membership in the scientific Python
135
+ ecosystem,
136
+ - giving `clear attribution of upstream
137
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
138
+ - providing independently usable Python interfaces to upstream
139
+ libraries,
140
+ - offering `platform portability and integration testing
141
+ services <https://github.com/passagemath/passagemath/issues/704>`__
142
+ to upstream projects,
143
+ - inviting collaborations with upstream projects,
144
+ - `building a professional, respectful, inclusive
145
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
146
+ - `empowering Sage users to participate in the scientific Python ecosystem
147
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
148
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
149
+ serverless deployment with Javascript,
150
+ - developing a native Windows port.
151
+
152
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
153
+ available online.
154
+
155
+ passagemath attempts to support and provides binary wheels suitable for
156
+ all major Linux distributions and recent versions of macOS.
157
+
158
+ Binary wheels for native Windows (x86_64) are are available for a subset of
159
+ the passagemath distributions. Use of the full functionality of passagemath
160
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
161
+ or virtualization.
162
+
163
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
164
+
165
+
166
+ About this pip-installable distribution package
167
+ -----------------------------------------------
168
+
169
+ This pip-installable distribution ``passagemath-polyhedra`` 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`), sufficient for computations with convex polyhedra in arbitrary dimension (in exact rational arithmetic), and linear and mixed integer linear optimization (in floating point arithmetic).
170
+
171
+
172
+ What is included
173
+ ----------------
174
+
175
+ * `Combinatorial and Discrete Geometry <https://passagemath.org/docs/latest/html/en/reference/discrete_geometry/index.html>`_: Polyhedra, lattice polyhedra, lattice points in polyhedra, triangulations, fans, polyhedral complexes, hyperplane arrrangements
176
+
177
+ * `Parma Polyhedra Library (PPL) backends for rational polyhedra <https://passagemath.org/docs/latest/html/en/reference/discrete_geometry/sage/geometry/polyhedron/backend_ppl.html>`_, `lattice polygons <https://passagemath.org/docs/latest/html/en/reference/discrete_geometry/sage/geometry/polyhedron/ppl_lattice_polygon.html>`_, `lattice polytopes <https://passagemath.org/docs/latest/html/en/reference/discrete_geometry/sage/geometry/polyhedron/ppl_lattice_polytope.html>`_; via `pplpy <https://passagemath.org/docs/latest/html/en/reference/spkg/pplpy.html#spkg-pplpy>`_
178
+
179
+ * `Python backend for polyhedra over general ordered fields <https://passagemath.org/docs/latest/html/en/reference/discrete_geometry/sage/geometry/polyhedron/backend_field.html>`_
180
+
181
+ * `Linear, Mixed Integer Linear, and Semidefinite Optimization frontends <https://passagemath.org/docs/latest/html/en/reference/numerical/index.html#numerical-optimization>`_
182
+
183
+ * `GNU Linear Programming Kit (GLPK) backend for large-scale linear and mixed integer linear optimization (floating point arithmetic) <https://passagemath.org/docs/latest/html/en/reference/numerical/sage/numerical/backends/glpk_backend.html>`_
184
+
185
+ * `Interactive Simplex Method <https://passagemath.org/docs/latest/html/en/reference/numerical/sage/numerical/interactive_simplex_method.html>`_
186
+
187
+ * see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-polyhedra/MANIFEST.in
188
+
189
+
190
+ Examples
191
+ --------
192
+
193
+ A quick way to try it out interactively::
194
+
195
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[test]" ipython
196
+
197
+ In [1]: from sage.all__sagemath_polyhedra import *
198
+
199
+ In [2]: P = Polyhedron(ieqs=[[0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 1], [0, 0, 1, -1, -1, 1, 0], [0, 0, -1, 1, -1, 1, 0]], eqns=[[-31, 1, 1, 1, 1, 1, 1]]); P
200
+ Out[2]: A 5-dimensional polyhedron in QQ^6 defined as the convex hull of 7 vertices
201
+
202
+ In [3]: P.Vrepresentation()
203
+ Out[4]:
204
+ (A vertex at (31, 0, 0, 0, 0, 0),
205
+ A vertex at (0, 0, 0, 0, 0, 31),
206
+ A vertex at (0, 0, 0, 0, 31, 0),
207
+ A vertex at (0, 0, 31/2, 0, 31/2, 0),
208
+ A vertex at (0, 31/2, 31/2, 0, 0, 0),
209
+ A vertex at (0, 31/2, 0, 0, 31/2, 0),
210
+ A vertex at (0, 0, 0, 31/2, 31/2, 0))
211
+
212
+
213
+ Available as extras, from other distributions
214
+ ---------------------------------------------
215
+
216
+ Additional features
217
+ ~~~~~~~~~~~~~~~~~~~
218
+
219
+ ``pip install "passagemath-polyhedra[graphs]"``
220
+ Face lattices, combinatorial polyhedra, graph-theoretic constructions
221
+
222
+ ::
223
+
224
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[graphs,test]" ipython
225
+
226
+ In [1]: from sage.all__sagemath_polyhedra import *
227
+
228
+ In [2]: c5_10 = Polyhedron(vertices = [[i, i**2, i**3, i**4, i**5] for i in range(1, 11)]); c5_10
229
+ Out[2]: A 5-dimensional polyhedron in ZZ^5 defined as the convex hull of 10 vertices
230
+
231
+ In [3]: c5_10_fl = c5_10.face_lattice(); [len(x) for x in c5_10_fl.level_sets()]
232
+ Out[3]: [1, 10, 45, 100, 105, 42, 1]
233
+
234
+ ``pip install "passagemath-polyhedra[graphs,groups]"``
235
+ Constructing symmetric polyhedra, computing automorphisms, lattice point counting modulo group actions
236
+
237
+ ::
238
+
239
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[graphs,groups,test]" ipython
240
+
241
+ In [1]: from sage.all__sagemath_polyhedra import *
242
+
243
+ In [2]: P24 = polytopes.twenty_four_cell(); P24
244
+ Out[2]: A 4-dimensional polyhedron in QQ^4 defined as the convex hull of 24 vertices
245
+
246
+ In [3]: AutP24 = P24.restricted_automorphism_group(); AutP24.order()
247
+ Out[3]: 1152
248
+
249
+ ``pip install "passagemath-polyhedra[toric]"``
250
+ `Toric varieties <https://passagemath.org/docs/latest/html/en/reference/schemes/index.html#toric-varieties>`_
251
+
252
+ ::
253
+
254
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[graphs,toric,test]" ipython
255
+
256
+ In [1]: from sage.all__sagemath_polyhedra import *
257
+
258
+ In [2]: TV3 = ToricVariety(NormalFan(lattice_polytope.cross_polytope(3))); TV3
259
+ Out[2]: 3-d toric variety covered by 6 affine patches
260
+
261
+ In [3]: TV3.is_orbifold()
262
+ Out[3]: False
263
+
264
+ ``pip install "passagemath-polyhedra[latte]"``
265
+ Installs `LattE integrale <https://passagemath.org/docs/latest/html/en/reference/spkg/latte_int.html#spkg-latte-int>`_
266
+ for lattice point counting and volume computation using generating function techniques.
267
+
268
+ ::
269
+
270
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[latte,test]" ipython
271
+
272
+ In [1]: from sage.all__sagemath_polyhedra import *
273
+
274
+ In [2]: P = polytopes.cube()
275
+
276
+ In [3]: P.integral_points_count()
277
+ Out[3]:
278
+ 27
279
+
280
+ In [4]: (1000000000*P).integral_points_count(verbose=True)
281
+ This is LattE integrale...
282
+ ...
283
+ Total time:...
284
+ Out[4]:
285
+ 8000000012000000006000000001
286
+
287
+
288
+ Additional backends for polyhedral computations
289
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
290
+
291
+ ``pip install "passagemath-polyhedra[normaliz]"``
292
+ `Normaliz <https://passagemath.org/docs/latest/html/en/reference/spkg/normaliz.html#spkg-normaliz>`_, via `PyNormaliz <https://passagemath.org/docs/latest/html/en/reference/spkg/pynormaliz.html#spkg-pynormaliz>`_,
293
+ provides very fast computations in particular for polyhedra with data in algebraic number fields.
294
+
295
+ ::
296
+
297
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[normaliz,test]" ipython
298
+
299
+ In [1]: from sage.all__sagemath_polyhedra import *
300
+
301
+ In [2]: gap_norm = polytopes.grand_antiprism(backend='normaliz'); gap_norm
302
+
303
+ In [3]: gap_norm.f_vector()
304
+
305
+ ``pip install "passagemath-polyhedra[cddlib]"``
306
+ cddlib provides support for computations with polyhedra in floating-point arithmetic.
307
+
308
+ ::
309
+
310
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[cddlib,test]" ipython
311
+
312
+ In [1]: from sage.all__sagemath_polyhedra import *
313
+
314
+ In [2]: P1 = polytopes.regular_polygon(5, exact=False); P1
315
+ Out[2]: A 2-dimensional polyhedron in RDF^2 defined as the convex hull of 5 vertices
316
+
317
+ ``pip install "passagemath-polyhedra[lrslib]"``
318
+ `lrslib <https://passagemath.org/docs/latest/html/en/reference/spkg/lrslib.html#spkg-lrslib>`_
319
+ can be used for polytope volume computations and for enumerating Nash equilibria.
320
+
321
+ ::
322
+
323
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-polyhedra[flint,lrslib,test]" ipython
324
+
325
+ In [1]: from sage.all__sagemath_polyhedra import *
326
+
327
+ In [2]: A = matrix([[2, 1], [1, 5/2]]); B = matrix([[-1, 3], [2, 1]])
328
+
329
+ In [3]: g = NormalFormGame([A, B]); g.obtain_nash(algorithm='lrs')
330
+ Out[3]: [[(1/5, 4/5), (3/5, 2/5)]]
331
+
332
+ ``pip install "passagemath-polyhedra[polymake]"``
333
+ `Polymake <https://passagemath.org/docs/latest/html/en/reference/spkg/polymake.html#spkg-polymake>`_, via `JuPyMake <https://pypi.org/project/JuPyMake/>`_
334
+
335
+ This currently requires a separate installation of polymake.
336
+
337
+ Optional backends for optimization
338
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
339
+
340
+ ``pip install "passagemath-polyhedra[cbc]"``
341
+ `COIN/OR CBC <https://passagemath.org/docs/latest/html/en/reference/spkg/cbc.html#spkg-cbc>`_ Mixed Integer Linear Optimization solver,
342
+ via `sage_numerical_backends_coin <https://passagemath.org/docs/latest/html/en/reference/spkg/sage_numerical_backends_coin.html#spkg-sage-numerical-backends-coin>`_
343
+
344
+ ``pip install "passagemath-polyhedra[cplex]"``
345
+ CPLEX Mixed Integer Optimization solver (proprietary; requires licensed installation),
346
+ via `sage_numerical_backends_cplex <https://passagemath.org/docs/latest/html/en/reference/spkg/sage_numerical_backends_cplex.html#spkg-sage-numerical-backends-cplex>`_
347
+
348
+ ``pip install "passagemath-polyhedra[cvxpy]"``
349
+ `CVXPy <https://passagemath.org/docs/latest/html/en/reference/spkg/cvxpy.html#spkg-cvxpy>`_ as middle-end for `various backends <https://www.cvxpy.org/install/>`_
350
+
351
+ ``pip install "passagemath-polyhedra[gurobi]"``
352
+ Gurobi Mixed Integer Optimization solver (proprietary; requires licensed installation), via `sage_numerical_backends_gurobi <https://passagemath.org/docs/latest/html/en/reference/spkg/sage_numerical_backends_gurobi.html#spkg-sage-numerical-backends-gurobi>`_
353
+
354
+ ``pip install "passagemath-polyhedra[scip]"``
355
+ `SCIP <https://passagemath.org/docs/latest/html/en/reference/spkg/scip.html#spkg-scip>`_ Mixed Integer Optimization solver,
356
+ via `PySCIPOpt <https://passagemath.org/docs/latest/html/en/reference/spkg/pyscipopt.html#spkg-pyscipopt>`_
357
+
358
+
359
+ Development
360
+ -----------
361
+
362
+ ::
363
+
364
+ $ git clone --origin passagemath https://github.com/passagemath/passagemath.git
365
+ $ cd passagemath
366
+ passagemath $ ./bootstrap
367
+ passagemath $ python3 -m venv polyhedra-venv
368
+ passagemath $ source polyhedra-venv/bin/activate
369
+ (polyhedra-venv) passagemath $ pip install -v -e pkgs/sagemath-polyhedra
@@ -0,0 +1,208 @@
1
+ passagemath_polyhedra.libs/libgcc_s-0cd532bd.so.1,sha256=QrXyyMoT5eFz2Df1EXoEtsBCQ3VIESveeHklGujc_48,183337
2
+ passagemath_polyhedra.libs/libgmp-0e7fc84e.so.10.5.0,sha256=19mj7ISusOKPTVdhqjzZ-Ts-9Qf82f4a_8Sslp-ypCg,773097
3
+ passagemath_polyhedra.libs/libgomp-8949ffbe.so.1.0.0,sha256=DA-GwiUTDPG1OKrte0raDXUqJawYlemQc7_wDad62Zk,350945
4
+ passagemath_polyhedra.libs/libstdc++-5d72f927.so.6.0.33,sha256=i_QxuLSNJcDImiug4WsF5wNgprWyeL3Mc09ILo-0-Dc,3564129
5
+ sage/all__sagemath_polyhedra.py,sha256=VzeBbSQmBnTIy9KbebMG26Wav0WfPRFqKl_LiGdR8J4,1345
6
+ sage/game_theory/all.py,sha256=iIV_MBGNgHFl4o-H7wH2Y71OJAYCpA89Uo9WY2_YkLU,366
7
+ sage/game_theory/catalog.py,sha256=mmnFcKG7cHLUQ5dln-TyP5TJujCA5IItHcLcIzx22LE,136
8
+ sage/game_theory/catalog_normal_form_games.py,sha256=JmV-zWugQeCxov5e9UJT7Yzd8JeY9JcQSyPjRrSk5WI,31006
9
+ sage/game_theory/cooperative_game.py,sha256=APXTXVoiIoyhAUEdIxAorVNFTkF4YPEooKKaAoj9SO4,33296
10
+ sage/game_theory/matching_game.py,sha256=87EoEx-s850LQSWQl8L1y6i22Yfg12fz3rguGQR354c,37280
11
+ sage/game_theory/normal_form_game.py,sha256=cy0bq6THnie4vXRMIyx1wPssLS4l8lG-_-KT58wK-0w,103701
12
+ sage/game_theory/parser.py,sha256=Dadp81OyBPhtD48Js7YUs3iGcafKG59Mz8Q48hlA8jY,12187
13
+ sage/geometry/all__sagemath_polyhedra.py,sha256=-_ZJoah622e22ApV14p9UVJ-bogur5tNgyjbAuDslWc,1122
14
+ sage/geometry/cone.py,sha256=ix5--8fTKK85HeZw5-Lo8B6oNTqdD_oLmIev9QhPdLQ,249968
15
+ sage/geometry/cone_catalog.py,sha256=NvjO93iEBnzPTN6CjY3LPleTG8pT4-dSEySEhYEiVTM,28632
16
+ sage/geometry/cone_critical_angles.py,sha256=gKseu7D2IH5h9S3K-r7NaeFeNHRKIoF-8Fn2WzPdOvQ,37754
17
+ sage/geometry/convex_set.py,sha256=KLl3HSHD9zF721hV0cFxJtpWNRMOHeow59FNKS3zp4U,36517
18
+ sage/geometry/fan.py,sha256=zCQfeUl9d0HPA6hX6cIpHAQlqTA9CgEoA0murzxqzlM,140393
19
+ sage/geometry/fan_isomorphism.py,sha256=9R_vCWyqMi8qWky1T1PpXWASx2T9EDu4hhgIFdQ4KZQ,14360
20
+ sage/geometry/fan_morphism.py,sha256=kpF3LxKEqAMnzf2kDuzyhPNxlgQQ94aZ40Q9BPCE2Do,76418
21
+ sage/geometry/hasse_diagram.py,sha256=VTdFT8ivZhIImLeYnsK06hgRbDTBpm6E6GesNx8dbXM,8673
22
+ sage/geometry/integral_points.py,sha256=V48Vs4dG6fZRcxmAr9ScqN3jERcKgUqTq8Aod5eTa5Q,1072
23
+ sage/geometry/integral_points_generic_dense.cpython-314-x86_64-linux-musl.so,sha256=rq54bEybpSYo49L5kZ-5cmGRR5EOADYpbUCBZ0youoc,1560712
24
+ sage/geometry/integral_points_generic_dense.pyx,sha256=c848OfZnrbOYfGJBfI44DiQ5XTi7IsbntBe6PjrMJ0Q,275
25
+ sage/geometry/lattice_polytope.py,sha256=1brMNpTtL_fLa8jvoa9H1rcZ0Y03haAUmP3zClY8QPM,213397
26
+ sage/geometry/linear_expression.py,sha256=lYY_Itcvq5d4Nnquc3z3uTy3L7xJkHz7jyvVOQNZrCc,24729
27
+ sage/geometry/newton_polygon.py,sha256=S8lr5dh4dPL7x7cyZRBWifpI9ZqEgca8rIKpdX7hnC8,25033
28
+ sage/geometry/point_collection.cpython-314-x86_64-linux-musl.so,sha256=GmD8wZfO9WVVYavQh2mRwgAdQOKxbmW3Ss8TgDzk6ks,1211800
29
+ sage/geometry/point_collection.pyx,sha256=Ua2x8Lsw2-YE2hAo_of4V6OetcKZxICXF_Cul_MFAuQ,30166
30
+ sage/geometry/polyhedral_complex.py,sha256=NeSrleLIcAGL1MRCUFy4l6hS1d8WBL1z1VDZIEVYr5k,106721
31
+ sage/geometry/pseudolines.py,sha256=L_r3dGqbSMLtKCfGbBPLhqFuDJGFJ38lxUKy_ESOIqE,19173
32
+ sage/geometry/relative_interior.py,sha256=1HWZLrhsXGJnIUMRlNGKWuN299I2Nr6WxJqQ9vIFGmQ,15715
33
+ sage/geometry/toric_plotter.py,sha256=6RM_PEHbUt_zlDIlvEpL7EgwTURAAOMeYoAdVV9sBd4,41310
34
+ sage/geometry/voronoi_diagram.py,sha256=qlpoY3sxfUFUTRhhQtXzlrClzROTRruYH5Df2qyBBnw,13521
35
+ sage/geometry/hyperplane_arrangement/affine_subspace.py,sha256=1YaIFU5Ip3hGtGvK2o40Q027TVlyZ4PVlhQErGv4mVI,12186
36
+ sage/geometry/hyperplane_arrangement/all.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
37
+ sage/geometry/hyperplane_arrangement/arrangement.py,sha256=nPYrn9QVxjWO0v_Qev65G8L627bBSSpWuplffxa-6sk,151461
38
+ sage/geometry/hyperplane_arrangement/check_freeness.py,sha256=meD0cajAB-G2qloSG-6_YCDXw6-fzvkq32Z8Za3EbXY,4357
39
+ sage/geometry/hyperplane_arrangement/hyperplane.py,sha256=i5OIogWCtEfvq3kDZbhFCMm8RW6nUenoF1Wx_Z779ac,24315
40
+ sage/geometry/hyperplane_arrangement/library.py,sha256=IvJj2eqUoVGdT0KFf5FnhTXgTheN5-OGH9Zas0UFLxc,28347
41
+ sage/geometry/hyperplane_arrangement/ordered_arrangement.py,sha256=98ajk4ROSqLn3SlvG5ydWqeNVHmzWq56BYmElJSf9cc,25691
42
+ sage/geometry/hyperplane_arrangement/plot.py,sha256=Ik9nivMEu8eHDfEcrtFpC0zACjuNcAc65UbAbtd3Bvk,20726
43
+ sage/geometry/polyhedron/all.py,sha256=f0GOuWMIHkWmbVh90dL-05ckSDTP4LZeZGQj9N-0grk,347
44
+ sage/geometry/polyhedron/backend_cdd.py,sha256=ImvS2VgB2f3o6Y7oGo7n9NiYoL1uewykDdSupgnYMEs,21256
45
+ sage/geometry/polyhedron/backend_cdd_rdf.py,sha256=JjwmuEcx-yUWOLgDusoaumKAE59BZA7_dBDq84GJdRU,10469
46
+ sage/geometry/polyhedron/backend_field.py,sha256=Tv6hqaUib-RopenujvBtVvhpv6J195Id2VizLr42OK4,15392
47
+ sage/geometry/polyhedron/backend_normaliz.py,sha256=UpLfUUpmQ43D1iYjnGOTyIFlL9guUt3rf5rXnIskZsk,103442
48
+ sage/geometry/polyhedron/backend_number_field.py,sha256=7CiRgMp8MlmhUoZ_a-nTl7wc3KTHDz1Nl3GkcnHQihI,8171
49
+ sage/geometry/polyhedron/backend_polymake.py,sha256=J5Jj-ex-vMLX1eUBCkquoLe221BqAfsIUfH26tBo7BU,30840
50
+ sage/geometry/polyhedron/backend_ppl.py,sha256=lJ_MaZWQpATMssIrpLGNbvfLyGzCyXI87LTtgp4axB0,20561
51
+ sage/geometry/polyhedron/base.py,sha256=LsG19XcmI4uORpibkdXgcsnEQmyIl9WBQRSaqGXvi1c,47673
52
+ sage/geometry/polyhedron/base0.py,sha256=kG2DEymqh-y4NJv68Kp9mwZt4ywQZg62_YDWV87lpsw,52186
53
+ sage/geometry/polyhedron/base1.py,sha256=98Lir6B9tcm_0SN_CJbZuTgqxDDkNm1jmgthrdpGHm8,29094
54
+ sage/geometry/polyhedron/base2.py,sha256=Y8Jk9FrrZOKle8jdkQ0ObCXCzroPVp8U_0sxOSaZXmY,31839
55
+ sage/geometry/polyhedron/base3.py,sha256=FX6xfC5QHRF-CH_A-uxNKOXunCrOgKwXivgqI-ZNCbo,72706
56
+ sage/geometry/polyhedron/base4.py,sha256=YIYuiZXD7ofmmOgas9rvHCQ85ibAg_Vf5YmbNONssYw,52400
57
+ sage/geometry/polyhedron/base5.py,sha256=hlL5TTwXz3wfSvFZlorNV3F1X4f_cCnWx7iWSYPhqEk,107661
58
+ sage/geometry/polyhedron/base6.py,sha256=Q10hDYxGBhn-S9sMUzgMriT_V3h0vzPbR_CXEK02FcE,80204
59
+ sage/geometry/polyhedron/base7.py,sha256=eMIQgEaes-rssxPaBgPBTtLGrYDoolEhuLICO5eu4Mk,41934
60
+ sage/geometry/polyhedron/base_QQ.py,sha256=ypi55pOIzVjXDSVEjE32A32Q7hpejGhUuiqmQ4gLWHw,54631
61
+ sage/geometry/polyhedron/base_RDF.py,sha256=4lcqqFmoUf4hwiYldg2DE2y0KrbHxjeKYNb_twc2BIc,2100
62
+ sage/geometry/polyhedron/base_ZZ.py,sha256=tvICsTWpcOsCmm5yogtcXDVwbE40ghbBcgTIlcoZQxk,38268
63
+ sage/geometry/polyhedron/base_mutable.py,sha256=GISesNSqY09MiMiMAR_jLmJfHeFbarJCsfMFgTNba4M,7103
64
+ sage/geometry/polyhedron/base_number_field.py,sha256=X6L91Owa8ayQ9cua5VOo--ciR_iALE04ZoJGHbdQ7OA,6274
65
+ sage/geometry/polyhedron/cdd_file_format.py,sha256=mr60PxPki2wQEf3rvZj4uS00NoUK2vKqNKM8PTNZsyg,4955
66
+ sage/geometry/polyhedron/constructor.py,sha256=698_AKHFvg1u2XsZTMLVq0gNjULWipOoOEnfKNUAsKM,31908
67
+ sage/geometry/polyhedron/double_description.py,sha256=NXNkNypqaGiYBwzs77hc9w0Tsn6impQfhyJpodOX4hs,26092
68
+ sage/geometry/polyhedron/double_description_inhomogeneous.py,sha256=lO9TEmsvmgnaM4cgq5qrLLCm2OaHUWh9HilcJxT-sLo,19601
69
+ sage/geometry/polyhedron/face.py,sha256=oJRMa_C3WxcpXgoeGoOlLKaK6uc2B4Q2a18Jal22y7k,36780
70
+ sage/geometry/polyhedron/generating_function.py,sha256=ihhBiavtR2yUBX2eL93fbltimvyYHFlrL9K3WTnfXYI,71807
71
+ sage/geometry/polyhedron/lattice_euclidean_group_element.py,sha256=GbhOcQB7e5fjBlCWToDkEO19Muo1R7fpefP0nkg2gmU,5967
72
+ sage/geometry/polyhedron/library.py,sha256=DAW27cMSW9fYqvjiRUFiEaFLrTY6bXhzow-qScfSJyg,147597
73
+ sage/geometry/polyhedron/misc.py,sha256=EaVRWnNSfTETd2L93gHYXOoO5OQo50NhnnZJiDQb-MY,3028
74
+ sage/geometry/polyhedron/palp_database.py,sha256=MNezz9PQ3MDwjjJsybj4Axfi_2uupg9FjEXgyedvFCw,15803
75
+ sage/geometry/polyhedron/parent.py,sha256=sCwemgYJMU0iMwA9Kas-40cn1zq8d-Vlg51iMFDpEn8,49396
76
+ sage/geometry/polyhedron/plot.py,sha256=Aa6LbesjYl0TCcrN46-LF4MesFYxPVsNYmHKdLANlyQ,82122
77
+ sage/geometry/polyhedron/ppl_lattice_polygon.py,sha256=bEQ3m7EyeLpwIioG7_BkoZLKV8ewrFHcyDbATmRrtZE,22153
78
+ sage/geometry/polyhedron/ppl_lattice_polytope.py,sha256=fDkgC1D4jbbd-CODevS7BtzmGcELWDsQDF05AxWidZk,49897
79
+ sage/geometry/polyhedron/representation.py,sha256=ts4Bu0TWgJWxBeH_FT96-R8gZEA_RQGqD1nyv6QmSlQ,55243
80
+ sage/geometry/polyhedron/combinatorial_polyhedron/all.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
81
+ sage/geometry/polyhedron/combinatorial_polyhedron/base.cpython-314-x86_64-linux-musl.so,sha256=BboqDLtER_IhXRLUpaPquik8YX8TT49PLGSKieBnjQE,3746257
82
+ sage/geometry/polyhedron/combinatorial_polyhedron/base.pxd,sha256=yhN1XgEZ85N0nR7QDOg2NSvGHj5UAl-fDwEEV619svU,4098
83
+ sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx,sha256=v3gjG9bsd0IBu3w7LLyQXKjMcuj3l9iJhV-w3PHFa1g,146138
84
+ sage/geometry/polyhedron/combinatorial_polyhedron/combinatorial_face.cpython-314-x86_64-linux-musl.so,sha256=CZykt9Ooe-Ei2bpvSeGk7H_ZZeXyOMD_vQm8b-Krzqc,874473
85
+ sage/geometry/polyhedron/combinatorial_polyhedron/combinatorial_face.pxd,sha256=pwXlD_jx_fg9hGx-hb93_zbDl6EHJWJvBmNg3KYfWlY,1782
86
+ sage/geometry/polyhedron/combinatorial_polyhedron/combinatorial_face.pyx,sha256=hUNvaz3sfKgy4GNF5e74YfaXf97I7baeKG8I77xvQIA,39883
87
+ sage/geometry/polyhedron/combinatorial_polyhedron/conversions.cpython-314-x86_64-linux-musl.so,sha256=RX52MUR9tEw8LmGc_lEGXgFI0pngio7g9-lfQKN4RCY,726465
88
+ sage/geometry/polyhedron/combinatorial_polyhedron/conversions.pxd,sha256=1jOLLePlKwt5CJnjXtfj1DyU4W-c2EAdnyowkJPyJu4,365
89
+ sage/geometry/polyhedron/combinatorial_polyhedron/conversions.pyx,sha256=eGBgIHKiGVJGYgEBSA2P_jiLTtGnHDPIO9Qlv45aGeE,18803
90
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_data_structure.pxd,sha256=Yio6wTA2kEeQls07hQWVkBcYeAqBQFuik3H7AeVVwYA,6438
91
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_iterator.cpython-314-x86_64-linux-musl.so,sha256=5oZJPLjCOGReS_yM-0LIm-fnU_eG5VqF-OfXsoyBiFs,933017
92
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_iterator.pxd,sha256=Lq6QNsS3DnUUeHqkZZQQ996xyRzECFqEio5qEgWLh9s,4644
93
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_iterator.pyx,sha256=sWM2nnuPt_2C4K97ZgD6-FSirZjCfoEvucet1Ce4gmA,90221
94
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_list_data_structure.cpython-314-x86_64-linux-musl.so,sha256=HazQE-JPQf8mg2Ebe3UTBmovgx6NnR8JEMy-BbC92jQ,103352
95
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_list_data_structure.pxd,sha256=2_L1zSSHpCxDBufxjL8mOoFUj__OvMfJouYzaPzxk2Q,13151
96
+ sage/geometry/polyhedron/combinatorial_polyhedron/face_list_data_structure.pyx,sha256=3Tqdtx-8T9DkWslPzK82n27p_TgeuhyKPR-yDF18LBo,2859
97
+ sage/geometry/polyhedron/combinatorial_polyhedron/list_of_faces.cpython-314-x86_64-linux-musl.so,sha256=sr0gwUWKwyGshTF6lubDZTG5TmAUwsjnognzDxf3R9M,529369
98
+ sage/geometry/polyhedron/combinatorial_polyhedron/list_of_faces.pxd,sha256=yPhgmiCIyYePn8aRrXWUndALSX6XojSV0nyyBeDpo9o,1154
99
+ sage/geometry/polyhedron/combinatorial_polyhedron/list_of_faces.pyx,sha256=9huRMVWU8UpHiIqMa4tmbE_QBSc2zYgn8h620tWoqhA,21823
100
+ sage/geometry/polyhedron/combinatorial_polyhedron/polyhedron_face_lattice.cpython-314-x86_64-linux-musl.so,sha256=gszZgz8i6qtfrYAVrI5IS87mKHUf3-RFc5F6_aX-Kzc,668785
101
+ sage/geometry/polyhedron/combinatorial_polyhedron/polyhedron_face_lattice.pxd,sha256=AvDecggtVui3oUQcoCwBguJJBzT9MDA4W6q70KsMv0A,2921
102
+ sage/geometry/polyhedron/combinatorial_polyhedron/polyhedron_face_lattice.pyx,sha256=3syIslI5bst2-DAGcU5PDomSrnH847XGyVBakUQWIcw,24147
103
+ sage/geometry/polyhedron/modules/all.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
104
+ sage/geometry/polyhedron/modules/formal_polyhedra_module.py,sha256=H1M4Q-gVvLo3aGkPyCCMRvdfQxpcqiPAlBIPzFB4lqU,6114
105
+ sage/geometry/triangulation/all.py,sha256=hZDvbBIQgzsXOQvCh2SFC9BPl-MP3Za2ltX254BOibs,127
106
+ sage/geometry/triangulation/base.cpython-314-x86_64-linux-musl.so,sha256=mO2VX47erSD6Q9oRZcTMmZOpRyIAMr8uFeC1rNYViFQ,2083825
107
+ sage/geometry/triangulation/base.pyx,sha256=CcdBXQjqRq5UKFmvF47CdbY3kezZJOlYXdVJm0WUq0s,30274
108
+ sage/geometry/triangulation/data.h,sha256=0wVPN5U3c9FNqkoPq1EbrZOhkBrHNJggn-7jS-GsJwU,3618
109
+ sage/geometry/triangulation/data.pxd,sha256=7w9mhv0OphWg4LW_0BopsW4D1FaGkvrSCkasXCCdVyY,158
110
+ sage/geometry/triangulation/element.py,sha256=uRnbu-I4-Y1RqJ7mIvRnsCdDwIA-sG0zpZcNOsdVPI8,36416
111
+ sage/geometry/triangulation/functions.h,sha256=Qs1wMS-9jKkVzHqvQUry5MRdXO94rW0ST2Oio6EUCgY,155
112
+ sage/geometry/triangulation/functions.pxd,sha256=tkhKwOUZkLfQQIYTx1J3ub1dOGKK7PKROU-DnjQlYL4,136
113
+ sage/geometry/triangulation/point_configuration.py,sha256=AcTqmcyNfKoq6xDAZXUNQw9hEGKfjmTxzyd-C95reKE,84498
114
+ sage/geometry/triangulation/triangulations.h,sha256=Sgf7N2q9oFos59o4kaQBV6FnDsKlQyLIbt233HGINew,1234
115
+ sage/geometry/triangulation/triangulations.pxd,sha256=sARsIChJqSTji_Vnr_FjvV8C-ip_VWsps9PWZmKsuHA,355
116
+ sage/interfaces/all__sagemath_polyhedra.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
117
+ sage/interfaces/polymake.py,sha256=aqIYiQollU3FKWT5FcSpXX3e7wnqhxqjMDQiSErjykE,76807
118
+ sage/numerical/all.py,sha256=G0M2Yf4lcL46RVDRsfghmIsXkWkTQHsJNRishtSekEw,581
119
+ sage/numerical/all__sagemath_polyhedra.py,sha256=919uMNLV86OInEG6t6qAjZtpE7usy3cYFnAub4iijx0,529
120
+ sage/numerical/interactive_simplex_method.py,sha256=hB3EdLJhhTjQINmw5tW-DBb2W3zNe6gCDBWrRY8CAp4,181303
121
+ sage/numerical/knapsack.py,sha256=uGP7S0Y7w0RhrBHPNJHUtRyg0GjzAQZ6wrjJXM6JXNU,23947
122
+ sage/numerical/linear_functions.cpython-314-x86_64-linux-musl.so,sha256=jVMVeWXWBhCICYBSd3fPoOblZ3C8fMSnD4or7zzzYDI,1364760
123
+ sage/numerical/linear_functions.pxd,sha256=6Ur2bqh-6yBoOpw-fU_dGKAvRAXYJIRbkxq5LWA93bk,1089
124
+ sage/numerical/linear_functions.pyx,sha256=Y-0QrlZzDmIhw5fbP3UoyoqMhY1YLgT3FgJxwx9iIj4,52370
125
+ sage/numerical/linear_tensor.py,sha256=mS9vjSn1HLCkB_MwLBHwd1kmLTn09gt9WjPMpcRI-8Q,15511
126
+ sage/numerical/linear_tensor_constraints.py,sha256=xhv_mFvG1-QlM_5JbUwRzThPWAydtSZBoBMvkNiFzG4,14956
127
+ sage/numerical/linear_tensor_element.cpython-314-x86_64-linux-musl.so,sha256=XHxT0doD78BzO8bIvmSni63ApkvCcCbm7iqi46Uvdbs,778080
128
+ sage/numerical/linear_tensor_element.pxd,sha256=KiJZamtNwBh-qjJVctqbjRiQWZdNi9wz97hpcur36W8,194
129
+ sage/numerical/linear_tensor_element.pyx,sha256=kWDDxacjWJsp4Cx6TVzG2tlXncVb5z_oW1xxj9t5d5s,15417
130
+ sage/numerical/mip.cpython-314-x86_64-linux-musl.so,sha256=1hGTnh9pvOVE18xa7VioI-XnPXCGeQiz9eTktnz6B40,2559288
131
+ sage/numerical/mip.pxd,sha256=cGeXE3lPa5E7H7U-U3ImT-vSo8eqWFlTN4PVxngNMSs,1120
132
+ sage/numerical/mip.pyx,sha256=DkStzMmKSqiLU8QqGyI6o5czIBsOQPhbM5AheLbcsFw,134520
133
+ sage/numerical/sdp.cpython-314-x86_64-linux-musl.so,sha256=Q_yD3TKf4ktdmM-duBR78EBRAqjdCtGuQIoXEUjaln8,1293208
134
+ sage/numerical/sdp.pxd,sha256=sfIqekttQvN5N43WfniGS6kfOB5XEC-evQNxUhOSL_0,1164
135
+ sage/numerical/sdp.pyx,sha256=plAUmlSMli0a5LuDhu7md5g1JL0hYLg7vJywYLOW27E,49355
136
+ sage/numerical/backends/all.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
137
+ sage/numerical/backends/all__sagemath_polyhedra.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
138
+ sage/numerical/backends/cvxopt_backend.cpython-314-x86_64-linux-musl.so,sha256=YNZZej340j3ZhOR4kiHRCvACBtGciDrr70xCgMnyNBs,1056360
139
+ sage/numerical/backends/cvxopt_backend.pyx,sha256=90JOjOoefaa6G2OZdMO0H9M-0sQfug8kM7FQsEoD2mQ,32099
140
+ sage/numerical/backends/cvxopt_backend_test.py,sha256=5FROhb8uv_jQOuphjLIhy_VOJ1fPY0nxOpVBCzAl8dM,834
141
+ sage/numerical/backends/cvxopt_sdp_backend.cpython-314-x86_64-linux-musl.so,sha256=N3teqqCl4DuQ6V_zdEaMG8ms3PtadEheVP7t8JRU5yQ,717352
142
+ sage/numerical/backends/cvxopt_sdp_backend.pyx,sha256=NCq7iXCCQZjt8Qdg24a695TjsE7cN3CYqoIe5jT-kks,14671
143
+ sage/numerical/backends/cvxpy_backend.cpython-314-x86_64-linux-musl.so,sha256=t9I63fCl4jg-_2hTv2U7bsvvSczKdCW6uEXI-cEwfyM,1278464
144
+ sage/numerical/backends/cvxpy_backend.pxd,sha256=p2GKJSvFNblYmpK2NeH7YwVGu4VMVnG4coCdUIt2xek,1390
145
+ sage/numerical/backends/cvxpy_backend.pyx,sha256=923cU0penU7ZCKwURr4gUdpdpo8AMRs3Av8NwNHAJHU,31553
146
+ sage/numerical/backends/cvxpy_backend_test.py,sha256=iNyGauzoCxHyN93Gh8LbirONKr6Bcc7v508WyAPQL3g,473
147
+ sage/numerical/backends/generic_backend_test.py,sha256=m0k25bdrfvOZiL9zzimj8Upsm5Gy6W9eLTeFki0Doxw,889
148
+ sage/numerical/backends/interactivelp_backend.cpython-314-x86_64-linux-musl.so,sha256=S1r89qFp-Dl0gpm9un_e1ZlpeP8t4cMqO2wEt87sJ60,1430640
149
+ sage/numerical/backends/interactivelp_backend.pxd,sha256=jbiRhBROPhMHBPLvvgSpDmNI0ew_LNMRuF7mErpbK1M,1276
150
+ sage/numerical/backends/interactivelp_backend.pyx,sha256=9O1kp-KKel1o65j3lk2fKRSTNxXjzTjiJ0otD581T-U,42533
151
+ sage/numerical/backends/interactivelp_backend_test.py,sha256=5nBccm9J9UtcI37eDcli1UUCdtX4HrGwvkQxb4-d0AM,459
152
+ sage/numerical/backends/logging_backend.py,sha256=iXP1h3n1zyd9CSKmpnAfz54FWIUHI2c6OppZ1ky9lhQ,15334
153
+ sage/numerical/backends/matrix_sdp_backend.cpython-314-x86_64-linux-musl.so,sha256=d8Og6kI6QqeAF5n810N3GBajIeg3-I2CSPVMhQfegR4,770344
154
+ sage/numerical/backends/matrix_sdp_backend.pxd,sha256=WWZCkgndram96A2Rw2iHoBJ7Lgun-42V7XpLkCXkvpg,362
155
+ sage/numerical/backends/matrix_sdp_backend.pyx,sha256=btqQmRzPbR0I62rn6znGlJjlqfU02dxwRGPmbHzvNQw,14917
156
+ sage/numerical/backends/ppl_backend.cpython-314-x86_64-linux-musl.so,sha256=VFKY9BHHCrYOknHx-pRTIChtL2FTDxlEGON5yeQXVqs,1281728
157
+ sage/numerical/backends/ppl_backend.pyx,sha256=KmVJfd_EQiO50J7D1i-Xrow24oCxvLdX4nNY6husyjg,35982
158
+ sage/numerical/backends/ppl_backend_test.py,sha256=oZ8N2oKi3wu1V79BGYnzNBdFDtYSIRh8jmSc7MNpQzY,440
159
+ sage/numerical/backends/scip_backend.cpython-314-x86_64-linux-musl.so,sha256=OsFk02jTprL3KuatIrM4esqTXJ9_IWzhToVTixp2O3Q,1400288
160
+ sage/numerical/backends/scip_backend.pxd,sha256=bMUmB3-ZIQpR0iK3BT9vQnn0alEJFxbKkR8r6JicCMk,854
161
+ sage/numerical/backends/scip_backend.pyx,sha256=0f8lujlFNkKByz4kJIjsZjcD9esqpDvp1-n59HfixC0,41999
162
+ sage/numerical/backends/scip_backend_test.py,sha256=IZcdDQBeOv7qlMilYXqG2pZ2jE7YaOUq8CnopZBseu4,475
163
+ sage/rings/all__sagemath_polyhedra.py,sha256=jL42bav3uF1i_br9U0JzRYSOVqvXQc64tRqzK-QrBbo,109
164
+ sage/rings/polynomial/all__sagemath_polyhedra.py,sha256=eHgcth5JAfj6znQBREQjz-HQyPd5bvY4Ve7lgY3_IFk,259
165
+ sage/rings/polynomial/omega.py,sha256=O_bq4YN31QmX88974F8U4Ag5_fZTghhsfVm_Hqj4jAQ,32421
166
+ sage/schemes/all__sagemath_polyhedra.py,sha256=4l3RkFm9XlBkxEwkDCva-832OQmXneOPtYP8yJJUFxg,85
167
+ sage/schemes/toric/all.py,sha256=mFWIqoMQf5edfq6n5qCdzWE-qVsNOTMplIfcMulnan4,502
168
+ sage/schemes/toric/chow_group.py,sha256=ZaSpJNG4PagYKkQbpgBo6kiHCkxPq47ZYkYAN8VLQQw,43384
169
+ sage/schemes/toric/divisor.py,sha256=snO-NUT6YyV2WghnX-oziAZK7iqKHT3o4yFgmhoSIOQ,73549
170
+ sage/schemes/toric/divisor_class.cpython-314-x86_64-linux-musl.so,sha256=OyZjXBW0mIdXcH6-yJs_AWrPD955O2pWDqJoTHudtK4,554409
171
+ sage/schemes/toric/divisor_class.pyx,sha256=GdjxhF1TGrs9Bv7pkji6G1Cw4h46cEAlKacgHKuIH8Q,10060
172
+ sage/schemes/toric/fano_variety.py,sha256=JaLduwM-_yYPW05FaDbYx6tfi2hEZ2c-uK8l23tAGy0,69936
173
+ sage/schemes/toric/homset.py,sha256=hWrz_VHrSMjMBuuu2dtQBNqz7WCnAB52oI5tg6mLyyA,24278
174
+ sage/schemes/toric/ideal.py,sha256=eUaTln_kyaLm7-R1Ulscp0OmElHcU3SqlzFQ746PHwU,15282
175
+ sage/schemes/toric/library.py,sha256=1epknKLYBdbgZ32QalXAb2iH3y61CWivs2ma8zvPRt4,48168
176
+ sage/schemes/toric/morphism.py,sha256=CqKCoT-1pB15gdjyu41J4xZnaODV1lrWWogCjqFfgHQ,76577
177
+ sage/schemes/toric/points.py,sha256=b5Z5kNEPWwas2n9lPbJaS73ksmhpuKUb_ofMGKFZb50,36001
178
+ sage/schemes/toric/toric_subscheme.py,sha256=AeYT1Uz9c1B7JZDPdMVf7R7mcoQa4YqIXlo6U8ciRTM,33475
179
+ sage/schemes/toric/variety.py,sha256=LhcFtN_1cPz4M63PMrl2WhH6y_jpPK6gxUxWLVdJgxE,124003
180
+ sage/schemes/toric/weierstrass.py,sha256=Hh2SoJL2bBhnhdFf92c8x0PkSIdG87LBlGxv_9L4D48,39637
181
+ sage/schemes/toric/weierstrass_covering.py,sha256=GNcro607UxSsszNTrajLnrJybSpNOq0LT4mfBtVbSLE,18300
182
+ sage/schemes/toric/weierstrass_higher.py,sha256=ODotIk-4hcQR067xCt4g0-G4VdJMKoRNuJV4EgFzJo8,11492
183
+ sage/schemes/toric/sheaf/all.py,sha256=LolvTCzFQLU1zFvEF3eKq8UENEuaxFb6_fOHRj_4pOA,48
184
+ sage/schemes/toric/sheaf/constructor.py,sha256=9k-RXw9qDzqnG0dIKtBOSDG5NjS7V0iJLWbwV2829c4,9204
185
+ sage/schemes/toric/sheaf/klyachko.py,sha256=7PQeyfT1VG8BM5PQjkxYqVzU4kmaSxtV3bER6xVBiS8,31426
186
+ sage_wheels/share/reflexive_polytopes/reflexive_polytopes_2d,sha256=8ORzEes2X3AOKgOmsGH-6F1E8dOTes_zKHZyP0fr7bQ,361
187
+ sage_wheels/share/reflexive_polytopes/reflexive_polytopes_3d,sha256=HVkKsXuxZghNh0ZxI8fJ_xid0VtC5L9NXfZ5D_0Q_tM,254744
188
+ sage_wheels/share/reflexive_polytopes/Full2d/zzdb.info,sha256=cZ_1jKaJhDeb5ZYncpg96RKo10A3Fz7VyWUmjBNa2qw,70
189
+ sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v03,sha256=3eX_Dn_VwQnQrKfAHR4mYOXzGvEZnoWE03z5uHg1Syw,5
190
+ sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v04,sha256=DoHIOgT060XkzDk7NpI-VYRN3E16I8jgH7AJXRt2A3E,8
191
+ sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v05,sha256=t_hT5vxuEMM2Km5MnrY93KcsGDJIHOBr1tRim7WLyzU,4
192
+ sage_wheels/share/reflexive_polytopes/Full2d/zzdb.v06,sha256=Gu-F9kzPQxi8PyXCCk9fPxxjW-vDZ3LYnJWsY5NAxXU,3
193
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.info,sha256=t2wWTKOeAYxiojh0Q_95QO26hmFcE0CckugglM8S4kE,327
194
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v04,sha256=FVRdUcxBwdxw5UPlRxyxTv9IDaeSpSDJ1gQe_vaZpZE,90
195
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v05,sha256=p4fEfG21B3v1QRCVe8HOuVOBcKoM0eUMOZgU6obmHFs,602
196
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v06,sha256=H4b_fLhHj992hUf4SBedpPc1h9W9d2ckmKJBWWpCq-k,1740
197
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v07,sha256=WqVZJbHrRjCbt8cM6N0to8KuE3OQN1unnqwAPEymXck,2812
198
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v08,sha256=l_9wv_JRBDzqmXgRLenGBO1qViRDjD7keHb9KqtgGng,3045
199
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v09,sha256=13C57nsb41bEUenm13JJ2a_Vkym1L_NNTdHgz_WNaZU,2188
200
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v10,sha256=RNGTpHZbqg_kQjAaXhtl-QnXbSxpgLnxQCFJCaTMc0w,803
201
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v11,sha256=aWBRUh_ypzLTwOQBt3kiNi7vVHUVjITBuzGnUz_ezXw,224
202
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v12,sha256=kqmjvL8x9BW9RbPh7lUW4OMY1dY9BTi4PRcS9YieQQw,31
203
+ sage_wheels/share/reflexive_polytopes/Full3d/zzdb.v13,sha256=82Nhvyd4kPTIRVlSDjYCJEnFMoDTY-3Yg81Pq-DXFXc,14
204
+ passagemath_polyhedra-10.6.31rc3.dist-info/METADATA,sha256=P9pnzkUXGOfCakaF8A4nzlHVf7bjRe-1xBj6IR5F4lk,16825
205
+ passagemath_polyhedra-10.6.31rc3.dist-info/METADATA.bak,sha256=lTL-m4MmALVMq8ZBiWJ-ckxpciw_uEKpkYxQWfdsMt4,16943
206
+ passagemath_polyhedra-10.6.31rc3.dist-info/WHEEL,sha256=K2_TehZnioJBDmm5baDVfhoCxaclJzJsPrng3hg7WD0,112
207
+ passagemath_polyhedra-10.6.31rc3.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
208
+ passagemath_polyhedra-10.6.31rc3.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: cp314-cp314-musllinux_1_2_x86_64
5
+