1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
# Regina - A Normal Surface Theory Calculator
# Python Test Suite Component
#
# Copyright (c) 2007-2025, Ben Burton
# For further details contact Ben Burton (bab@debian.org).
#
# Tests the census database lookup routines.
#
# This file is a single component of Regina's python test suite. To run
# the python test suite, move to the main python directory in the source
# tree and run "make check".
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# As an exception, when this program is distributed through (i) the
# App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or
# (iii) Google Play by Google Inc., then that store may impose any
# digital rights management, device limits and/or redistribution
# restrictions that are required by its terms of service.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
def prefix(n):
return ' ' * n
def describeSatRegion(r):
for b in range(r.countBlocks()):
spec = r.block(b)
block = spec.block()
if spec.refVert() and spec.refHoriz():
refStr = '<-> vert/horiz'
elif spec.refVert():
refStr = '<-> vert'
elif spec.refHoriz():
refstr = '<-> horiz'
else:
refStr = '<-X->'
print(prefix(3) + 'Block ' + str(b) + ':', block.abbr(), refStr)
print(prefix(4) + block.str())
for a in range(block.countAnnuli()):
ann = block.annulus(a)
msg = 'Ann. ' + str(b) + '/' + str(a) + \
' [' + str(ann.tet(0).index()) + '/' + \
str(ann.roles(0).trunc(3)) + \
', ' + str(ann.tet(1).index()) + '/' + \
str(ann.roles(1).trunc(3)) + ']'
if not block.hasAdjacentBlock(a):
msg = msg + ': bdry'
else:
msg = msg + ' -> ' + \
str(r.blockIndex(block.adjacentBlock(a))) + '/' + \
str(block.adjacentAnnulus(a))
ref = block.adjacentReflected(a)
back = block.adjacentBackwards(a)
if ref and back:
msg = msg + ' (ref, back)'
elif ref:
msg = msg + ' (ref)'
elif back:
msg = msg + ' (back)'
print(prefix(4) + msg)
pass
def describe(t, name):
print(name + ':')
print(prefix(1) + 'IsoSig: ' + t.isoSig())
std = StandardTriangulation.recognise(t)
if std:
mfd = std.manifold()
if mfd:
print(prefix(1) + 'Standard: ' + std.name(), '=', mfd.name())
else:
print(prefix(1) + 'Standard: ' + std.name(), '= ?')
# We assume the triangulation is connected.
c = t.component(0)
sub = AugTriSolidTorus.recognise(c)
if sub:
print(prefix(1) + 'Aug. tri. solid torus: ' + sub.name())
core = sub.core()
print(prefix(2) + 'Core:', core.tetrahedron(0).index(),
core.tetrahedron(1).index(), core.tetrahedron(2).index())
if sub.hasLayeredChain():
if sub.chainType() == AugTriSolidTorus.CHAIN_MAJOR:
print(prefix(2) + 'Chain type: major')
elif sub.chainType() == AugTriSolidTorus.CHAIN_AXIS:
print(prefix(2) + 'Chain type: axis')
else:
print(prefix(2) + 'Chain type: unknown')
else:
print(prefix(2) + 'No chain')
sub = LayeredChainPair.recognise(c)
if sub:
print(prefix(1) + 'Layered chain pair: ' + sub.name())
print(prefix(2) + 'Chain lengths:',
sub.chain(0).index(), sub.chain(1).index())
sub = LayeredLensSpace.recognise(c)
if sub:
print(prefix(1) + 'Layered lens space: ' + sub.name())
torus = sub.torus()
print(prefix(2) + 'LST:', torus.meridinalCuts(0),
torus.meridinalCuts(1), torus.meridinalCuts(2))
if sub.isSnapped():
print(prefix(2) + 'Snapped')
else:
print(prefix(2) + 'Twisted')
sub = LayeredLoop.recognise(c)
if sub:
print(prefix(1) + 'Layered loop: ' + sub.name())
if sub.isTwisted():
print(prefix(2) + 'Twisted,', sub.length())
print(prefix(2) + 'Hinge:', sub.hinge(0).index())
else:
print(prefix(2) + 'Untwisted,', sub.length())
print(prefix(2) + 'Hinges:', sub.hinge(0).index(),
sub.hinge(1).index())
sub = PlugTriSolidTorus.recognise(c)
if sub:
print(prefix(1) + 'Plugged tri. solid torus: ' + sub.name())
core = sub.core()
print(prefix(2) + 'Core:', core.tetrahedron(0).index(),
core.tetrahedron(1).index(), core.tetrahedron(2).index())
for i in range(3):
chain = sub.chain(i)
if chain:
if sub.chainType(i) == PlugTriSolidTorus.CHAIN_MAJOR:
print(prefix(2) + 'Chain ' + str(i) + ':',
chain.index(), '(major)')
else:
print(prefix(2) + 'Chain ' + str(i) + ':',
chain.index(), '(minor)')
else:
print(prefix(2) + 'Chain ' + str(i) + ': 0')
if sub.equatorType() == PlugTriSolidTorus.EQUATOR_MAJOR:
print(prefix(2) + 'Equator: major')
else:
print(prefix(2) + 'Equator: minor')
sub = BlockedSFS.recognise(t)
if sub:
print(prefix(1) + 'Blocked SFS')
print(prefix(2) + 'Region:')
describeSatRegion(sub.region())
sub = BlockedSFSLoop.recognise(t)
if sub:
print(prefix(1) + 'Blocked SFS Loop')
print(prefix(2) + 'Region:')
describeSatRegion(sub.region())
print(prefix(2) + 'Matching:', sub.matchingReln())
sub = BlockedSFSPair.recognise(t)
if sub:
print(prefix(1) + 'Blocked SFS Pair')
print(prefix(2) + 'Region 0:')
describeSatRegion(sub.region(0))
print(prefix(2) + 'Region 1:')
describeSatRegion(sub.region(1))
print(prefix(2) + 'Matching:', sub.matchingReln())
sub = BlockedSFSTriple.recognise(t)
if sub:
print(prefix(1) + 'Blocked SFS Triple')
print(prefix(2) + 'Central region:')
describeSatRegion(sub.centre())
print(prefix(2) + 'End region 0:')
describeSatRegion(sub.end(0))
print(prefix(2) + 'End region 1:')
describeSatRegion(sub.end(1))
print(prefix(2) + 'Matching 0:', sub.matchingReln(0))
print(prefix(2) + 'Matching 1:', sub.matchingReln(1))
for f in t.triangles():
for g in t.triangles():
if g == f:
continue
sub = PillowTwoSphere.recognise(f, g)
if sub:
print(prefix(1) + 'Pillow 2-sphere')
print(prefix(2) + 'Triangles:', f.index(), g.index())
print(prefix(2) + 'Equator:',
f.edge(0).index(), f.edge(1).index(), f.edge(2).index())
for a in t.tetrahedra():
for b in t.tetrahedra():
if b == a:
continue
sub = SnappedTwoSphere.recognise(a, b)
if sub:
print(prefix(1) + 'Snapped 2-sphere')
print(prefix(2) + 'Tet:', a.index(), b.index())
ball = sub.snappedBall(0)
print(prefix(2) + 'Equator:',
ball.tetrahedron().edge(ball.equatorEdge()).index())
for tet in t.tetrahedra():
sub = LayeredSolidTorus.recogniseFromBase(tet)
if sub:
print(prefix(1) + 'Layered solid torus: ' + sub.name())
print(prefix(2) + 'Base:', sub.base().index())
print(prefix(2) + 'Top:', sub.topLevel().index())
print(prefix(2) + 'Cuts:', sub.meridinalCuts(0),
sub.meridinalCuts(1), sub.meridinalCuts(2))
print(prefix(2) + 'Edges:',
sub.topEdge(0, 0), sub.topEdge(0, 1), '/',
sub.topEdge(1, 0), sub.topEdge(1, 1), '/',
sub.topEdge(2, 0), sub.topEdge(2, 1))
for tet in t.tetrahedra():
sub = SnappedBall.recognise(tet)
if sub:
print(prefix(1) + 'Snapped 3-ball')
print(prefix(2) + 'Tet:', tet.index())
print(prefix(2) + 'Internal faces:',
sub.internalFace(0), sub.internalFace(1))
for tet in t.tetrahedra():
for p in Perm4.S4:
if p[0] > p[3]:
continue
sub = SpiralSolidTorus.recognise(tet, p)
if sub:
if not sub.isCanonical():
continue
msg = 'Spiral:'
for i in range(sub.size()):
msg = msg + ' ' + str(sub.tetrahedron(i).index()) + \
'/' + str(sub.vertexRoles(i))
print(prefix(1) + msg)
def describeSig(sig):
describe(Triangulation3.fromIsoSig(sig), sig)
# The following isosigs are the complete output of tricensus -sNfit<n>:
t1 = [ 'bkaajj', 'bkaajn', 'bkaagb', 'bkaagj' ]
t2 = [ 'cMcabbjqw', 'cMcabbjxr', 'cMcabbjaj', 'cMcabbjak', 'cMcabbjqs',
'cMcabbgqw', 'cMcabbgaj', 'cPcbbbaaa', 'cPcbbbaai', 'cPcbbbqxh',
'cPcbbbajs', 'cPcbbbahh' ]
t3 = [ 'dLQbcbchhww', 'dLQbcbchxwn', 'dLQbcbchhjw', 'dLQbcbchxjn',
'dLQbcbchhjs', 'dLQbcbchxjj', 'dLQbccchhrw' ]
t4 = [ 'eLAkbcbddhhwhr', 'eLAkbcbddhhwqj', 'eLAkbcbddhxwqs', 'eLAkbcbddhhjhr',
'eLAkbcbddhhjqj', 'eLAkbcbddhhwqn', 'eLAkbcbddhxjqs', 'eLAkbcbddhhjhk',
'eLAkbcbddhhjqn', 'eLAkbcbddhxjqw', 'eLAkbccddemkiw', 'eLAkbccddemker',
'eLAkbccddrrhrr', 'eLAkbccddemkij', 'eLAkbccddemken', 'eLAkbccddrrhrn',
'eLMkbcdddhhhqx', 'eLPkbcdddhrrnk', 'eLPkbcddddrwos' ]
t5 = [ 'fLAMcbcbdeehhwhhw', 'fLAMcbcbdeehhwqqs', 'fLAMcbcbdeehhwhxn',
'fLAMcbcbdeehxwxhw', 'fLAMcbcbdeehhwqxk', 'fLAMcbcbdeehxwqhr',
'fLAMcbcbdeehhjhhw', 'fLAMcbcbdeehhjhxn', 'fLAMcbcbdeehhjqqs',
'fLAMcbcbdeehhjqxk', 'fLAMcbcbdeehhwhxj', 'fLAMcbcbdeehxjxhw',
'fLAMcbcbdeehhwqxr', 'fLAMcbcbdeehxjqhr', 'fLAMcbcbdeehhjhhs',
'fLAMcbcbdeehhjqqw', 'fLAMcbcbdeehhjhxj', 'fLAMcbcbdeehxjxhs',
'fLAMcbcbdeehhjqxr', 'fLAMcbcbdeehxjqhk', 'fLAMcbccdeeemkihr',
'fLAMcbccdeeemkehw', 'fLAMcbccdeerrhrhw', 'fLAMcbccdeeemkiqj',
'fLAMcbccdeeemkexn', 'fLAMcbccdeerrhrxn', 'fLAMcbccdeeemkihn',
'fLAMcbccdeeemkehj', 'fLAMcbccdeerrhrhj', 'fLAMcbccdeeemkiqn',
'fLAMcbccdeeemkexj', 'fLAMcbccdeerrhrxj', 'fLLQcacddeenkaikr',
'fLLQcacddeejkaink', 'fLLQcaceeedjkuxkn', 'fLLQcacddeejkaikk',
'fLLQcaceeedjkuxkj', 'fLLQcacddeejkaikr', 'fLLQcacddeejkainj',
'fLLQcacddeenkaink', 'fLLQcaceeednkuxkn', 'fLLQcacddeenkaikk',
'fLLQcacdeeenkqxvn', 'fLLQcacdeeenkaqnv', 'fLLQcacdeeejkqxvn',
'fLLQcacdeeejkaqnv', 'fLMPcbcdeeehhhhwr', 'fLLQcbeddeehhnkxx',
'fLLQcbededexxnxwx', 'fLLQcbededexxrxwx', 'fLLQcbeddeehhokum',
'fLLQcbcdeeehwkiiq', 'fvPQcdecedekrsnrs', 'fvPQcceddeerrnskr' ]
# The following isosigs are from tricensus -sNfit<n>, after stripping
# out the layered lens spaces:
t6 = [ 'gLALQbcbefffxxnnmxm', 'gLALQbcbefffxxnndxd', 'gLALQbcbefffxxnnnxn',
'gLALQbcbefffhhwsmmq', 'gLALQbcbefffhhwsuuq', 'gLALQbcbefffhhwsssq',
'gLALQbcbefffhxwnmxm', 'gLALQbcbefffhxwndxd', 'gLALQbcbefffhxwnnxn',
'gLALQbcbefffxhnsmmq', 'gLALQbcbefffxhnsuuq', 'gLALQbcbefffxhnsssq',
'gLALQbcbefffxxjnmxm', 'gLALQbcbefffxxjndxd', 'gLALQbcbefffxxjnnxn',
'gLALQbcbefffhhjsmmq', 'gLALQbcbefffhhjsuuq', 'gLALQbcbefffhhjsssq',
'gLALQbcbefffhxjnmxm', 'gLALQbcbefffhxjndxd', 'gLALQbcbefffhxjnnxn',
'gLALQbcbefffxhjsmmq', 'gLALQbcbefffxhjsuuq', 'gLALQbcbefffxhjsssq',
'gLLAQaceefefjkuxxnn', 'gLLAQbcedfeftsajqnj', 'gLLAQbcedfeftsqsqwj',
'gLLAQbcedfeftsasqnj', 'gLLAQbcedfeftsqsxwk', 'gLLAQbcedfeftsasxnk',
'gLLAQaceefefjkuxhnw', 'gLLAQbcedfeftsajhnr', 'gLLAQaceefefjkuxxnj',
'gLLAQbcedfeftsajqnn', 'gLLAQbcedfeftsqsqww', 'gLLAQbcedfeftsasqnw',
'gLLAQbcedfeftsqsxwr', 'gLLAQbcedfeftsasxnr', 'gLLAQaceefefjkuxhnj',
'gLLAQbcedfeftsajhnn', 'gLLAQaceefefnkuxxnn', 'gLLAQbcedfeftsajqjj',
'gLLAQbcedfeftsqsqsj', 'gLLAQbcedfeftsasqjj', 'gLLAQbcedfeftsqsxsk',
'gLLAQbcedfeftsasxjk', 'gLLAQaceefefnkuxhnw', 'gLLAQbcedfeftsajhjr',
'gLLAQaceefefnkuxxnj', 'gLLAQbcedfeftsajqjn', 'gLLAQbcedfeftsqsqsw',
'gLLAQbcedfeftsasqjw', 'gLLAQbcedfeftsqsxsr', 'gLLAQbcedfeftsasxjr',
'gLLAQaceefefnkuxhnj', 'gLLAQbcedfeftsajhjn', 'gLLPQcdcfeffqsjhqos',
'gLLPQcdcfeffqsjahos', 'gLLPQcdcfeffhsrhqos', 'gLLPQcdcfeffhsrahos',
'gLLPQcdcfeffqsnhqos', 'gLLPQcdcfeffqsnahos', 'gLLPQcdcfeffhsnhqos',
'gLLPQcdcfeffhsnahos', 'gLLAQacdefffnkqxqlu', 'gLLAQacdefffnkxxxxa',
'gLLAQacdefffnkaqqul', 'gLLAQacdefffnkaaxxa', 'gLLAQacdefffnbxxxxa',
'gLLAQacdefffnsaaxxa', 'gLLAQbedeeffxxrxxhj', 'gLLAQbedeeffxxrxxhw',
'gLLAQacdefffjkqxqlu', 'gLLAQacdefffjkxxxxa', 'gLLAQacdefffjkaqqul',
'gLLAQacdefffjkaaxxa', 'gLLAQacdefffjbxxxxa', 'gLLAQacdefffjsaaxxa',
'gLLMQacdefefjkankjj', 'gLLPQaceedffjkxkjnn', 'gLLMQacdefefjkaknkr',
'gLLMQacdefefjkakkkj', 'gLLMQacdefefnkaknrr', 'gLLMQacdefefjkakkrk',
'gLLMQacdefefjkankjk', 'gLLPQaceedffjkxkjnj', 'gLLMQacdefefjkaknrr',
'gLLMQacdefefjkakkrj', 'gLLPQaceedffjkxknnn', 'gLLMQacdefefnkaknkr',
'gLLMQacdefefjkakkkk', 'gLLMQacdefefnkakkrk', 'gLLMQacdefefjkankkk',
'gLLMQacdefefjkaknkn', 'gLLPQaceedffnkxknnn', 'gLLMQacdefefnkaknkn',
'gLLMQacdefefnkakkkk', 'gLLMQacdefefnkankkk', 'gLLAQbcdeeffxkrllck',
'gLLAQbcdeeffxkrllkw', 'gLLAQbcdeeffxkrllcr', 'gLLAQbcdeeffxkrllkj',
'gLALQbccefffemkbtli', 'gLALQbccefffemkbemi', 'gLALQbccefffemkbsri',
'gLALQbcceffflpkksuc', 'gLALQbcceffflpkkeux', 'gLALQbcceffflpkktua',
'gLALQbccfefflpkusue', 'gLALQbccefffrrhutwf', 'gLALQbccefffrrhuswe',
'gLALQbccfeffrrhwhwa', 'gLALQbccfeffrrbwbwa', 'gLALQbccefffnknnkan',
'gLMzQbcdefffhhhhhxq', 'gLLAQccedffflnxkxvc', 'gLLAQccedfffhwxrxvc',
'gLLAQbeddfffhhnkarw', 'gLLAQbeddfffhhokxjo', 'gLLMQbeefffehhaxhqa',
'gLLPQbefefefhhxxqxh', 'gLLMQbeefffehhaqaqa', 'gLLPQbefefefjjjhhhf',
'gLLPQbefefefjjjsqss', 'gLLMQbeefffehharhra', 'gLLAQbcedffftsajhos',
'gLLAQbdedfffdwqsujs', 'gLLAQbdedfffdraolrj', 'gLLAQbdedfffendolgn',
'gLLMQbcefefftsamqqs', 'gLLMQbcdfefftsommkw', 'gLLMQbcdfefftsmmriq',
'gLLAQbddefffdwpjapq', 'gLLAQbddefffdwolaor', 'gLLPQcdeffefhsxxatn',
'gLLPQceeffefhlatdee', 'gLLPQceeffefhtatdee', 'gLLPQceeffefhlataee',
'gvLQQcdfeeffbqaqghh', 'gvLQQcedffefqsqsqjs', 'gvLQQdefdeffrwawrhh',
'gvLQQdefdeffrrawwhh', 'gvLQQdefdeffrqawxhh', 'gvLQQcdefeffjwnpjhe',
'gvLQQcdfeeffhqaqhhh', 'gvLQQcdeffefnxnnnxx', 'gvLQQdefdeffxqaqxhh',
'gvLQQdefedffxqawrgg', 'gvLQQcdefeffndnbejx', 'gvLQQcdefeffpinjkje',
'gvLQQcdefeffninjije', 'gvLQQcdefeffbwnpghe', 'gvLQQcdefeffbwdpikk',
'gvLQQcdefeffncnhchx', 'gvLQQcdefeffncpjcjs', 'gvLQQcdefeffnwnpkhe',
'gvLQQedfedffrwawrhh', 'gvLQQcedffeffsfhqjh', 'gvLQQcdefeffffjmfuu',
'gvLQQcdefeffffomfum', 'gvLQQcdefeffffomfhm', 'gvLQQcdfeeffjjassaa',
'gvLQQcdefeffdwnplhe', 'gvLQQcdefeffnjndspx', 'gvLQQcedffefvksidsi' ]
# The following isosigs are hand-picked from the non-orientable census with
# 7 and 8 tetrahedra, to collect blocked SFS pairs, other more exotic
# block types and manifolds, and pillow 2-spheres:
t7 = [ 'hLALAkbcceffggrrhutwun', 'hLALAkbcceffggrrhutwdk',
'hLAwPkbccdgfggemkijjjq', 'hLAwMkbccdfgggemkiwrwa',
'hLAwPkbccdgfggrrhrnnnx', 'hLAwMkbccdfgggrrhrrwar',
'hLAwMkbccdfgggrrbrqwar', 'hLALPkbccefgggrrhuwrfs',
'hLALPkbccefgggrrhurgsf', 'hLAvQkbccefgggrrhhgrwb',
'hLLAPkbedegfggjjhqjxox', 'hLLAPkbedegfggjjjqjsja',
'hLvAQkbefegfgghaxqahha', 'hLvAQkbefegfggjajqassa',
'hLvAQkbefegfggjajqashf', 'hvLPQkcdefggfgqhhvvaxq',
'hvLPQkcdefggfgqhhxaaxq', 'hvLPQkcdefgfggqqjqqjqq',
'hvLPQkcdefgfggqqxwrrrq', 'hvLPQkcdefgfggqqxqqxqq',
'hvLPQkcdefgfggdeiqqxqp', 'hvLPQkcedfggfgnnnvvaxn',
'hvLPQkcdefggfgtssdjkkw', 'hvLPQkcedfggfgpnnvvawn',
'hvLPQkcdefgfggffxqqjqo', 'hvLPQkcedfgfggnnkffeiw',
'hvLPQkcedfgfggnnkrweiw', 'hvLPQkcedfgfggwwrwrrrr',
'hvLPQkcedfgfggwwrffsfk', 'hvLPQkcedfgfggnpkkdrid',
'hvLAQkcdfegfggjqajpmpt', 'hvLAQkcdfegfggjqajooof',
'hvLAQkcdfegfggjdajpmpd', 'hvLAQkcdegffggttncseas' ]
t8 = [ 'iLALAMcbcceffghhrrhutwuxn', 'iLALAMcbccfefghhrrhuhwhhw',
'iLALMMcbcceffghhrrhuestxk', 'iLALAMcbcceffghhrrhutwdxk',
'iLALAMcbccfefghhrrhuhwahr', 'iLALMMcbcceffghhrrhuesexn',
'iLALAMcbcceffghhrrhutwdqj', 'iLALAMcbccfefghhrrhuhwaqj',
'iLALMMcbcceffghhrrhuesehw', 'iLALAMcbcceffghhrrhutwuhw',
'iLALAMcbccfefghhrrhuhwhxn', 'iLALMMcbcceffghhrrhuestqs',
'iLALAMcbcceffghhrrhutwuxj', 'iLALAMcbccfefghhrrhuhwhhj',
'iLALMMcbcceffghhrrhuestxr', 'iLALAMcbcceffghhrrhutwdxr',
'iLALAMcbccfefghhrrhuhwahk', 'iLALMMcbcceffghhrrhuesexj',
'iLALAMcbcceffghhrrhutwdqw', 'iLALAMcbccfefghhrrhuhwaqn',
'iLALMMcbcceffghhrrhuesehs', 'iLALAMcbcceffghhrrhutwuhj',
'iLALAMcbccfefghhrrhuhwhxj', 'iLALMMcbcceffghhrrhuestqw',
'iLAwLQcbccdfgghhrrhrntxnk', 'iLAwMMcbccdfgghhrrhwwlukr',
'iLAwLQcbccdfhhghrrhrnamnn', 'iLAwMMcbccdfgghhrrhrriarr',
'iLAwLQcbccdfgghhrrhrntxkk', 'iLAwMMcbccdfgghhrrhwwlucw',
'iLAwLQcbccdfhhhgrrhrnamkn', 'iLAwMMcbccdfgghhrrhrriaww',
'iLAwLQcbccdfgghhrrhrntxkr', 'iLAwMMcbccdfgghhrrhwwlucs',
'iLAwLQcbccdfhhhgrrhrnamkj', 'iLAwMMcbccdfgghhrrhrriaws',
'iLAwLQcbccdfgghhrrhrntxnj', 'iLAwMMcbccdfgghhrrhwwlukn',
'iLAwLQcbccdfhhghrrhrnamrn', 'iLAwMMcbccdfgghhrrhrriarn',
'iLALzQcbccefhgghrrhuwuswr', 'iLAvAQcbccefghghrrhhwwhsn',
'iLALLQcbcceggfhhrrhugsnuj', 'iLALzQcbccefhgghrrhuwdjjj',
'iLAvAQcbccefghghrrhhwranw', 'iLALLQcbccegfghhrrhugjjdr',
'iLALzQcbccefhgghrrhuwdswk', 'iLAvAQcbccefghghrrhhwrhrn',
'iLALLQcbccegfghhrrhugjjuj', 'iLALzQcbccefhgghrrhuwdssj',
'iLAvAQcbccefghghrrhhwrhnr', 'iLALLQcbccegfghhrrhugwjun',
'iLALzQcbccefhgghrrhuwussr', 'iLAvAQcbccefghghrrhhwwhsr',
'iLALLQcbcceggfhhrrhugsjuj', 'iLALzQcbccefhgghrrhuwdjkj',
'iLAvAQcbccefghghrrhhwrans', 'iLALLQcbccegfghhrrhugwjdr',
'iLALzQcbccefhgghrrhuwdswj', 'iLAvAQcbccefghghrrhhwrhnn',
'iLALLQcbccegfghhrrhugwjuj', 'iLALzQcbccefhgghrrhuwdjjk',
'iLAvAQcbccefghghrrhhwrarw', 'iLALLQcbccegfghhrrhugjjdk',
'iLALzQcbccefhgghrrhuwdssk', 'iLAvAQcbccefghghrrhhwrhrr',
'iLALLQcbccegfghhrrhugjjun', 'iLALzQcbccefhgghrrhuwussn',
'iLAvAQcbccefghghrrhhwwhwr', 'iLALLQcbcceggfhhrrhugsjun',
'iLLALQcadddhhghgjsajsaajn', 'iLLALQcadddhhghgjsajsaqjw',
'iLAMLPcbccdeghhhemkehwrwa', 'iLAMLPcbccdeghhhrrhwqjpqp',
'iLAMLPcbccdeghhhlpkuhrwar', 'iLAMLPcbccdeghhhemkexjjqj',
'iLAMLPcbccdeghhhemkihrwar', 'iLAMLPcbccdeghhhlpklqwrwa',
'iLAMLPcbccdeghhhemkiqjjqj', 'iLAMLPcbccdeghhhlpklxrrhr',
'iLAMLPcbccdeghhhrrhrhwrwa', 'iLAMLPcbccdeghhhrrhwqjjqj',
'iLAMLPcbccdeghhhrrhrxjjqj', 'iLAMLPcbccdeghhhrrbrhxrwa',
'iLAwLQcbccdfhghhrrhrnhxnv', 'iLAwLQcbccdfhghhrrhrnahvn',
'iLAwwQcbccdfghhhrrhrrxhgw', 'iLAwwQcbccdfghhhrrhrraxgw',
'iLALzQcbccefhghhrrhuwusqx', 'iLALLQcbccegghhhrrhugstiu',
'iLAvAQcbccefghhhrrhhwwhml', 'iLLLQPccegffghhhkknknknka',
'iLLLQPccegffghhhkknqhknna', 'iLLvQQccdfeghghhhsaqllqxr',
'iLLvQQccdfehghghhsaquuahr', 'iLLvQQccdfeghghhhsaqxaiin',
'iLLvQQccdfeghhghhsaqlllmn', 'iLLvQQccdfeghhghhsawlllsn',
'iLLvQQccdfeghghhhsawvvodn', 'iLLvQQccdfeghhghhsanqqesn',
'iLLvQQccdfeghhghhsaqptttr', 'iLLvQQccdfehgghhhsaqeiiir',
'iLLvQQccdfeghhghqxaqhhhxh', 'iLLvQQccdfehgghhqxaqaaaqh',
'iLLvQQccdfeghhghqsaqhhhxj', 'iLLLMQcceefghghhkkaakqqvq',
'iLLLMQcceefghghhjjaajedve', 'iLvMQPcbefgfehhhjaaaaaaas' ]
# The following isosigs are hand-picked from the 9-tetrahedron census to
# pick up blocked SFS triples:
t9 = [ 'jLALMLQbcceffhiiiemkbtilubc', 'jLALALQbccfefihiilpkusudego',
'jLALALQbccfefihiilpkusuuero' ]
# TODO: We still have nothing in this list that contains a snapped 2-sphere
# (mainly because such things do not appear in the census).
for i in t1:
describeSig(i)
for i in t2:
describeSig(i)
for i in t3:
describeSig(i)
for i in t4:
describeSig(i)
for i in t5:
describeSig(i)
for i in t6:
describeSig(i)
for i in t7:
describeSig(i)
for i in t8:
describeSig(i)
for i in t9:
describeSig(i)
|