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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
/**************************************************************************
* *
* Regina - A Normal Surface Theory Calculator *
* Computational Engine *
* *
* Copyright (c) 1999-2011, 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 "algebra/nabeliangroup.h"
#include "maths/matrixops.h"
#include "file/nfile.h"
namespace regina {
const NLargeInteger& NAbelianGroup::getInvariantFactor(
unsigned long index) const {
std::multiset<NLargeInteger>::const_iterator it = invariantFactors.begin();
advance(it, index);
return *it;
}
void NAbelianGroup::addTorsionElement(const NLargeInteger& degree,
unsigned mult) {
// If there are no current torsion elements, just throw in the new
// ones.
if (invariantFactors.empty()) {
for (unsigned j=0; j<mult; j++)
invariantFactors.insert(invariantFactors.begin(), degree);
return;
}
// Build a presentation matrix for the torsion.
unsigned len = invariantFactors.size() + mult;
NMatrixInt a(len, len);
// Put our own invariant factors in the top.
unsigned i=0;
std::multiset<NLargeInteger>::const_iterator it;
for (it = invariantFactors.begin(); it != invariantFactors.end(); it++) {
a.entry(i,i) = *it;
i++;
}
// Put the passed torsion elements beneath.
for (unsigned j=0; j<mult; j++) {
a.entry(i,i) = degree;
i++;
}
// Go calculate!
smithNormalForm(a);
replaceTorsion(a);
}
void NAbelianGroup::addTorsionElements(const std::multiset<NLargeInteger>&
torsion) {
// Build a presentation matrix for the torsion.
unsigned len = invariantFactors.size() + torsion.size();
NMatrixInt a(len, len);
// Put our own invariant factors in the top.
unsigned i=0;
std::multiset<NLargeInteger>::const_iterator it;
for (it = invariantFactors.begin(); it != invariantFactors.end(); it++) {
a.entry(i,i) = *it;
i++;
}
// Put the passed torsion elements beneath.
for (it = torsion.begin(); it != torsion.end(); it++) {
a.entry(i,i) = *it;
i++;
}
// Go calculate!
smithNormalForm(a);
replaceTorsion(a);
}
void NAbelianGroup::addGroup(const NMatrixInt& presentation) {
// Prepare to calculate invariant factors.
unsigned len = invariantFactors.size();
NMatrixInt a(len + presentation.rows(), len + presentation.columns());
// Fill in the complete presentation matrix.
// Fill the bottom half of the matrix with the presentation.
unsigned i,j;
for (i=0; i<presentation.rows(); i++)
for (j=0; j<presentation.columns(); j++)
a.entry(len + i, len + j) = presentation.entry(i, j);
// Fill in the invariant factors in the top.
i = 0;
std::multiset<NLargeInteger>::const_iterator it;
for (it = invariantFactors.begin(); it != invariantFactors.end(); it++) {
a.entry(i,i) = *it;
i++;
}
// Go calculate!
smithNormalForm(a);
replaceTorsion(a);
}
void NAbelianGroup::addGroup(const NAbelianGroup& group) {
rank += group.rank;
// Work out the torsion elements.
if (invariantFactors.empty()) {
// Copy the other group's factors!
invariantFactors = group.invariantFactors;
return;
}
if (group.invariantFactors.empty())
return;
// We will have to calculate the invariant factors ourselves.
unsigned len = invariantFactors.size() + group.invariantFactors.size();
NMatrixInt a(len, len);
// Put our own invariant factors in the top.
unsigned i = 0;
std::multiset<NLargeInteger>::const_iterator it;
for (it = invariantFactors.begin(); it != invariantFactors.end(); it++) {
a.entry(i,i) = *it;
i++;
}
// Put the other group's invariant factors beneath.
for (it = group.invariantFactors.begin();
it != group.invariantFactors.end(); it++) {
a.entry(i,i) = *it;
i++;
}
// Go calculate!
smithNormalForm(a);
replaceTorsion(a);
}
unsigned NAbelianGroup::getTorsionRank(const NLargeInteger& degree) const {
std::multiset<NLargeInteger>::const_reverse_iterator it;
unsigned ans = 0;
// Because we have SNF, we can bail as soon as we reach a factor
// that is not divisible by degree.
for (it = invariantFactors.rbegin(); it != invariantFactors.rend(); it++)
if (((*it) % degree) == 0)
ans++;
else
return ans;
return ans;
}
void NAbelianGroup::writeTextShort(std::ostream& out) const {
bool writtenSomething = false;
if (rank > 0) {
if (rank > 1)
out << rank << ' ';
out << 'Z';
writtenSomething = true;
}
std::multiset<NLargeInteger>::const_iterator it =
invariantFactors.begin();
NLargeInteger currDegree;
unsigned currMult = 0;
while(true) {
if (it != invariantFactors.end()) {
if ((*it) == currDegree) {
currMult++;
it++;
continue;
}
}
if (currMult > 0) {
if (writtenSomething)
out << " + ";
if (currMult > 1)
out << currMult << ' ';
out << "Z_" << currDegree.stringValue();
writtenSomething = true;
}
if (it == invariantFactors.end())
break;
currDegree = *it;
currMult = 1;
it++;
}
if (! writtenSomething)
out << '0';
}
void NAbelianGroup::replaceTorsion(const NMatrixInt& matrix) {
// Delete any preexisting torsion.
invariantFactors.clear();
// Run up the diagonal until we hit 1.
// Hopefully this will be faster than running down the diagonal
// looking for 0 because the SNF calculation should end up with
// many 1s for a unnecessarily large presentation matrix such as
// is produced for instance by homology calculations.
unsigned rows = matrix.rows();
unsigned i = matrix.columns();
if (i > rows) {
rank += (i - rows);
i = rows;
}
while (i > 0) {
if (matrix.entry(i-1, i-1) == 0)
rank++;
else if (matrix.entry(i-1, i-1) == 1)
return;
else
invariantFactors.insert(invariantFactors.begin(),
matrix.entry(i-1, i-1));
i--;
}
}
void NAbelianGroup::writeXMLData(std::ostream& out) const {
out << "<abeliangroup rank=\"" << rank << "\"> ";
for (std::multiset<NLargeInteger>::const_iterator it =
invariantFactors.begin(); it != invariantFactors.end(); it++)
out << (*it) << ' ';
out << "</abeliangroup>";
}
void NAbelianGroup::writeToFile(NFile& out) const {
out.writeUInt(rank);
out.writeULong(invariantFactors.size());
for (std::multiset<NLargeInteger>::const_iterator it =
invariantFactors.begin(); it != invariantFactors.end(); it++)
out.writeLarge(*it);
}
NAbelianGroup* NAbelianGroup::readFromFile(NFile& in) {
NAbelianGroup* ans = new NAbelianGroup();
ans->rank = in.readUInt();
unsigned long nFactors = in.readULong();
for (unsigned long i=0; i<nFactors; i++)
ans->invariantFactors.insert(ans->invariantFactors.end(),
in.readLarge());
return ans;
}
// ---N--> CC --M--> ie: M*N = 0.
NAbelianGroup::NAbelianGroup(const NMatrixInt& M, const NMatrixInt& N) {
rank = N.rows();
NMatrixInt tempN(N);
metricalSmithNormalForm(tempN);
unsigned long lim =
(tempN.rows() < tempN.columns() ? tempN.rows() : tempN.columns() );
std::multiset<NLargeInteger> torsion;
for (unsigned long i=0; i<lim; i++) {
if (tempN.entry(i,i) != 0) {
rank--;
if (tempN.entry(i,i) > 1)
torsion.insert(tempN.entry(i,i));
}
}
addTorsionElements(torsion);
NMatrixInt tempM(M);
metricalSmithNormalForm(tempM);
lim = (tempM.rows() < tempM.columns() ? tempM.rows() : tempM.columns());
for (unsigned long i=0; i<lim; ++i) {
if (tempM.entry(i,i) != 0)
rank --;
}
}
NAbelianGroup::NAbelianGroup(const NMatrixInt& M, const NMatrixInt& N,
const NLargeInteger &p) {
NLargeInteger cof(p.abs());
rank = N.rows();
NMatrixInt tempN(N);
metricalSmithNormalForm(tempN);
unsigned long lim =
(tempN.rows() < tempN.columns() ? tempN.rows() : tempN.columns() );
std::multiset<NLargeInteger> torsion;
if (cof == 0) {
for (unsigned long i=0; i<lim; i++)
if (tempN.entry(i,i) != 0) {
rank--;
if (tempN.entry(i,i) > 1)
torsion.insert(tempN.entry(i,i));
}
} else {
for (unsigned long i=0; i<lim; i++)
if (tempN.entry(i,i) !=0) {
rank--;
NLargeInteger g( tempN.entry(i,i).gcd(cof) );
if (g > 1)
torsion.insert(g);
}
}
NMatrixInt tempM(M);
metricalSmithNormalForm(tempM);
lim = (tempM.rows() < tempM.columns() ? tempM.rows() : tempM.columns() );
for (unsigned long i=0; i<lim; i++) {
if (tempM.entry(i,i) != 0) {
rank--;
if (cof != 0) {
NLargeInteger g( tempM.entry(i,i).gcd(cof) );
if (g>1)
torsion.insert(g);
}
}
}
if (cof != 0) {
for (unsigned long i=0; i<rank; i++)
torsion.insert(cof);
rank = 0;
}
addTorsionElements(torsion);
}
} // namespace regina
|