File: boundaries.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 (142 lines) | stat: -rw-r--r-- 6,452 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

/**************************************************************************
 *                                                                        *
 *  Regina - A Normal Surface Theory Calculator                           *
 *  Computational Engine                                                  *
 *                                                                        *
 *  Copyright (c) 2019, Alex He                                           *
 *  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 <map>
#include <set>
#include "surface/normalsurface.h"
#include "triangulation/dim3.h"

namespace regina {

void NormalSurface::calculateBoundaries() const {
    /*
    Counts the number of boundary curves by transforming the boundary curves
    into a collection of "interval isometries", and counting the number of
    orbits of these isometries.

    This is based on the algorithm given by Agol, Hass and Thurston (2006) for
    counting connected components of normal curves and normal surfaces. However,
    since this routine works only with boundary curves, which are necessarily
    closed, this implementation is dramatically simpler than the much more
    general algorithm originally given by Agol, Hass and Thurston.
    */

    const Triangulation<3>& tri = triangulation();

    // Assign intervals to each boundary edge of tri, where the length of the
    // assigned interval corresponds to the weight of the given surf at edge i.
    std::map<long, std::pair<long, long>> intervals;
    long weight, totalWeight = 0;
    for (const Edge<3>* e : tri.edges())
        if (e->isBoundary()) {
            weight = edgeWeight(e->index()).longValue();
            intervals[e->index()] =
                std::make_pair(totalWeight, totalWeight + weight);
            totalWeight += weight;
        }

    // Encode interval isometries as a vector mapping each number k to the
    // set of all images of k under the isometries.
    std::vector<std::vector<long>> mappings(totalWeight);
    for (const Triangle<3>* face : tri.triangles()) {
        if (! face->isBoundary())
            continue;

        // There is a collection of parallel normal arcs corresponding to each
        // vertex of the current boundary face. Assign an interval isometry to
        // each such collection of parallel arcs.
        for (int v = 0; v < 3; ++v) {
            // interval0 is a list of points on edge(index0) emanating out from
            // vertex v.
            int index0 = (v + 1) % 3;
            Perm<4> edgeMap0 = face->edgeMapping(index0);
            auto interval0 = intervals[ face->edge(index0)->index() ];
            bool reverseInterval0 = (edgeMap0[0] != v);

            // interval1 is a list of points on edge(index1) emanating out from
            // vertex v.
            int index1 = (v + 2) % 3;
            Perm<4> edgeMap1 = face->edgeMapping(index1);
            auto interval1 = intervals[ face->edge(index1)->index() ];
            bool reverseInterval1 = (edgeMap1[0] != v);

            long nArcs = arcs(face->index(), v).longValue();
            for (long j = 0; j < nArcs; ++j) {
                long num0 = (reverseInterval0 ?
                    interval0.second - 1 - j : interval0.first + j);
                long num1 = (reverseInterval1 ?
                    interval1.second - 1 - j : interval1.first + j);
                mappings[num0].push_back(num1);
                mappings[num1].push_back(num0);
            }
        }
    }

    // Since the boundary curves of surf are all closed curves, we can count the
    // orbits in the interval isometries by simply traversing the orbits, and
    // "marking" points which have already been visited. This is dramatically
    // simpler than the much more general algorithm given by Agol, Hass and
    // Thurston (2006).
    bool* marked = new bool[totalWeight];
    std::fill(marked, marked + totalWeight, false);

    long orbits = 0;
    long markNext = 0;
    while (true) {
        while (markNext < totalWeight && marked[markNext])
            ++markNext;
        if (markNext == totalWeight)
            break;

        long currentPoint = markNext++;

        // Traverse the orbit containing currentPoint until all points in the
        // orbit have been "marked".
        while (true) {
            marked[currentPoint] = true;

            // mappings[currentPoint] should always have exactly two elements.
            if (! marked[mappings[currentPoint].front()])
                currentPoint = mappings[currentPoint].front();
            else if (! marked[mappings[currentPoint].back()])
                currentPoint = mappings[currentPoint].back();
            else
                break;
        }

        ++orbits;
    }

    delete[] marked;
    boundaries_ = orbits;
}

} // namespace regina