regina 7.3.1__cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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 regina might be problematic. Click here for more details.

Files changed (158) hide show
  1. regina/__init__.py +203 -0
  2. regina/engine.cpython-312-x86_64-linux-gnu.so +0 -0
  3. regina/plainCompleter.py +221 -0
  4. regina/pyCensus/__init__.py +14 -0
  5. regina/pyCensus/christy-knots-links.tdb +0 -0
  6. regina/pyCensus/closed-hyp-census-full.tdb +0 -0
  7. regina/pyCensus/closed-nor-census-11.tdb +0 -0
  8. regina/pyCensus/closed-or-census-11.tdb +0 -0
  9. regina/pyCensus/cusped-hyp-nor-census-9.tdb +0 -0
  10. regina/pyCensus/cusped-hyp-or-census-9.tdb +0 -0
  11. regina/sageRegina/__init__.py +2 -0
  12. regina/sageRegina/config.py +9 -0
  13. regina/sageRegina/test.py +132 -0
  14. regina/sageRegina/testsuite/CMakeLists.txt +31 -0
  15. regina/sageRegina/testsuite/O2_1.rga +15 -0
  16. regina/sageRegina/testsuite/O2_1.tri +28 -0
  17. regina/sageRegina/testsuite/README.txt +20 -0
  18. regina/sageRegina/testsuite/alltypes.out +1551 -0
  19. regina/sageRegina/testsuite/alltypes.test +88 -0
  20. regina/sageRegina/testsuite/angles.out +102 -0
  21. regina/sageRegina/testsuite/angles.test +72 -0
  22. regina/sageRegina/testsuite/basic.cpp +229 -0
  23. regina/sageRegina/testsuite/bool.out +6 -0
  24. regina/sageRegina/testsuite/bool.test +64 -0
  25. regina/sageRegina/testsuite/bytes.out +17 -0
  26. regina/sageRegina/testsuite/bytes.test +78 -0
  27. regina/sageRegina/testsuite/callbacks.out +515 -0
  28. regina/sageRegina/testsuite/callbacks.test +281 -0
  29. regina/sageRegina/testsuite/census.out +120 -0
  30. regina/sageRegina/testsuite/census.test +157 -0
  31. regina/sageRegina/testsuite/clone.out +18 -0
  32. regina/sageRegina/testsuite/clone.test +101 -0
  33. regina/sageRegina/testsuite/constructors.out +14 -0
  34. regina/sageRegina/testsuite/constructors.test +97 -0
  35. regina/sageRegina/testsuite/cube.orb +87 -0
  36. regina/sageRegina/testsuite/discs.out +3 -0
  37. regina/sageRegina/testsuite/discs.test +40 -0
  38. regina/sageRegina/testsuite/docstrings.filter +14 -0
  39. regina/sageRegina/testsuite/docstrings.out +810 -0
  40. regina/sageRegina/testsuite/docstrings.test +57 -0
  41. regina/sageRegina/testsuite/dodec.orb +309 -0
  42. regina/sageRegina/testsuite/embeddings.out +23 -0
  43. regina/sageRegina/testsuite/embeddings.test +89 -0
  44. regina/sageRegina/testsuite/enumerate.out +62 -0
  45. regina/sageRegina/testsuite/enumerate.test +82 -0
  46. regina/sageRegina/testsuite/equality.out +112 -0
  47. regina/sageRegina/testsuite/equality.test +310 -0
  48. regina/sageRegina/testsuite/euler.out +15 -0
  49. regina/sageRegina/testsuite/euler.test +95 -0
  50. regina/sageRegina/testsuite/exception.out +7 -0
  51. regina/sageRegina/testsuite/exception.test +100 -0
  52. regina/sageRegina/testsuite/facenumbering.out +546 -0
  53. regina/sageRegina/testsuite/facenumbering.test +74 -0
  54. regina/sageRegina/testsuite/faces.out +40 -0
  55. regina/sageRegina/testsuite/faces.test +72 -0
  56. regina/sageRegina/testsuite/file.out +1229 -0
  57. regina/sageRegina/testsuite/file.test +70 -0
  58. regina/sageRegina/testsuite/file1.rga +0 -0
  59. regina/sageRegina/testsuite/file2.rga +0 -0
  60. regina/sageRegina/testsuite/file3.rga +119 -0
  61. regina/sageRegina/testsuite/flype.out +37 -0
  62. regina/sageRegina/testsuite/flype.test +50 -0
  63. regina/sageRegina/testsuite/generic.out +116 -0
  64. regina/sageRegina/testsuite/generic.test +76 -0
  65. regina/sageRegina/testsuite/groups.out +70 -0
  66. regina/sageRegina/testsuite/groups.test +117 -0
  67. regina/sageRegina/testsuite/hypersurfaces.out +681 -0
  68. regina/sageRegina/testsuite/hypersurfaces.test +90 -0
  69. regina/sageRegina/testsuite/i18n-latin1.rga +8 -0
  70. regina/sageRegina/testsuite/i18n-utf8.rga +8 -0
  71. regina/sageRegina/testsuite/i18n.out +6 -0
  72. regina/sageRegina/testsuite/i18n.test +91 -0
  73. regina/sageRegina/testsuite/id.out +2 -0
  74. regina/sageRegina/testsuite/id.test +47 -0
  75. regina/sageRegina/testsuite/index.out +2 -0
  76. regina/sageRegina/testsuite/index.test +43 -0
  77. regina/sageRegina/testsuite/integer.out +74 -0
  78. regina/sageRegina/testsuite/integer.test +56 -0
  79. regina/sageRegina/testsuite/italian.orb +90 -0
  80. regina/sageRegina/testsuite/iterators.out +84 -0
  81. regina/sageRegina/testsuite/iterators.test +113 -0
  82. regina/sageRegina/testsuite/knotted-Y.orb +47 -0
  83. regina/sageRegina/testsuite/listener.out +43 -0
  84. regina/sageRegina/testsuite/listener.test +101 -0
  85. regina/sageRegina/testsuite/listview.out +416 -0
  86. regina/sageRegina/testsuite/listview.test +253 -0
  87. regina/sageRegina/testsuite/lookup.out +13 -0
  88. regina/sageRegina/testsuite/lookup.test +44 -0
  89. regina/sageRegina/testsuite/memory1.out +62 -0
  90. regina/sageRegina/testsuite/memory1.test +154 -0
  91. regina/sageRegina/testsuite/memory2.out +62 -0
  92. regina/sageRegina/testsuite/memory2.test +124 -0
  93. regina/sageRegina/testsuite/memory3.out +92 -0
  94. regina/sageRegina/testsuite/memory3.test +216 -0
  95. regina/sageRegina/testsuite/misc.out +7 -0
  96. regina/sageRegina/testsuite/misc.test +56 -0
  97. regina/sageRegina/testsuite/operators.out +129 -0
  98. regina/sageRegina/testsuite/operators.test +61 -0
  99. regina/sageRegina/testsuite/orb.out +441 -0
  100. regina/sageRegina/testsuite/orb.test +49 -0
  101. regina/sageRegina/testsuite/pdf.out +4 -0
  102. regina/sageRegina/testsuite/pdf.test +49 -0
  103. regina/sageRegina/testsuite/perm.out +55 -0
  104. regina/sageRegina/testsuite/perm.test +96 -0
  105. regina/sageRegina/testsuite/plantri.out +12 -0
  106. regina/sageRegina/testsuite/plantri.test +60 -0
  107. regina/sageRegina/testsuite/presentations.out +11 -0
  108. regina/sageRegina/testsuite/presentations.test +61 -0
  109. regina/sageRegina/testsuite/refs.out +51 -0
  110. regina/sageRegina/testsuite/refs.test +128 -0
  111. regina/sageRegina/testsuite/repr.out +947 -0
  112. regina/sageRegina/testsuite/repr.test +547 -0
  113. regina/sageRegina/testsuite/safeheldtype_basic.out +17 -0
  114. regina/sageRegina/testsuite/safeheldtype_basic.test +113 -0
  115. regina/sageRegina/testsuite/safeheldtype_packet.out +58 -0
  116. regina/sageRegina/testsuite/safeheldtype_packet.test +181 -0
  117. regina/sageRegina/testsuite/sample.pdf +0 -0
  118. regina/sageRegina/testsuite/sets.out +7 -0
  119. regina/sageRegina/testsuite/sets.test +44 -0
  120. regina/sageRegina/testsuite/skeleton.out +308 -0
  121. regina/sageRegina/testsuite/skeleton.test +54 -0
  122. regina/sageRegina/testsuite/snappea.out +82 -0
  123. regina/sageRegina/testsuite/snappea.test +107 -0
  124. regina/sageRegina/testsuite/snapshot.out +15 -0
  125. regina/sageRegina/testsuite/snapshot.test +78 -0
  126. regina/sageRegina/testsuite/sort.out +57 -0
  127. regina/sageRegina/testsuite/sort.test +53 -0
  128. regina/sageRegina/testsuite/special.out +4 -0
  129. regina/sageRegina/testsuite/special.test +47 -0
  130. regina/sageRegina/testsuite/standardtri.out +12101 -0
  131. regina/sageRegina/testsuite/standardtri.test +455 -0
  132. regina/sageRegina/testsuite/surfaces.out +2133 -0
  133. regina/sageRegina/testsuite/surfaces.test +114 -0
  134. regina/sageRegina/testsuite/swapping.out +25 -0
  135. regina/sageRegina/testsuite/swapping.test +88 -0
  136. regina/sageRegina/testsuite/testall.in +167 -0
  137. regina/sageRegina/testsuite/testbasic.in +269 -0
  138. regina/sageRegina/testsuite/theta_in_solid_torus.orb +65 -0
  139. regina/sageRegina/testsuite/tightencode.out +40 -0
  140. regina/sageRegina/testsuite/tightencode.test +108 -0
  141. regina/sageRegina/testsuite/treedecomp.out +135 -0
  142. regina/sageRegina/testsuite/treedecomp.test +66 -0
  143. regina/sageRegina/testsuite/treetraversal.out +52 -0
  144. regina/sageRegina/testsuite/treetraversal.test +190 -0
  145. regina/sageRegina/testsuite/trigeneral.out +1251 -0
  146. regina/sageRegina/testsuite/trigeneral.test +155 -0
  147. regina/sageRegina/testsuite/utf8.out +42 -0
  148. regina/sageRegina/testsuite/utf8.test +94 -0
  149. regina/sageRegina/version.py +5 -0
  150. regina/sageSetup.py +41 -0
  151. regina/test.py +6 -0
  152. regina-7.3.1.dist-info/METADATA +100 -0
  153. regina-7.3.1.dist-info/RECORD +158 -0
  154. regina-7.3.1.dist-info/WHEEL +6 -0
  155. regina-7.3.1.dist-info/top_level.txt +4 -0
  156. regina.libs/libbz2-a273e504.so.1.0.6 +0 -0
  157. regina.libs/libgmp-afec2dd4.so.10.2.0 +0 -0
  158. regina.libs/libgmpxx-25f6cf8d.so.4.4.0 +0 -0
@@ -0,0 +1,155 @@
1
+ # Regina - A Normal Surface Theory Calculator
2
+ # Python Test Suite Component
3
+ #
4
+ # Copyright (c) 2007-2023, Ben Burton
5
+ # For further details contact Ben Burton (bab@debian.org).
6
+ #
7
+ # Provides more thorough tests for different types of triangulation.
8
+ #
9
+ # This file is a single component of Regina's python test suite. To run
10
+ # the python test suite, move to the main python directory in the source
11
+ # tree and run "make check".
12
+ #
13
+ # This program is free software; you can redistribute it and/or
14
+ # modify it under the terms of the GNU General Public License as
15
+ # published by the Free Software Foundation; either version 2 of the
16
+ # License, or (at your option) any later version.
17
+ #
18
+ # As an exception, when this program is distributed through (i) the
19
+ # App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or
20
+ # (iii) Google Play by Google Inc., then that store may impose any
21
+ # digital rights management, device limits and/or redistribution
22
+ # restrictions that are required by its terms of service.
23
+ #
24
+ # This program is distributed in the hope that it will be useful, but
25
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
26
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27
+ # General Public License for more details.
28
+ #
29
+ # You should have received a copy of the GNU General Public
30
+ # License along with this program; if not, write to the Free
31
+ # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
32
+ # MA 02110-1301, USA.
33
+
34
+ import hashlib
35
+
36
+ def checksum(str):
37
+ h = hashlib.md5()
38
+ h.update(str.encode('utf-8'))
39
+ return h.hexdigest()
40
+
41
+ def vitalStats(tri, name):
42
+ # To guard against accidental changes.
43
+ old = tri.detail()
44
+
45
+ print("-------------------------------")
46
+ print(name)
47
+ print("-------------------------------")
48
+ print()
49
+ print(tri.detail())
50
+ print(tri.countComponents(), "components")
51
+ print(tri.countBoundaryComponents(), "boundary components")
52
+ print(tri.countTetrahedra(), "tetrahedra")
53
+ print(tri.countTriangles(), "triangles")
54
+ print(tri.countEdges(), "edges")
55
+ print(tri.countVertices(), "vertices")
56
+ print("2-sphere boundaries:", tri.hasTwoSphereBoundaryComponents())
57
+ print("Negative ideal boundaries:", tri.hasNegativeIdealBoundaryComponents())
58
+ print("EC:", tri.eulerCharTri())
59
+ print("Valid:", tri.isValid())
60
+ print("Ideal:", tri.isIdeal())
61
+ print("Standard:", tri.isStandard())
62
+ print("Boundary Triangles:", tri.hasBoundaryTriangles())
63
+ print("Closed:", tri.isClosed())
64
+ print("Orientable:", tri.isOrientable())
65
+ print("Connected:", tri.isConnected())
66
+ print()
67
+ print("Fundamental group:", tri.fundamentalGroup().recogniseGroup())
68
+ # Don't print the full generators and relations for now, since this
69
+ # is not unique and can therefore lead to spurious test failures.
70
+ # print tri.fundamentalGroup().detail()
71
+ print("H1:", tri.homology())
72
+ if tri.isValid():
73
+ print("H1Bdry:", tri.homologyBdry())
74
+ print("H1Rel:", tri.homologyRel())
75
+ print("H2:", tri.homology(2))
76
+ print("H2Z2:", tri.homologyH2Z2(), "Z_2")
77
+ if tri.isValid() and tri.isClosed() and tri.countTetrahedra() > 0:
78
+ print("TV(5, 3) =", tri.turaevViro(5, 3))
79
+
80
+ tv = tri.turaevViroApprox(5, 3)
81
+
82
+ # We round the figures to 5 decimal places so that machines with
83
+ # different precisions do not give different output.
84
+
85
+ # The case of 0 must also be handled specially, since rounding
86
+ # may give either 0 or -0.
87
+
88
+ if tv < 0.00001 and tv > -0.00001:
89
+ tv = 0
90
+ print("TV(5, 3) ~ %.5f" % tv)
91
+
92
+ # Normal surface computations should only be run on sufficiently
93
+ # small triangulations, so as to keep the tests relatively fast.
94
+ if tri.countTetrahedra() < 7:
95
+ print("0-efficient:", tri.isZeroEfficient())
96
+ if tri.isConnected():
97
+ print("Splitting surface:", tri.hasSplittingSurface())
98
+
99
+ # Though this can use normal surfaces, its prechecks and
100
+ # optimisations should make it fast enough for our examples.
101
+ print("3-sphere:", tri.isSphere())
102
+
103
+ # Some of the following operations can create large triangulations,
104
+ # which give *lots* of output when we try to dump their face gluings
105
+ # and skeletal details. We'd like to keep the output files small,
106
+ # so dump checksums of the details instead of the details themselves.
107
+ print("Double cover:")
108
+ t = regina.Triangulation3(tri)
109
+ t.makeDoubleCover()
110
+ print("Checksum =", checksum(t.detail()))
111
+
112
+ print("Ideal to finite:")
113
+ t = regina.Triangulation3(tri)
114
+ print("Result =", t.idealToFinite())
115
+ print("Checksum =", checksum(t.detail()))
116
+
117
+ print("Finite to ideal:")
118
+ t = regina.Triangulation3(tri)
119
+ print("Result =", t.finiteToIdeal())
120
+ print("Checksum =", checksum(t.detail()))
121
+
122
+ print("Barycentric subdivision:")
123
+ t = regina.Triangulation3(tri)
124
+ t.subdivide()
125
+ print("Checksum =", checksum(t.detail()))
126
+
127
+ try:
128
+ print("Dehydration:", tri.dehydrate())
129
+ except NotImplemented:
130
+ print("Dehydration: (none)")
131
+ print("Isomorphism signature:", tri.isoSig())
132
+ print("Result of splitIntoComponents:", len(tri.triangulateComponents()))
133
+
134
+ if tri.detail() != old:
135
+ print("ERROR: Original triangulation has changed!")
136
+
137
+ print()
138
+
139
+ t = regina.Triangulation3()
140
+ vitalStats(t, 'Empty triangulation')
141
+
142
+ vitalStats(regina.Example3.threeSphere(), '3-sphere')
143
+ vitalStats(regina.Example3.s2xs1(), 'S2 x S1')
144
+ vitalStats(regina.Example3.rp2xs1(), 'RP2 x S1')
145
+ vitalStats(regina.Example3.rp3rp3(), 'RP3 # RP3')
146
+ vitalStats(regina.Example3.lens(8,3), 'L(8,3)')
147
+ vitalStats(regina.Example3.poincare(), 'Poincare homology sphere')
148
+ vitalStats(regina.Example3.smallClosedOrblHyperbolic(), 'Closed orientable hyperbolic 3-manifold')
149
+ vitalStats(regina.Example3.smallClosedNonOrblHyperbolic(), 'Closed non-orientable hyperbolic 3-manifold')
150
+ vitalStats(regina.Example3.lst(3,4), 'LST(3,4,7)')
151
+ vitalStats(regina.Example3.solidKleinBottle(), 'Solid Klein bottle')
152
+ vitalStats(regina.Example3.figureEight(), 'Figure eight knot complement')
153
+ vitalStats(regina.Example3.whiteheadLink(), 'Whitehead link complement')
154
+ vitalStats(regina.Example3.gieseking(), 'Gieseking manifold')
155
+ vitalStats(regina.Example3.cuspedGenusTwoTorus(), 'Cusped genus two solid torus')
@@ -0,0 +1,42 @@
1
+ 3 Z
2
+ 3 Z
3
+ 3 ℤ
4
+ 3 Z
5
+
6
+ 3 Z + Z_17
7
+ 3 Z + Z_17
8
+ 3 ℤ + ℤ₁₇
9
+ 3 Z + Z_17
10
+
11
+ 2 Z (Z^2 -> Z^2 -> Z^2)
12
+ 2 Z (Z^2 -> Z^2 -> Z^2)
13
+ 2 ℤ (ℤ² → ℤ² → ℤ²)
14
+ 2 Z (Z^2 -> Z^2 -> Z^2)
15
+
16
+ Z + Z_23 (Z^2 -> Z^2 -> Z^2)
17
+ Z + Z_23 (Z^2 -> Z^2 -> Z^2)
18
+ ℤ + ℤ₂₃ (ℤ² → ℤ² → ℤ²)
19
+ Z + Z_23 (Z^2 -> Z^2 -> Z^2)
20
+
21
+ - x^3 + 4 x - 2
22
+ - x^3 + 4 x - 2
23
+ - z^3 + 4 z - 2
24
+ - x³ + 4 x - 2
25
+ - z³ + 4 z - 2
26
+ 3 x^4 - x
27
+ 3 x^4 - x
28
+ 3 z^4 - z
29
+ 3 x⁴ - x
30
+ 3 z⁴ - z
31
+ x^4 + 2 x^-3
32
+ x^4 + 2 x^-3
33
+ z^4 + 2 z^-3
34
+ x⁴ + 2 x⁻³
35
+ z⁴ + 2 z⁻³
36
+ 4 y^-3 + x^-1 y^2
37
+ 4 y^-3 + x^-1 y^2
38
+ 4 y^-3 + z^-1 y^2
39
+ 4 w^-3 + z^-1 w^2
40
+ 4 y⁻³ + x⁻¹ y²
41
+ 4 y⁻³ + z⁻¹ y²
42
+ 4 w⁻³ + z⁻¹ w²
@@ -0,0 +1,94 @@
1
+ # Regina - A Normal Surface Theory Calculator
2
+ # Python Test Suite Component
3
+ #
4
+ # Copyright (c) 2007-2023, Ben Burton
5
+ # For further details contact Ben Burton (bab@debian.org).
6
+ #
7
+ # Provides detailed tests for UTF-8 representations of various objects.
8
+ #
9
+ # This file is a single component of Regina's python test suite. To run
10
+ # the python test suite, move to the main python directory in the source
11
+ # tree and run "make check".
12
+ #
13
+ # This program is free software; you can redistribute it and/or
14
+ # modify it under the terms of the GNU General Public License as
15
+ # published by the Free Software Foundation; either version 2 of the
16
+ # License, or (at your option) any later version.
17
+ #
18
+ # As an exception, when this program is distributed through (i) the
19
+ # App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or
20
+ # (iii) Google Play by Google Inc., then that store may impose any
21
+ # digital rights management, device limits and/or redistribution
22
+ # restrictions that are required by its terms of service.
23
+ #
24
+ # This program is distributed in the hope that it will be useful, but
25
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
26
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27
+ # General Public License for more details.
28
+ #
29
+ # You should have received a copy of the GNU General Public
30
+ # License along with this program; if not, write to the Free
31
+ # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
32
+ # MA 02110-1301, USA.
33
+
34
+ g = AbelianGroup(3)
35
+ print(g)
36
+ print(g.str())
37
+ print(g.utf8())
38
+ print(g.detail())
39
+ g.addTorsion(17)
40
+ print(g)
41
+ print(g.str())
42
+ print(g.utf8())
43
+ print(g.detail())
44
+
45
+ m = MatrixInt(2, 2)
46
+ n = MatrixInt(2, 2)
47
+ g = MarkedAbelianGroup(m, n)
48
+ print(g)
49
+ print(g.str())
50
+ print(g.utf8())
51
+ print(g.detail())
52
+ n.set(0, 0, 23)
53
+ g = MarkedAbelianGroup(m, n)
54
+ print(g)
55
+ print(g.str())
56
+ print(g.utf8())
57
+ print(g.detail())
58
+
59
+ p = Polynomial()
60
+ p[3] = -1
61
+ p[1] = 4
62
+ p[0] = -2
63
+ print(p)
64
+ print(p.str())
65
+ print(p.str('z'))
66
+ print(p.utf8())
67
+ print(p.utf8('z'))
68
+
69
+ p = Cyclotomic(7)
70
+ p[4] = 3
71
+ p[1] = -1
72
+ print(p)
73
+ print(p.str())
74
+ print(p.str('z'))
75
+ print(p.utf8())
76
+ print(p.utf8('z'))
77
+
78
+ p = Laurent(4)
79
+ p[-3] = 2
80
+ print(p)
81
+ print(p.str())
82
+ print(p.str('z'))
83
+ print(p.utf8())
84
+ print(p.utf8('z'))
85
+
86
+ p = Laurent2(-1, 2)
87
+ p[0, -3] = 4
88
+ print(p)
89
+ print(p.str())
90
+ print(p.str('z'))
91
+ print(p.str('z', 'w'))
92
+ print(p.utf8())
93
+ print(p.utf8('z'))
94
+ print(p.utf8('z', 'w'))
@@ -0,0 +1,5 @@
1
+ version = '7.3.1'
2
+ release_date = 'March 30, 2023'
3
+
4
+
5
+
regina/sageSetup.py ADDED
@@ -0,0 +1,41 @@
1
+ # Additional initialisation that takes place only when running Regina
2
+ # from within Sage:
3
+
4
+ from . import engine
5
+ import sage.all
6
+
7
+ # -------------------------------------------------------------------------
8
+ # Sage-related hacks implemented at the C++ level in Regina
9
+ # -------------------------------------------------------------------------
10
+
11
+ # These hacks include making pybind11 work with Sage's Integer type.
12
+ engine._addSageHacks()
13
+
14
+ # -------------------------------------------------------------------------
15
+ # Conversion from Regina objects to Sage objects
16
+ # -------------------------------------------------------------------------
17
+
18
+ from .engine import GroupPresentation
19
+
20
+ # Additional methods for GroupPresentation
21
+
22
+ # Follow convention that .sage() yields a representation of
23
+ # a mathematical object native to sage
24
+
25
+ def _convertRel(generators, rel):
26
+ return sage.all.prod([
27
+ generators[term.generator] ** term.exponent
28
+ for term in rel.terms()])
29
+
30
+ def _convertGroupPresentation(self):
31
+ """
32
+ Returns a Sage version of this finitely presented group.
33
+ """
34
+ F = sage.all.FreeGroup(self.countGenerators())
35
+ gens = F.generators()
36
+ rels = [
37
+ _convertRel(gens, self.relation(i))
38
+ for i in range(self.countRelations())]
39
+ return F/rels
40
+
41
+ GroupPresentation.sage = _convertGroupPresentation
regina/test.py ADDED
@@ -0,0 +1,6 @@
1
+ import sys
2
+ from .sageRegina.test import runTests
3
+
4
+ if __name__ == '__main__':
5
+ success = runTests()
6
+ sys.exit(not success)
@@ -0,0 +1,100 @@
1
+ Metadata-Version: 2.1
2
+ Name: regina
3
+ Version: 7.3.1
4
+ Summary: Regina-Normal
5
+ Home-page: http://github.com/3-manifolds/regina_wheels
6
+ Author: The Regina developers, Marc Culler, Nathan Dunfield, and Matthias Goerner
7
+ Author-email: snappy-help@computop.org
8
+ License: GPLv2+
9
+ Keywords: triangulations,topology
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Operating System :: MacOS :: MacOS X
15
+ Classifier: Programming Language :: C
16
+ Classifier: Programming Language :: C++
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Cython
19
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
20
+ Requires-Python: >=3.6
21
+ Description-Content-Type: text/x-rst
22
+
23
+ Self-contained Python packages of Regina
24
+ ========================================
25
+
26
+ The program `Regina`_ is a powerful tool for studying low-dimensional
27
+ topology. It comes with a full `Python`_ interface that lets one
28
+ interact with it programmatically without writing any C++ code. Our
29
+ goal here is to provide self-contained binaries ("wheels") of Regina's
30
+ Python package that can be installed in seconds from Python's `PyPI`_
31
+ package repository using ``pip``.
32
+
33
+ The current version is somewhat experimental and is based on a
34
+ pre-release version of Regina; it is offered for macOS (10.14 and
35
+ newer) and Linux, but not Windows. To try it out, do::
36
+
37
+ python3 -m pip install --user --upgrade "regina>=7.0"
38
+ python3 -m regina.test
39
+
40
+ On older versions of Linux, e.g. Ubuntu 18.04, you may need to update
41
+ ``pip`` first via::
42
+
43
+ python3 -m pip install --user --upgrade pip wheel
44
+
45
+ For more on using Regina in Python see the `main docs`_.
46
+
47
+ These binaries are produced and maintained by Marc Culler, Nathan
48
+ Dunfield, and Matthias Goerner, though of course 99.9% of the code and
49
+ credit is due to Ben Burton and the other authors of Regina
50
+ itself. This project evolved out of Goerner's `sageRegina`_
51
+ but works both with and without `SageMath`_. To install and test in
52
+ SageMath do the following in a terminal window::
53
+
54
+ sage -pip install --user --upgrade "regina>=7.0"
55
+ sage -python -m regina.test
56
+
57
+ One can also do this from **inside** SageMath (including from a
58
+ notebook) by::
59
+
60
+ sage: %pip install --user "regina>=7.0"
61
+ sage: import regina.test; regina.test.runTests()
62
+
63
+ Please report any technical problems via the `issue tracker`_ on the
64
+ `GitHub site`_ devoted to this repackaging of Regina.
65
+
66
+
67
+ Building from source
68
+ --------------------
69
+
70
+ If the available binaries do not work for you, you can try building
71
+ from source. You will need have the development versions of the
72
+ libraries gmp, zlib, and bzip2 installed::
73
+
74
+ git clone https://github.com/3-manifolds/regina_wheel
75
+ cd regina_wheel
76
+ python3 setup.py package_assemble
77
+ python3 setup.py bdist_wheel
78
+ python3 -m pip install dist/regina*.whl
79
+
80
+ This can easily take an hour or more.
81
+
82
+
83
+ License
84
+ -------
85
+
86
+ Copyright Ben Burton, Ryan Budney, William Pettersson, Marc Culler,
87
+ Nathan M. Dunfield, Matthias Goerner, and others 1999-present. This
88
+ code is released under the `GNU General Public License, version 2`_ or
89
+ (at your option) any later version as published by the Free Software
90
+ Foundation.
91
+
92
+ .. _Regina: https://regina-normal.github.io/
93
+ .. _Python: https://python.org
94
+ .. _PyPI: https://pypi.org
95
+ .. _main docs: https://regina-normal.github.io/#docs
96
+ .. _sageRegina: https://sageregina.unhyperbolic.org
97
+ .. _SageMath: https://sagemath.org
98
+ .. _issue tracker: https://github.com/3-manifolds/regina_wheels/issues
99
+ .. _GitHub site: https://github.com/3-manifolds/regina_wheels/
100
+ .. _GNU General Public License, version 2: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
@@ -0,0 +1,158 @@
1
+ regina/test.py,sha256=iXHrTumyBxNZhu10J29EtoNKwTOAzgiXzgHGGNq_Jvc,128
2
+ regina/engine.cpython-312-x86_64-linux-gnu.so,sha256=lkvz_UE0f_MzjhEGKB6CpS4mUCjuyMOSc-DLZDIIVsY,42927193
3
+ regina/plainCompleter.py,sha256=ILwPjEqALu_uB8QuNjP26YHJ6LvXCZjSZS24YUsKAyQ,7982
4
+ regina/sageSetup.py,sha256=S9tEKQd4ICYp1hQvAW_Oug390mO9QrkL7j1K-urqTbk,1341
5
+ regina/__init__.py,sha256=pdHUei4znR6VnEC3y5_1vkcbgkyNMQaqfVqZ0gD_y6M,8223
6
+ regina/sageRegina/config.py,sha256=yceDYZpp8CUwR_bUQa7jD2ds0Yvb2KWzoyy7FvkRpsw,401
7
+ regina/sageRegina/test.py,sha256=Dr4EPds4-JGN9hmeEg7suMfORuZ5BLYZmw7b4inBESc,3962
8
+ regina/sageRegina/version.py,sha256=mAwwYu5M7XN4to1uQdf2p8fiAvCNOJvh7SCDewv1WbE,53
9
+ regina/sageRegina/__init__.py,sha256=JTMX3XXpJqjr4n9VOX6bARB0uUEv7knrdSxlGRl95wQ,43
10
+ regina/sageRegina/testsuite/perm.out,sha256=7CNTHT71bebvWbb3TPHKYxIC_C73Y9v8wlaBTvD7krU,1757
11
+ regina/sageRegina/testsuite/safeheldtype_basic.test,sha256=WQv3xTaV6bLUnmE68IjBeCQJkUelvAMVgFKa9d3AHBM,2415
12
+ regina/sageRegina/testsuite/faces.out,sha256=4s4fEi686SM2zPDE-VtEKRiKiz6YRWpHA0CdACX5VrQ,724
13
+ regina/sageRegina/testsuite/alltypes.test,sha256=Xbd4s2mlJ5bG6kINY_nuXlW2QT5PrJNvS3GqpdXNDbU,3069
14
+ regina/sageRegina/testsuite/CMakeLists.txt,sha256=dgh6XnZq5QQHR4uZORMjxKuNdFNFedGmqqkY1wmUr80,921
15
+ regina/sageRegina/testsuite/pdf.out,sha256=TWc050D-WfNo2WZ0bMRqoRK8483Sy5D7CTpMrioJ0iY,44
16
+ regina/sageRegina/testsuite/integer.test,sha256=IQ0NJp8mILO8yzAZApEblJuroZ5w6QRZLnxRMuMwaFE,2046
17
+ regina/sageRegina/testsuite/euler.out,sha256=6xQEdq-e6qbero29FEyGNPMsW2vWGBF103_z1opJnmY,436
18
+ regina/sageRegina/testsuite/exception.test,sha256=0_g8ysagyK1HUvlg8cOrvyleqneOW1rAlRiScbFAfWk,2936
19
+ regina/sageRegina/testsuite/facenumbering.test,sha256=q5r7Ali7r9ImPY70dILeHPIv4Y3Qzuoi0KeMC_ZUKI4,2311
20
+ regina/sageRegina/testsuite/utf8.out,sha256=z4c3WXpKz9cH58mJ9Tl37KBB0N9_L54h40mu-CLgNTs,651
21
+ regina/sageRegina/testsuite/memory2.out,sha256=G5940LJT2CK8qnIRCbySt75ZRX7y8Iw_iNiJDbsCxBA,731
22
+ regina/sageRegina/testsuite/swapping.out,sha256=yK0ssIgERFFynecyqQAtFKkYtuQxU1-9pbxPuWxvLvY,376
23
+ regina/sageRegina/testsuite/memory1.out,sha256=c5jOJJfbbckVDtDl4m5DpCb3ZZEd-FD5hjMqLlfFMaQ,608
24
+ regina/sageRegina/testsuite/file2.rga,sha256=rCGwR2x8mZ-Tor_NCks2HNJ6R32ZFLr9xUN11TsFfIc,36625
25
+ regina/sageRegina/testsuite/constructors.test,sha256=5KYUOrm9InBeaSUhX8Qj7qw6nXPNWR1wkqcta9OykpI,2911
26
+ regina/sageRegina/testsuite/README.txt,sha256=InDWLaQTw1a3e0YimFbqUbCVWPquIb4g4zRMDHbkagA,981
27
+ regina/sageRegina/testsuite/generic.out,sha256=3JhmChIo__1pypViNCK4tEyOetZ_Zv5GG4ASyY2AG58,4900
28
+ regina/sageRegina/testsuite/embeddings.out,sha256=lYbXx7oKQwzJb_tKnCuQZVeUtqs7AFO3pVRHj3srJ_s,849
29
+ regina/sageRegina/testsuite/surfaces.out,sha256=8pxZvZ79lKXVfibRWjnZB1aGxoJhVHo6iQxHxZhSp1M,96099
30
+ regina/sageRegina/testsuite/sets.test,sha256=NEJCteDcmFo3aHZExFWzuSkApumGS8AHLPHxtP7okvw,1631
31
+ regina/sageRegina/testsuite/sort.out,sha256=O8dQzbZaFSYdLqPQ5KKQIGzJNmEI9Fw7NY4GFuDHfZc,3270
32
+ regina/sageRegina/testsuite/trigeneral.out,sha256=nedXUjVQ-nCFY7nqimKeftB20HtUR97zJ-d-1oh3DNQ,30439
33
+ regina/sageRegina/testsuite/i18n-latin1.rga,sha256=aYe_BmYNPFiEeYCp6uOCRk7wdgxSQdLuixWoqu-5s78,179
34
+ regina/sageRegina/testsuite/safeheldtype_packet.out,sha256=8jXJSrlPleFhxKqoG4A4PrSrN3g9eG1zhvn0WGwDXVU,1319
35
+ regina/sageRegina/testsuite/i18n.out,sha256=nMo0PcjuONIo_48oEmPJXb-teuXgU_FInxHIEqpKGog,48
36
+ regina/sageRegina/testsuite/skeleton.out,sha256=Rv2RoWffGLODuvg8MvrRQAQIjKJQUHJknKGhgGEcmAI,10338
37
+ regina/sageRegina/testsuite/O2_1.rga,sha256=1K21GL2OAOv_0ftpzbEQVWny3oFPq9ZkJpvCvN40ReA,421
38
+ regina/sageRegina/testsuite/enumerate.test,sha256=q--sGW3RtoypprI6_A7wHb3C4QJLLWYFClGw9ah6OUM,2262
39
+ regina/sageRegina/testsuite/operators.test,sha256=wa4xMU7dAQKcKfDUMPTWpm2kOSTUWvGJahhXAdLljyk,1855
40
+ regina/sageRegina/testsuite/misc.test,sha256=6CZFS0mpat_n7E9btmOLNtlyClIaMZu9npq4xmZ1aOg,2004
41
+ regina/sageRegina/testsuite/census.test,sha256=wP4BzfslB6PMd0-IGi06CmjuNmS-ucE87z3kQQJp1xA,4420
42
+ regina/sageRegina/testsuite/presentations.out,sha256=GmS1xMVSJX41aXgVL98oECmYg6qPeM6_GMiGLBjaPMA,398
43
+ regina/sageRegina/testsuite/bytes.test,sha256=-CUxaXPsvKfOlieR7JUNOyJPZ9Gr-PsDRU8-naxJhv8,2210
44
+ regina/sageRegina/testsuite/iterators.test,sha256=ZDCIo31aoO0xVW4e2tGU-6HrV3usATYWgS8JoihKi-o,3328
45
+ regina/sageRegina/testsuite/file.test,sha256=v8y924oZG6w9ZSD6pSi9ham0u7TBVqEv0Motok02QaU,2404
46
+ regina/sageRegina/testsuite/id.out,sha256=ebw4dhUlKj2sn6BxfhFzx8Qabef412uGXjmdPvXZltw,34
47
+ regina/sageRegina/testsuite/treedecomp.out,sha256=SPTd5RDd5hfXnXfO9UCpXnjZn1DpD12gwMyb_VD1ORU,3092
48
+ regina/sageRegina/testsuite/exception.out,sha256=DDDbI6lspOPNiumXII9coBSCpjcQykQoHcOcGcZp56w,86
49
+ regina/sageRegina/testsuite/bool.test,sha256=xVp-oKgM0auyipoMlCgpRZEWZ8wmYY_g4GOvUrPXPjU,1994
50
+ regina/sageRegina/testsuite/repr.out,sha256=nRMutB4_ibNcLnXHS1GQ1MeObbvFxD7C58aq-FxSYRk,27581
51
+ regina/sageRegina/testsuite/lookup.test,sha256=nRnjnOqbZgWaqKFpV2ueD9NTWTcyFg7L9zmrA7XylRY,1687
52
+ regina/sageRegina/testsuite/docstrings.filter,sha256=uHk-pSm9ZoT1yI_x-OCzVK7Fh-u1XPOc_L43jBZBriw,647
53
+ regina/sageRegina/testsuite/perm.test,sha256=rx4GNxhgryP9Ja21v8C2B5-mg13B7pT05uzi_1zB8qM,2555
54
+ regina/sageRegina/testsuite/safeheldtype_packet.test,sha256=oi_FiZQOX8mHy4XrAJN-4HIHEoESC3UiTm8WcK1uFFI,3992
55
+ regina/sageRegina/testsuite/special.out,sha256=jfJ5hWADPjcmWukGbFw-VQbANs-f_swNDRvZ6E0TPNw,127
56
+ regina/sageRegina/testsuite/angles.out,sha256=xHpTg-zwQNZYdCfhpZ1vCFe7l5xSVxU5sof8MWJhNTY,2282
57
+ regina/sageRegina/testsuite/id.test,sha256=JU3C1BufKCej6rxU65BRdL_O-pmRXcbiooXYngygcv0,1663
58
+ regina/sageRegina/testsuite/repr.test,sha256=9_mSx4pLqw1TMAg8lBQVwnHtJjZNt3wMmqA2xcj-iGs,14472
59
+ regina/sageRegina/testsuite/listview.out,sha256=LXvsc_k2AtCazv3W_8bOIQ9TC6rR3EzLn2ALL5yBAl8,11875
60
+ regina/sageRegina/testsuite/snappea.test,sha256=D6BoIjo9Uy3nkjp30ZPHWUNpXjKt_pTEM9tTpE1oAPA,3337
61
+ regina/sageRegina/testsuite/orb.out,sha256=cFIkH1aGOgV3AMixEJRoB7eueP5DO1oUWF1JmgLdIlU,16190
62
+ regina/sageRegina/testsuite/refs.out,sha256=a5V3sv1KvCRzMU4CYSSGCZ1l80xzfLY_oQQ8Qdpuhcc,545
63
+ regina/sageRegina/testsuite/special.test,sha256=J6XBk2AC-aGmMS7qQ-VvXru7B_2nKs1JJAgGWhCh3hg,1776
64
+ regina/sageRegina/testsuite/treetraversal.out,sha256=bLWW07g3WtNiinYj6g4a-d9vg5LrjDTTSDu8QKRenjI,1756
65
+ regina/sageRegina/testsuite/tightencode.out,sha256=O10EVi6zixywmx3ZllsNVuQdoiyi4ohXKB1mLzGRDW4,205
66
+ regina/sageRegina/testsuite/index.test,sha256=2kUzGpgO71PP7uPiJzqNa84s8oklt3zwygjNdtrn5RA,1595
67
+ regina/sageRegina/testsuite/file1.rga,sha256=QrNt-zpEY7tx12L2hKTYsu7Cwa6ISprLN_vlMkElGxo,48277
68
+ regina/sageRegina/testsuite/hypersurfaces.test,sha256=ohYo1oSzFHZ8Wo95Fh_KYySJ_zggmF24jXw1wT5N63o,3569
69
+ regina/sageRegina/testsuite/italian.orb,sha256=kk-E0G3dKD6CXgonQGNiqug1y20hrWDsoZzAZnNAb3s,2335
70
+ regina/sageRegina/testsuite/snappea.out,sha256=HrWtWdxiwrTHjSv4_Y5f-IIfHLGDGIkWroW8poZaxd8,1771
71
+ regina/sageRegina/testsuite/treetraversal.test,sha256=J-9AU2yHFQJoT4nIa7vcthjEr7uKmdCfqvnnxwCGJ2o,5253
72
+ regina/sageRegina/testsuite/memory3.test,sha256=BtKJ4mCqojPb1OGogFP-3lwhNl50PXnLBKyPoKGeyVA,5691
73
+ regina/sageRegina/testsuite/constructors.out,sha256=ocVdRJWeVrhYUTEnSYmRHKw1jl-UKyv8xKiBnWdz1Pg,240
74
+ regina/sageRegina/testsuite/clone.out,sha256=EygmN5zCSUQZ3lLtCH1WRsbTClRDEKJByM756N77mbM,90
75
+ regina/sageRegina/testsuite/listener.out,sha256=Y8yknKa5TDRgB-_4ZEY3SLyil4K35zeA8aClAch7fGo,816
76
+ regina/sageRegina/testsuite/iterators.out,sha256=19Qu8ZxD7txLEmEfH4bihK7vF1hyA5X5FmmEBgSZbJ0,2696
77
+ regina/sageRegina/testsuite/utf8.test,sha256=PSYDInfbkPHkD_-HBnckLI-ZHFYw8dyNkORaESZlayk,2344
78
+ regina/sageRegina/testsuite/skeleton.test,sha256=2IYHUsVjXHhgMiqte2TqqrLLpqnQzbUYcADDv8Kan8Y,1758
79
+ regina/sageRegina/testsuite/snapshot.test,sha256=FwMBaF57Mxr88Gtos91B1N0-EqT2R7W7vTHoJ_lFilA,2734
80
+ regina/sageRegina/testsuite/docstrings.out,sha256=ofmRAqTvF0C2tHFWpww4s25deRIJfw4vDZmwq4ZThxY,31327
81
+ regina/sageRegina/testsuite/faces.test,sha256=AOe0mjGXiK_WmPzz0BV_bQbyA5rj9sFXX0EXk0JLKIM,2755
82
+ regina/sageRegina/testsuite/treedecomp.test,sha256=_B3koAVriiPaPeXQXI7gZ1JyE_wXZAWDr-tDrOTYx2Q,2239
83
+ regina/sageRegina/testsuite/memory1.test,sha256=HjOMgQzQH4bZU0ufDdYAuiNWSjNzc_OzIAugJIs5SIs,4622
84
+ regina/sageRegina/testsuite/O2_1.tri,sha256=DIcVg1feAL8NfnvfFsiY-q9erTNlDBAc-Z0HGLkx8D4,739
85
+ regina/sageRegina/testsuite/listview.test,sha256=pVRLgaM0gC5jFPV7HTAMv3RhgU0XMj1HWmUJb8R9DI4,5702
86
+ regina/sageRegina/testsuite/discs.test,sha256=Ar7o8P8_Ef2j49EFq7Kkcrdx_uVlMnpiT5Qyq5HYBtg,1544
87
+ regina/sageRegina/testsuite/index.out,sha256=eWVGEOjN3tWlU4nv8kL--AXN6l14bq5BTMLsE7MsbR0,69
88
+ regina/sageRegina/testsuite/testbasic.in,sha256=eijsAWkPrb22DowbNtnE5u2-RyYhO_ONlKVFnIUu3Z4,9304
89
+ regina/sageRegina/testsuite/swapping.test,sha256=PRNLfMEEQA2jrMMMCUx7elF4nswl_pCdiEtvxugmal8,3367
90
+ regina/sageRegina/testsuite/equality.out,sha256=xbci87LsxONdu3olXA5TYSSRIK8DxC5R66XnkQZsi6U,3440
91
+ regina/sageRegina/testsuite/memory3.out,sha256=y9IYJov14TTSA9UQrqN3y-R26e4XOSeDylRCYVGlwxE,1027
92
+ regina/sageRegina/testsuite/memory2.test,sha256=5J6BNgOMoaSDgV1U6nH9pHmxgO5qMwhuJ3KgIYSXKZs,3864
93
+ regina/sageRegina/testsuite/standardtri.test,sha256=wmj4Lyawnt5kXSTrVLsUTigVGfse5jXnMfbor3Vq_Q8,18800
94
+ regina/sageRegina/testsuite/listener.test,sha256=KdiIpgp6BNCbR7JWE2h89SoLL5wWKRf_3kch0A6Lb6U,3971
95
+ regina/sageRegina/testsuite/operators.out,sha256=SUBT7r2nytItddtyGiZ39yvDGM_WuOlULrF-tL_Q6Xo,3465
96
+ regina/sageRegina/testsuite/euler.test,sha256=ZSy01vYT8N-ZCnSnKfkxWaDhJZWzqHHXEZsSzEvxbAE,3216
97
+ regina/sageRegina/testsuite/bytes.out,sha256=dRTGS1qy0WXghgRZMjKBQ8h0WVohhdpfToH8jKGJRu8,99
98
+ regina/sageRegina/testsuite/surfaces.test,sha256=t8QP-gA2oaAuEgQ1HjLSzWyC4IXPO79uJK6fy9Tl_Zc,4430
99
+ regina/sageRegina/testsuite/dodec.orb,sha256=khKqZ0WBiQLB-NOUbiiP4F-KG8NTRsxrTuRZGwacDds,27275
100
+ regina/sageRegina/testsuite/snapshot.out,sha256=2_PTT7Si8Jaseu9JiO5SFQv_bJoRR46cGzr4ySuHgZg,282
101
+ regina/sageRegina/testsuite/presentations.test,sha256=5QkayVkH2fq3Shsx_PL7_RCanNeg6B49X-fbMUNs_ec,2179
102
+ regina/sageRegina/testsuite/equality.test,sha256=5mgWIBUAYQUfXiuK2uL1-b3Daki25PUlTTH7AyF2QOo,11157
103
+ regina/sageRegina/testsuite/testall.in,sha256=xrGshkabvGwmjJT-sdhHTa6bYzsQIlltOswoUDUYJ-U,5729
104
+ regina/sageRegina/testsuite/census.out,sha256=uOLClZfFvvuMtCblBvIKI_3a7AW5KNCqdbDbcYrWuow,1854
105
+ regina/sageRegina/testsuite/enumerate.out,sha256=wcTUbAtRhw9-g1HWmpZ5Y9-uru6v9plh4B1z447rlic,1736
106
+ regina/sageRegina/testsuite/embeddings.test,sha256=HvyrIXdodw0922sf1DxBrMyTc7snLSlL1FP5DTiSxr0,2637
107
+ regina/sageRegina/testsuite/clone.test,sha256=rKPOt9OdTH_sr35ML9AKS3P15Afdn_fdnO-959x_OU0,3346
108
+ regina/sageRegina/testsuite/tightencode.test,sha256=nFGqvs3kRGrSt4Z4nwxoT7vatinObtuBIqM11wPW21U,3011
109
+ regina/sageRegina/testsuite/discs.out,sha256=K_QTgwQsUhvKAr0RVzYe04bhIgij-WD9CkF4WBZJqAo,21
110
+ regina/sageRegina/testsuite/callbacks.test,sha256=6I0HCLk-wnQ95p-YbqQ8nCNurOP6-Gjd6lfIiMgWlFA,10056
111
+ regina/sageRegina/testsuite/cube.orb,sha256=w4LRR27Dm6z2RlfyM4ZqBL_Q18UgDiNmPi8rj5RAfrk,5095
112
+ regina/sageRegina/testsuite/flype.test,sha256=IwVw4THgg9vh8cMC9-eF5noEMFJNZLIxLtyBddC-eL8,1826
113
+ regina/sageRegina/testsuite/misc.out,sha256=2n5DJtfzZExvK9AlKsfd_Synl9NDoV72seVl5qEqA_k,97
114
+ regina/sageRegina/testsuite/generic.test,sha256=CoEDDmK2Vex4hPJGKG6tuJO6Dd17mcWOo41AnFhMFrM,2832
115
+ regina/sageRegina/testsuite/theta_in_solid_torus.orb,sha256=Dpv1p1ioOCZZVviZQWA0FtyH_dtg7qzkzcib0zu0fUw,2357
116
+ regina/sageRegina/testsuite/knotted-Y.orb,sha256=kuWxNJh9HNKNi0NR2OYEkxr9jL8fSGcMg6aJI-abVsA,1212
117
+ regina/sageRegina/testsuite/facenumbering.out,sha256=3VRwhXCBngTyZwOaZSYxVdZ6l-EG25Bkv1B-Nayjjsg,7015
118
+ regina/sageRegina/testsuite/orb.test,sha256=JE1Jwb2PGhK6KICEjECY-JpU5sYSvR0rFkfdB5ROZbs,1769
119
+ regina/sageRegina/testsuite/i18n.test,sha256=dpiUxPRgbFjZ8v_dJrhGHcreUcYx5HCzqk3jYJejQZk,3578
120
+ regina/sageRegina/testsuite/sets.out,sha256=VeoMRh_uNr7cxr_9z6GwIK-lXzAwhoed0HpvUnPagmA,309
121
+ regina/sageRegina/testsuite/alltypes.out,sha256=KnhZmYkAoZzT8cG7UlgLbGRdqMxTMEG7Oh5ud3kBGys,32441
122
+ regina/sageRegina/testsuite/plantri.test,sha256=uJkpxEbR32ef-sNC8rEZgyFslYFtVpxgX3comN1xDB8,2161
123
+ regina/sageRegina/testsuite/file3.rga,sha256=oFEO0czljy0Zp5cLmIBvd1hAlgOCMbJ_uDLQyVBJ5gA,5483
124
+ regina/sageRegina/testsuite/lookup.out,sha256=uu3kg0S94GQs2rlzSwkuXd6n8woyZOIoD9A8otTGucg,338
125
+ regina/sageRegina/testsuite/sort.test,sha256=JIy1Uw4eEju2gxGYlaloqxc7wVFHLLqwbB8uKo40Zps,1818
126
+ regina/sageRegina/testsuite/sample.pdf,sha256=wZzexFBzwXlTBWOIR1BBZ-KbQvh0p-P7nvCYiLNczLw,101632
127
+ regina/sageRegina/testsuite/flype.out,sha256=_Kncz9zvDe9EJWYVXoP7lKUzfm5_U-cRVc0Be8qb5pY,4401
128
+ regina/sageRegina/testsuite/groups.test,sha256=PRB5LLJAJj1v_qDKbGhLkeyf_xBt45Cf_dMzZTgwY3I,3470
129
+ regina/sageRegina/testsuite/file.out,sha256=XNw2cV7EyHBhnWTXBr1clgwVdePg-2xm23QuQ30w2HA,40539
130
+ regina/sageRegina/testsuite/i18n-utf8.rga,sha256=G1xhNiTXRD_URSCx4eavfxa-44UQhGB2M8v1qJXh4V8,185
131
+ regina/sageRegina/testsuite/integer.out,sha256=v5wIIGEC4U53kNdiOvXKO2w5wUZhpKmKRa8C24wZuns,1340
132
+ regina/sageRegina/testsuite/trigeneral.test,sha256=QdYIC_9B2O5WvdTVCn_0GjYy68rNFu5U9l81HJGhJ2c,5993
133
+ regina/sageRegina/testsuite/bool.out,sha256=s9HogRedmEGn_rtLllbt4Hw97Fz7PypmjbfEcyDuU8Y,104
134
+ regina/sageRegina/testsuite/refs.test,sha256=0k-9nQacajvaHZAAAVP8Xh-_a8mJDL2u91yR1meuFb0,2993
135
+ regina/sageRegina/testsuite/hypersurfaces.out,sha256=gXnUAytqzuMbqOZGKCAsw3K8SpB-hRdIUn8TKMvHPbQ,48075
136
+ regina/sageRegina/testsuite/pdf.test,sha256=XtaNAOxM2f6QZgzy3uF-ZX4qGJ_lreEuRuQQHVFm0oo,1737
137
+ regina/sageRegina/testsuite/callbacks.out,sha256=netSxC6ckx1rHQtkRyJ-IvUe9HRi88-dREfHrOd6e1U,13766
138
+ regina/sageRegina/testsuite/basic.cpp,sha256=9VWsHCT0ZWiVlRqgCAaUspIXpCt1pPngz0T9HshiyfU,8826
139
+ regina/sageRegina/testsuite/standardtri.out,sha256=LTujvG5jE-N1_TlK93jriSJvA1JycN0-m0YGwbjbFug,346263
140
+ regina/sageRegina/testsuite/safeheldtype_basic.out,sha256=KCcn26jBlU_v56eUsM_B_OEEG3SaMImX_THl5zsjR6s,365
141
+ regina/sageRegina/testsuite/docstrings.test,sha256=uyhE1AzhkekReAhHoyWiDcu4IoncHS7Z9aR3OIxfPaA,1981
142
+ regina/sageRegina/testsuite/angles.test,sha256=6xiPg1HYYvaLJzCt7vF9bbTf9fOO75sf_v-0hjI1g3U,2572
143
+ regina/sageRegina/testsuite/plantri.out,sha256=zxbqdyQmS_eMPflNcoGLJMn034uWjxXIOV1iydEC1Ro,784
144
+ regina/sageRegina/testsuite/groups.out,sha256=ygtWnQDg39OkqROUhmvvCWyeOz7a1xt_TEtpsnEu2LM,1309
145
+ regina/pyCensus/closed-nor-census-11.tdb,sha256=bFTjdc_kxaWVINp02VZAyrIByBM-IQiCEi73kQF-Rjw,76032
146
+ regina/pyCensus/christy-knots-links.tdb,sha256=0pGzIiN_kK6AzPT1ahfsroM542xEziKSZo6NynxHsTc,34560
147
+ regina/pyCensus/closed-hyp-census-full.tdb,sha256=b_-UTtQYTycZIQwH6m_mR19JA9sxgwQNAGGNqavx37s,417792
148
+ regina/pyCensus/cusped-hyp-nor-census-9.tdb,sha256=qVB9DgaoWRvwd7xiegYKrl0Vy8L7vFXCCJFz3t6Zo2I,945152
149
+ regina/pyCensus/__init__.py,sha256=zHZIE8ILWhTuV8oFJ_tnyXaHM9Hf6pXCz5EkalWL_rs,585
150
+ regina/pyCensus/closed-or-census-11.tdb,sha256=3Vff-ed8mecvatlbupXIje-FXzzI8iCkv3yhMTzBeSo,714752
151
+ regina/pyCensus/cusped-hyp-or-census-9.tdb,sha256=wmta_gF99q3p33mtp8CIgzYK_R--LuKWRpAjLwef52c,1818112
152
+ regina-7.3.1.dist-info/WHEEL,sha256=OvtvnbpcaxHa5TgXgfC48E6JA7zLr7svMspPP7Vk5o8,152
153
+ regina-7.3.1.dist-info/top_level.txt,sha256=SE8n0D2oQ01rniclTvoQoxiquFfUcnjGpHZrJKji6z8,69
154
+ regina-7.3.1.dist-info/RECORD,,
155
+ regina-7.3.1.dist-info/METADATA,sha256=1C1fo06XZjOXFFLfJ-Wq0H_mCI_BoHJ4Q3_BKyk1Lmo,3771
156
+ regina.libs/libbz2-a273e504.so.1.0.6,sha256=Ks7i35uwgx4aPZalUSQBwyfxeXGQ9BGdNInwVf00yb8,70993
157
+ regina.libs/libgmp-afec2dd4.so.10.2.0,sha256=MNTiOnu9DKH49DN5Kmd9OeJIpS85qZGJKY__Hy3KWQ0,515857
158
+ regina.libs/libgmpxx-25f6cf8d.so.4.4.0,sha256=uEiLqJa0rpfGU1UfX1jofumI0ncQ_s519AM24z-mCwQ,43377
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-manylinux_2_17_x86_64
5
+ Tag: cp312-cp312-manylinux2014_x86_64
6
+
@@ -0,0 +1,4 @@
1
+ regina
2
+ regina/pyCensus
3
+ regina/sageRegina
4
+ regina/sageRegina/testsuite
Binary file
Binary file
Binary file