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
|
/**************************************************************************
* *
* 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 <algorithm>
#include "split/sigisomorphism.h"
namespace regina {
SigPartialIsomorphism::SigPartialIsomorphism(
const SigPartialIsomorphism& iso) : nLabels(iso.nLabels),
nCycles(iso.nCycles),
labelImage(iso.nLabels ? new unsigned[iso.nLabels] : nullptr),
cyclePreImage(iso.nCycles ? new unsigned[iso.nCycles] : nullptr),
cycleStart(iso.nCycles ? new unsigned[iso.nCycles] : nullptr),
dir(iso.dir) {
if (iso.nLabels)
std::copy(iso.labelImage, iso.labelImage + iso.nLabels, labelImage);
if (iso.nCycles) {
std::copy(iso.cyclePreImage, iso.cyclePreImage + iso.nCycles,
cyclePreImage);
std::copy(iso.cycleStart, iso.cycleStart + iso.nCycles, cycleStart);
}
}
SigPartialIsomorphism::SigPartialIsomorphism(
const SigPartialIsomorphism& base,
unsigned newLabels, unsigned newCycles) : nLabels(newLabels),
nCycles(newCycles),
labelImage(newLabels ? new unsigned[newLabels] : nullptr),
cyclePreImage(newCycles ? new unsigned[newCycles] : nullptr),
cycleStart(newCycles ? new unsigned[newCycles] : nullptr),
dir(base.dir) {
if (base.nLabels)
std::copy(base.labelImage, base.labelImage + base.nLabels, labelImage);
if (base.nCycles) {
std::copy(base.cyclePreImage, base.cyclePreImage + base.nCycles,
cyclePreImage);
std::copy(base.cycleStart, base.cycleStart + base.nCycles, cycleStart);
}
}
SigPartialIsomorphism& SigPartialIsomorphism::operator = (
const SigPartialIsomorphism& src) {
// std::copy() exhibits undefined behaviour in the case of self-assignment.
if (std::addressof(src) == this)
return *this;
if (nLabels != src.nLabels) {
delete[] labelImage;
nLabels = src.nLabels;
labelImage = new unsigned[nLabels];
}
if (nCycles != src.nCycles) {
delete[] cyclePreImage;
delete[] cycleStart;
nCycles = src.nCycles;
cyclePreImage = new unsigned[nCycles];
cycleStart = new unsigned[nCycles];
}
std::copy(src.labelImage, src.labelImage + nLabels, labelImage);
std::copy(src.cyclePreImage, src.cyclePreImage + nCycles, cyclePreImage);
std::copy(src.cycleStart, src.cycleStart + nCycles, src.cycleStart);
dir = src.dir;
return *this;
}
bool SigPartialIsomorphism::operator == (const SigPartialIsomorphism& other)
const {
return
nLabels == other.nLabels &&
nCycles == other.nCycles &&
dir == other.dir &&
std::equal(labelImage, labelImage + nLabels, other.labelImage) &&
std::equal(cyclePreImage, cyclePreImage + nCycles,
other.cyclePreImage) &&
std::equal(cycleStart, cycleStart + nCycles, other.cycleStart);
}
void SigPartialIsomorphism::makeCanonical(const Signature& sig,
unsigned fromCycleGroup) {
unsigned fromCycle, toCycle;
unsigned c, i;
unsigned cycleLen;
unsigned start1, start2;
// Deal with each cycle group separately.
for ( ; sig.cycleGroupStart[fromCycleGroup] < nCycles; fromCycleGroup++) {
fromCycle = sig.cycleGroupStart[fromCycleGroup];
toCycle = sig.cycleGroupStart[fromCycleGroup + 1];
if (toCycle > nCycles)
toCycle = nCycles;
if (fromCycle >= toCycle)
continue;
// Determine where each cycle should start.
cycleLen = sig.cycleStart[fromCycle + 1] - sig.cycleStart[fromCycle];
for (c = fromCycle; c < toCycle; c++) {
start1 = start2 = cycleLen;
for (i = 0; i < cycleLen; i++)
if (start1 == cycleLen ||
labelImage[sig.label[sig.cycleStart[c] + i]] <
labelImage[sig.label[sig.cycleStart[c] + start1]]) {
start1 = i;
start2 = cycleLen;
} else if (labelImage[sig.label[sig.cycleStart[c] + i]] ==
labelImage[sig.label[sig.cycleStart[c] + start1]])
start2 = i;
if (start2 == cycleLen)
cycleStart[c] = start1;
else {
// Two possible starting points; we must choose between them.
if (sig.cycleCmp(
c, start1, dir, labelImage,
c, start2, dir, labelImage) <= 0)
cycleStart[c] = start1;
else
cycleStart[c] = start2;
}
}
// At this point we now know where each cycle starts under the new
// labelling. It's now time to determine in which order the cycles
// should be presented.
for (c = fromCycle; c < toCycle; c++)
cyclePreImage[c] = c;
std::sort(cyclePreImage + fromCycle, cyclePreImage + toCycle,
ShorterCycle(sig, *this));
}
}
int SigPartialIsomorphism::compareWith(const Signature& sig,
const SigPartialIsomorphism& other, unsigned fromCycleGroup) const {
for (unsigned c = sig.cycleGroupStart[fromCycleGroup]; c < nCycles; c++) {
int result = sig.cycleCmp(
cyclePreImage[c], cycleStart[cyclePreImage[c]], dir, labelImage,
other.cyclePreImage[c], other.cycleStart[other.cyclePreImage[c]],
other.dir, other.labelImage);
if (result < 0)
return -1;
if (result > 0)
return 1;
}
return 0;
}
int SigPartialIsomorphism::compareWithIdentity(const Signature& sig,
unsigned fromCycleGroup) const {
for (unsigned c = sig.cycleGroupStart[fromCycleGroup]; c < nCycles; c++) {
int result = sig.cycleCmp(
cyclePreImage[c], cycleStart[cyclePreImage[c]], dir, labelImage,
c, 0, 1, nullptr);
if (result < 0)
return -1;
if (result > 0)
return 1;
}
return 0;
}
void SigPartialIsomorphism::writeTextShort(std::ostream& out) const {
if (nLabels == 0)
out << "No symbols mapped";
else {
out << "Symbols: ";
for (unsigned i = 0; i < nLabels; ++i)
out << char('a' + i);
out << " -> ";
for (unsigned i = 0; i < nLabels; ++i)
out << char('a' + labelImage[i]);
}
out << "; ";
if (nCycles == 0)
out << "no cycles mapped";
else {
out << "cycles: ";
for (unsigned i = 0; i < nCycles; ++i) {
if (i > 0)
out << ", ";
out << cyclePreImage[i] << " -> " << i;
if (cycleStart[cyclePreImage[i]] > 0)
out << " (>> " << cycleStart[cyclePreImage[i]] << ')';
}
}
if (dir < 0)
out << ", all reversed";
}
} // namespace regina
|