File: layeredtorusbundle.cpp

package info (click to toggle)
regina-normal 7.4.1-1.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 154,244 kB
  • sloc: cpp: 295,026; xml: 9,992; sh: 1,344; python: 1,225; perl: 616; ansic: 138; makefile: 26
file content (184 lines) | stat: -rw-r--r-- 7,229 bytes parent folder | download
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

/**************************************************************************
 *                                                                        *
 *  Regina - A Normal Surface Theory Calculator                           *
 *  Computational Engine                                                  *
 *                                                                        *
 *  Copyright (c) 1999-2025, Ben Burton                                   *
 *  For further details contact Ben Burton (bab@debian.org).              *
 *                                                                        *
 *  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/>. *
 *                                                                        *
 **************************************************************************/

#include "manifold/torusbundle.h"
#include "subcomplex/layeredtorusbundle.h"
#include "subcomplex/layering.h"
#include "subcomplex/txicore.h"
#include "triangulation/dim3.h"

namespace regina {

namespace {
    const TxIDiagonalCore core_T_6_1(6, 1);
    const TxIDiagonalCore core_T_7_1(7, 1);
    const TxIDiagonalCore core_T_8_1(8, 1);
    const TxIDiagonalCore core_T_8_2(8, 2);
    const TxIDiagonalCore core_T_9_1(9, 1);
    const TxIDiagonalCore core_T_9_2(9, 2);
    const TxIDiagonalCore core_T_10_1(10, 1);
    const TxIDiagonalCore core_T_10_2(10, 2);
    const TxIDiagonalCore core_T_10_3(10, 3);
    const TxIDiagonalCore core_T_11_1(11, 1);
    const TxIDiagonalCore core_T_11_2(11, 2);
    const TxIDiagonalCore core_T_11_3(11, 3);
    const TxIDiagonalCore core_T_12_1(12, 1);
    const TxIDiagonalCore core_T_12_2(12, 2);
    const TxIDiagonalCore core_T_12_3(12, 3);
    const TxIDiagonalCore core_T_12_4(12, 4);
    const TxIParallelCore core_T_p;
}

std::unique_ptr<LayeredTorusBundle> LayeredTorusBundle::recognise(
        const Triangulation<3>& tri) {
    // Basic property checks.
    if (! tri.isClosed())
        return nullptr;
    if (tri.countVertices() > 1)
        return nullptr;
    if (tri.countComponents() > 1)
        return nullptr;
    if (tri.size() < 6)
        return nullptr;

    // We have a 1-vertex 1-component closed triangulation with at least
    // six tetrahedra.

    // Hunt for the core thin torus bundle.
    if (auto ans = hunt(tri, core_T_6_1))
        return ans;
    if (auto ans = hunt(tri, core_T_7_1))
        return ans;
    if (auto ans = hunt(tri, core_T_8_1))
        return ans;
    if (auto ans = hunt(tri, core_T_8_2))
        return ans;
    if (auto ans = hunt(tri, core_T_9_1))
        return ans;
    if (auto ans = hunt(tri, core_T_9_2))
        return ans;
    if (auto ans = hunt(tri, core_T_10_1))
        return ans;
    if (auto ans = hunt(tri, core_T_10_2))
        return ans;
    if (auto ans = hunt(tri, core_T_10_3))
        return ans;
    if (auto ans = hunt(tri, core_T_11_1))
        return ans;
    if (auto ans = hunt(tri, core_T_11_2))
        return ans;
    if (auto ans = hunt(tri, core_T_11_3))
        return ans;
    if (auto ans = hunt(tri, core_T_12_1))
        return ans;
    if (auto ans = hunt(tri, core_T_12_2))
        return ans;
    if (auto ans = hunt(tri, core_T_12_3))
        return ans;
    if (auto ans = hunt(tri, core_T_12_4))
        return ans;
    if (auto ans = hunt(tri, core_T_p))
        return ans;

    return nullptr;
}

std::unique_ptr<LayeredTorusBundle> LayeredTorusBundle::hunt(
        const Triangulation<3>& tri, const TxICore& core) {
    std::unique_ptr<LayeredTorusBundle> ans;
    core.core().findAllSubcomplexesIn(tri,
            [&ans, &core, &tri](const Isomorphism<3>& iso) {
        // Look for the corresponding layering.
        Matrix2 matchReln;

        // Apply the layering to the lower boundary and see if it
        // matches nicely with the upper.
        Layering layering(
            tri.tetrahedron(iso.tetImage(core.bdryTet(1,0))),
            iso.facePerm(core.bdryTet(1,0)) * core.bdryRoles(1,0),
            tri.tetrahedron(iso.tetImage(core.bdryTet(1,1))),
            iso.facePerm(core.bdryTet(1,1)) * core.bdryRoles(1,1));
        layering.extend();

        if (layering.matchesTop(
                tri.tetrahedron(iso.tetImage(core.bdryTet(0,0))),
                iso.facePerm(core.bdryTet(0,0)) * core.bdryRoles(0,0),
                tri.tetrahedron(iso.tetImage(core.bdryTet(0,1))),
                iso.facePerm(core.bdryTet(0,1)) * core.bdryRoles(0,1),
                matchReln)) {
            // It's a match!
            //
            // Note: we cannot use make_unique here, since the class
            // constructor is private.
            ans.reset(new LayeredTorusBundle(core, iso,
                core.bdryReln(0) * matchReln * core.bdryReln(1).inverse()));
            return true;
        }

        // No match.
        return false;
    });
    return ans;
}

std::unique_ptr<Manifold> LayeredTorusBundle::manifold() const {
    // Note that this one-liner appears again in homology(), where
    // we use the underlying TorusBundle for homology calculations.
    return std::make_unique<TorusBundle>(core_->parallelReln() * reln_);
}

AbelianGroup LayeredTorusBundle::homology() const {
    // It's implemented in TorusBundle, so ride on that for now.
    // We'll implement it directly here in good time.
    return TorusBundle(core_->parallelReln() * reln_).homology();
}

std::ostream& LayeredTorusBundle::writeCommonName(std::ostream& out,
        bool tex) const {
    if (tex) {
        out << "B_{";
        core_->writeTeXName(out);
    } else {
        out << "B(";
        core_->writeName(out);
    }

    out << " | " << reln_[0][0] << ',' << reln_[0][1];
    out << " | " << reln_[1][0] << ',' << reln_[1][1];

    return out << (tex ? "}" : ")");
}

void LayeredTorusBundle::writeTextLong(std::ostream& out) const {
    out << "Layered torus bundle: ";
    writeName(out);
}

} // namespace regina