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
|
/**************************************************************************
* *
* Regina - A Normal Surface Theory Calculator *
* Computational Engine *
* *
* Copyright (c) 1999-2009, 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. *
* *
* 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, write to the Free *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
**************************************************************************/
/* end stub */
#include "angle/nanglestructurelist.h"
#include "enumerate/ndoubledescription.h"
#include "file/nfile.h"
#include "maths/nmatrixint.h"
#include "maths/nvectorunit.h"
#include "progress/nprogressmanager.h"
#include "progress/nprogresstypes.h"
#include "surfaces/nnormalsurface.h"
#include "triangulation/ntriangulation.h"
#include "utilities/xmlutils.h"
// Property IDs:
#define PROPID_ALLOWSTRICT 1
#define PROPID_ALLOWTAUT 2
namespace regina {
typedef std::vector<NAngleStructure*>::const_iterator StructureIteratorConst;
void* NAngleStructureList::Enumerator::run(void*) {
NProgressNumber* progress = 0;
if (manager) {
progress = new NProgressNumber(0, 2);
manager->setProgress(progress);
}
// Form the matching equations (one per non-boundary edge plus
// one per tetrahedron).
unsigned long nTetrahedra = triang->getNumberOfTetrahedra();
unsigned long nCoords = 3 * nTetrahedra + 1;
long nEquations = long(triang->getNumberOfEdges()) +
long(triang->getNumberOfTetrahedra());
for (NTriangulation::BoundaryComponentIterator bit =
triang->getBoundaryComponents().begin();
bit != triang->getBoundaryComponents().end(); bit++)
nEquations -= (*bit)->getNumberOfEdges();
NMatrixInt eqns(nEquations, nCoords);
unsigned long row = 0;
std::deque<NEdgeEmbedding>::const_iterator embit;
NPerm perm;
unsigned long index;
for (NTriangulation::EdgeIterator eit = triang->getEdges().begin();
eit != triang->getEdges().end(); eit++) {
if ((*eit)->isBoundary())
continue;
for (embit = (*eit)->getEmbeddings().begin();
embit != (*eit)->getEmbeddings().end(); embit++) {
index = triang->tetrahedronIndex((*embit).getTetrahedron());
perm = (*embit).getVertices();
eqns.entry(row, 3 * index + vertexSplit[perm[0]][perm[1]]) += 1;
}
eqns.entry(row, nCoords - 1) = -2;
row++;
}
for (index = 0; index < nTetrahedra; index++) {
eqns.entry(row, 3 * index) = 1;
eqns.entry(row, 3 * index + 1) = 1;
eqns.entry(row, 3 * index + 2) = 1;
eqns.entry(row, nCoords - 1) = -1;
row++;
}
if (progress)
progress->incCompleted();
// Find the angle structures.
NDoubleDescription::enumerateExtremalRays(StructureInserter(*list, triang),
NAngleStructureVector(nCoords), eqns, 0, progress);
// All done!
triang->insertChildLast(list);
if (progress) {
progress->incCompleted();
progress->setFinished();
}
return 0;
}
NAngleStructureList* NAngleStructureList::enumerate(NTriangulation* owner,
NProgressManager* manager) {
NAngleStructureList* ans = new NAngleStructureList();
Enumerator* e = new Enumerator(ans, owner, manager);
if (manager) {
if (! e->start(0, true)) {
delete ans;
return 0;
}
return ans;
} else {
e->run(0);
delete e;
return ans;
}
}
NTriangulation* NAngleStructureList::getTriangulation() const {
return dynamic_cast<NTriangulation*>(getTreeParent());
}
void NAngleStructureList::writeTextShort(std::ostream& o) const {
o << structures.size() << " vertex angle structure";
if (structures.size() != 1)
o << 's';
}
void NAngleStructureList::writeTextLong(std::ostream& o) const {
writeTextShort(o);
o << ":\n";
for (StructureIteratorConst it = structures.begin();
it != structures.end(); it++) {
(*it)->writeTextShort(o);
o << '\n';
}
}
void NAngleStructureList::writePacket(NFile& out) const {
out.writeULong(structures.size());
for (StructureIteratorConst it = structures.begin();
it != structures.end(); it++)
(*it)->writeToFile(out);
// Write the properties.
std::streampos bookmark(0);
if (doesAllowStrict.known()) {
bookmark = out.writePropertyHeader(PROPID_ALLOWSTRICT);
out.writeBool(doesAllowStrict.value());
out.writePropertyFooter(bookmark);
}
if (doesAllowTaut.known()) {
bookmark = out.writePropertyHeader(PROPID_ALLOWTAUT);
out.writeBool(doesAllowTaut.value());
out.writePropertyFooter(bookmark);
}
out.writeAllPropertiesFooter();
}
NAngleStructureList* NAngleStructureList::readPacket(NFile& in,
NPacket* parent) {
NAngleStructureList* ans = new NAngleStructureList();
unsigned long nStructures = in.readULong();
for (unsigned long i=0; i<nStructures; i++)
ans->structures.push_back(NAngleStructure::readFromFile(in,
dynamic_cast<NTriangulation*>(parent)));
// Read the properties.
in.readProperties(ans);
return ans;
}
void NAngleStructureList::writeXMLPacketData(std::ostream& out) const {
using regina::xml::xmlValueTag;
// Write the individual structures.
for (StructureIteratorConst it = structures.begin();
it != structures.end(); it++)
(*it)->writeXMLData(out);
// Write the properties.
if (doesAllowStrict.known())
out << " " << xmlValueTag("allowstrict", doesAllowStrict.value())
<< '\n';
if (doesAllowTaut.known())
out << " " << xmlValueTag("allowtaut", doesAllowTaut.value())
<< '\n';
}
NPacket* NAngleStructureList::internalClonePacket(NPacket* /* parent */)
const {
NAngleStructureList* ans = new NAngleStructureList();
transform(structures.begin(), structures.end(),
back_inserter(ans->structures), FuncNewClonePtr<NAngleStructure>());
if (doesAllowStrict.known())
ans->doesAllowStrict = doesAllowStrict;
if (doesAllowTaut.known())
ans->doesAllowTaut = doesAllowTaut;
return ans;
}
void NAngleStructureList::readIndividualProperty(NFile& infile,
unsigned propType) {
if (propType == PROPID_ALLOWSTRICT)
doesAllowStrict = infile.readBool();
else if (propType == PROPID_ALLOWTAUT)
doesAllowTaut = infile.readBool();
}
void NAngleStructureList::calculateAllowStrict() const {
if (structures.empty()) {
doesAllowStrict = false;
return;
}
unsigned long nTets = getTriangulation()->getNumberOfTetrahedra();
if (nTets == 0) {
doesAllowStrict = true;
return;
}
// We run into trouble if there's a 0 or pi angle that never changes.
NRational* fixedAngles = new NRational[nTets * 3];
unsigned long nFixed = 0;
// Get the list of bad unchanging angles from the first structure.
StructureIteratorConst it = structures.begin();
const NAngleStructure* s = *it;
NRational angle;
unsigned long tet;
int edges;
for (tet = 0; tet < nTets; tet++)
for (edges = 0; edges < 3; edges++) {
angle = s->getAngle(tet, edges);
if (angle == NRational::zero || angle == NRational::one) {
fixedAngles[3 * tet + edges] = angle;
nFixed++;
} else
fixedAngles[3 * tet + edges] = NRational::undefined;
}
if (nFixed == 0) {
doesAllowStrict = true;
delete[] fixedAngles;
return;
}
// Run through the rest of the structures to see if these bad angles
// do ever change.
for (it++; it != structures.end(); it++) {
s = *it;
for (tet = 0; tet < nTets; tet++)
for (edges = 0; edges < 3; edges++) {
if (fixedAngles[3 * tet + edges] == NRational::undefined)
continue;
if (s->getAngle(tet, edges) != fixedAngles[3 * tet + edges]) {
// Here's a bad angle that finally changed.
fixedAngles[3 * tet + edges] = NRational::undefined;
nFixed--;
if (nFixed == 0) {
doesAllowStrict = true;
delete[] fixedAngles;
return;
}
}
}
}
// Some of the bad angles never changed.
doesAllowStrict = false;
delete[] fixedAngles;
}
void NAngleStructureList::calculateAllowTaut() const {
doesAllowTaut = (find_if(structures.begin(), structures.end(),
std::mem_fun(&NAngleStructure::isTaut)) != structures.end());
}
} // namespace regina
|