File: tetrahedron4.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 (144 lines) | stat: -rw-r--r-- 7,817 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

/**************************************************************************
 *                                                                        *
 *  Regina - A Normal Surface Theory Calculator                           *
 *  Python Interface                                                      *
 *                                                                        *
 *  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 <pybind11/pybind11.h>
#include "triangulation/dim4.h"
#include "../helpers.h"
#include "../generic/facehelper.h"
#include "../docstrings/triangulation/alias/face.h"
#include "../docstrings/triangulation/alias/facenumber.h"
#include "../docstrings/triangulation/dim4/tetrahedron4.h"
#include "../docstrings/triangulation/detail/face.h"
#include "../docstrings/triangulation/detail/facenumbering.h"
#include "../docstrings/triangulation/generic/faceembedding.h"

using regina::Tetrahedron;
using regina::TetrahedronEmbedding;
using regina::Face;
using regina::FaceEmbedding;

void addTetrahedron4(pybind11::module_& m, pybind11::module_& internal) {
    RDOC_SCOPE_BEGIN(FaceEmbedding)
    RDOC_SCOPE_BASE_3(detail::FaceEmbeddingBase, alias::FaceNumber,
        alias::SimplexVoid)

    auto e = pybind11::class_<FaceEmbedding<4, 3>>(m, "FaceEmbedding4_3",
            rdoc_scope)
        .def(pybind11::init<regina::Pentachoron<4>*, regina::Perm<5>>(),
            rdoc::__init)
        .def(pybind11::init<const TetrahedronEmbedding<4>&>(), rdoc::__copy)
        .def("simplex", &TetrahedronEmbedding<4>::simplex,
            pybind11::return_value_policy::reference, rbase::simplex)
        .def("pentachoron", &TetrahedronEmbedding<4>::pentachoron,
            pybind11::return_value_policy::reference, rbase3::pentachoron)
        .def("face", &TetrahedronEmbedding<4>::face, rbase::face)
        .def("tetrahedron", &TetrahedronEmbedding<4>::tetrahedron,
            rbase2::tetrahedron)
        .def("vertices", &TetrahedronEmbedding<4>::vertices, rbase::vertices)
    ;
    regina::python::add_output(e);
    regina::python::add_eq_operators(e, rbase::__eq);

    RDOC_SCOPE_SWITCH(Face)
    RDOC_SCOPE_BASE_2(detail::FaceBase, detail::FaceNumberingAPI)

    auto c = pybind11::class_<Face<4, 3>>(m, "Face4_3", rdoc_scope)
        .def("index", &Tetrahedron<4>::index, rbase::index)
        .def("degree", &Tetrahedron<4>::degree, rbase::degree)
        .def("embedding", &Tetrahedron<4>::embedding, rbase::embedding)
        .def("embeddings", &Tetrahedron<4>::embeddings, rbase::embeddings)
        .def("__iter__", [](const Tetrahedron<4>& f) {
            // By default, make_iterator uses reference_internal.
            return pybind11::make_iterator<pybind11::return_value_policy::copy>(
                f.begin(), f.end());
        }, pybind11::keep_alive<0, 1>(), // iterator keeps Face alive
            rbase::__iter__)
        .def("front", &Tetrahedron<4>::front, rbase::front)
        .def("back", &Tetrahedron<4>::back, rbase::back)
        .def("triangulation", &Tetrahedron<4>::triangulation,
            rbase::triangulation)
        .def("component", &Tetrahedron<4>::component,
            pybind11::return_value_policy::reference, rbase::component)
        .def("boundaryComponent", &Tetrahedron<4>::boundaryComponent,
            pybind11::return_value_policy::reference, rbase::boundaryComponent)
        .def("face", &regina::python::face<Tetrahedron<4>, 3, int>,
            pybind11::arg("lowerdim"), pybind11::arg("face"),
            rbase::face)
        .def("vertex", &Tetrahedron<4>::vertex,
            pybind11::return_value_policy::reference, rbase::vertex)
        .def("edge", &Tetrahedron<4>::edge,
            pybind11::return_value_policy::reference, rbase::edge)
        .def("triangle", &Tetrahedron<4>::triangle,
            pybind11::return_value_policy::reference, rbase::triangle)
        .def("faceMapping", &regina::python::faceMapping<Tetrahedron<4>, 3, 5>,
            pybind11::arg("lowerdim"), pybind11::arg("face"),
            rbase::faceMapping)
        .def("vertexMapping", &Tetrahedron<4>::vertexMapping,
            rbase::vertexMapping)
        .def("edgeMapping", &Tetrahedron<4>::edgeMapping, rbase::edgeMapping)
        .def("triangleMapping", &Tetrahedron<4>::triangleMapping,
            rbase::triangleMapping)
        .def("join", &Tetrahedron<4>::join, rbase::join)
        .def("lock", &Tetrahedron<4>::lock, rbase::lock)
        .def("unlock", &Tetrahedron<4>::unlock, rbase::unlock)
        .def("isLocked", &Tetrahedron<4>::isLocked, rbase::isLocked)
        .def("isValid", &Tetrahedron<4>::isValid, rbase::isValid)
        .def("hasBadIdentification", &Tetrahedron<4>::hasBadIdentification,
            rbase::hasBadIdentification)
        .def("hasBadLink", &Tetrahedron<4>::hasBadLink, rbase::hasBadLink)
        .def("isLinkOrientable", &Tetrahedron<4>::isLinkOrientable,
            rbase::isLinkOrientable)
        .def("isBoundary", &Tetrahedron<4>::isBoundary, rbase::isBoundary)
        .def("inMaximalForest", &Tetrahedron<4>::inMaximalForest,
            rbase::inMaximalForest)
        .def("linkingSurface", &Tetrahedron<4>::linkingSurface,
            rdoc::linkingSurface)
        .def_static("ordering", &Tetrahedron<4>::ordering)
        .def_static("faceNumber", &Tetrahedron<4>::faceNumber)
        .def_static("containsVertex", &Tetrahedron<4>::containsVertex)
        .def_readonly_static("nFaces", &Tetrahedron<4>::nFaces)
        .def_readonly_static("lexNumbering", &Tetrahedron<4>::lexNumbering)
        .def_readonly_static("oppositeDim", &Tetrahedron<4>::oppositeDim)
        .def_readonly_static("dimension", &Tetrahedron<4>::dimension)
        .def_readonly_static("subdimension", &Tetrahedron<4>::subdimension)
    ;
    regina::python::add_output(c);
    regina::python::add_eq_operators(c);

    RDOC_SCOPE_END

    regina::python::addListView<
        decltype(std::declval<Tetrahedron<4>>().embeddings())>(internal,
        "Face4_3_embeddings");

    m.attr("TetrahedronEmbedding4") = m.attr("FaceEmbedding4_3");
    m.attr("Tetrahedron4") = m.attr("Face4_3");
}