Regina 7.3 Calculation Engine
|
Represents a closed graph manifold formed by joining a single bounded Seifert fibred space to itself along a torus. More...
#include <manifold/graphloop.h>
Public Member Functions | |
GraphLoop (const SFSpace &sfs, long mat00, long mat01, long mat10, long mat11) | |
Creates a new graph manifold as a self-identified Seifert fibred space. More... | |
GraphLoop (SFSpace &&sfs, long mat00, long mat01, long mat10, long mat11) | |
Creates a new graph manifold as a self-identified Seifert fibred space, which is moved instead of copied. More... | |
GraphLoop (const SFSpace &sfs, const Matrix2 &matchingReln) | |
Creates a new graph manifold as a self-identified Seifert fibred space. More... | |
GraphLoop (SFSpace &&sfs, const Matrix2 &matchingReln) | |
Creates a new graph manifold as a self-identified Seifert fibred space, which is moved instead of copied. More... | |
GraphLoop (const GraphLoop &)=default | |
Creates a clone of the given graph manifold. More... | |
GraphLoop (GraphLoop &&) noexcept=default | |
Moves the contents of the given graph manifold into this new graph manifold. More... | |
const SFSpace & | sfs () const |
Returns a reference to the bounded Seifert fibred space that is joined to itself. More... | |
const Matrix2 & | matchingReln () const |
Returns a reference to the 2-by-2 matrix describing how the two boundary tori of the Seifert fibred space are joined together. More... | |
bool | operator< (const GraphLoop &compare) const |
Determines in a fairly ad-hoc fashion whether this representation of this space is "smaller" than the given representation of the given space. More... | |
GraphLoop & | operator= (const GraphLoop &)=default |
Sets this to be a clone of the given graph manifold. More... | |
GraphLoop & | operator= (GraphLoop &&) noexcept=default |
Moves the contents of the given graph manifold into this graph manifold. More... | |
void | swap (GraphLoop &other) noexcept |
Swaps the contents of this and the given graph manifold. More... | |
bool | operator== (const GraphLoop &compare) const |
Determines whether this and the given object contain precisely the same presentations of the same graph manifold. More... | |
bool | operator!= (const GraphLoop &compare) const |
Determines whether this and the given object do not contain precisely the same presentations of the same graph manifold. More... | |
AbelianGroup | homology () const override |
Returns the first homology group of this 3-manifold, if such a routine has been implemented. More... | |
bool | isHyperbolic () const override |
Returns whether or not this is a finite-volume hyperbolic manifold. More... | |
std::ostream & | writeName (std::ostream &out) const override |
Writes the common name of this 3-manifold as a human-readable string to the given output stream. More... | |
std::ostream & | writeTeXName (std::ostream &out) const override |
Writes the common name of this 3-manifold in TeX format to the given output stream. More... | |
std::string | name () const |
Returns the common name of this 3-manifold as a human-readable string. More... | |
std::string | texName () const |
Returns the common name of this 3-manifold in TeX format. More... | |
std::string | structure () const |
Returns details of the structure of this 3-manifold that might not be evident from its common name. More... | |
virtual Triangulation< 3 > | construct () const |
Returns a triangulation of this 3-manifold, if such a construction has been implemented. More... | |
bool | operator< (const Manifold &compare) const |
Determines in a fairly ad-hoc fashion whether this representation of this 3-manifold is "smaller" than the given representation of the given 3-manifold. More... | |
virtual std::ostream & | writeStructure (std::ostream &out) const |
Writes details of the structure of this 3-manifold that might not be evident from its common name to the given output stream. More... | |
void | writeTextShort (std::ostream &out) const |
Writes a short text representation of this object to the given output stream. More... | |
void | writeTextLong (std::ostream &out) const |
Writes a detailed text representation of this object to the given output stream. More... | |
std::string | str () const |
Returns a short text representation of this object. More... | |
std::string | utf8 () const |
Returns a short text representation of this object using unicode characters. More... | |
std::string | detail () const |
Returns a detailed text representation of this object. More... | |
Represents a closed graph manifold formed by joining a single bounded Seifert fibred space to itself along a torus.
The Seifert fibred space must have two boundary components, each a torus corresponding to a puncture in the base orbifold (with no fibre-reversing twist as one travels around the boundary).
The way in which the two torus boundaries are joined together is specified by a 2-by-2 matrix M. This matrix relates the locations of the fibres and base orbifold on the two boundary tori.
More specifically, suppose that f0 and o0 are generators of the first boundary torus, where f0 represents a directed fibre in the Seifert fibred space and o0 represents the oriented boundary of the base orbifold. Likewise, let f1 and o1 be generators of the second boundary torus representing a directed fibre and the oriented boundary of the base orbifold. Then the tori are joined together so that the curves f0, o0, f1 and o1 become related as follows:
[f1] [f0] [ ] = M * [ ] [o1] [o0]
See the page on Notation for Seifert fibred spaces for details on some of the terminology used above.
The optional Manifold routine homology() is implemented, but the optional routine construct() is not.
This class implements C++ move semantics and adheres to the C++ Swappable requirement. It is designed to avoid deep copies wherever possible, even when passing or returning objects by value. Note, however, that GraphLoop still requires a non-trivial (but constant sized) amount of data to be copied even in a move operation.
|
inline |
Creates a new graph manifold as a self-identified Seifert fibred space.
The bounded Seifert fibred space and the four elements of the 2-by-2 matching matrix are all passed separately. The elements of the matching matrix combine to give the full matrix M as follows:
[ mat00 mat01 ] M = [ ] [ mat10 mat11 ]
InvalidArgument | The given Seifert fibred space does not have precisely two torus boundaries, corresponding to two untwisted punctures in its base orbifold. |
sfs | the bounded Seifert fibred space. |
mat00 | the (0,0) element of the matching matrix. |
mat01 | the (0,1) element of the matching matrix. |
mat10 | the (1,0) element of the matching matrix. |
mat11 | the (1,1) element of the matching matrix. |
|
inline |
Creates a new graph manifold as a self-identified Seifert fibred space, which is moved instead of copied.
Other than its use of move semantics, this behaves identically to the other constructor that takes the Seifert fibred space by const reference. See that constructor for further details.
InvalidArgument | The given Seifert fibred space does not have precisely two torus boundaries, corresponding to two untwisted punctures in its base orbifold. |
sfs | the bounded Seifert fibred space. |
mat00 | the (0,0) element of the matching matrix. |
mat01 | the (0,1) element of the matching matrix. |
mat10 | the (1,0) element of the matching matrix. |
mat11 | the (1,1) element of the matching matrix. |
Creates a new graph manifold as a self-identified Seifert fibred space.
The bounded Seifert fibred space and the entire 2-by-2 matching matrix are each passed separately.
InvalidArgument | The given Seifert fibred space does not have precisely two torus boundaries, corresponding to two untwisted punctures in its base orbifold. |
sfs | the bounded Seifert fibred space. |
matchingReln | the 2-by-2 matching matrix. |
Creates a new graph manifold as a self-identified Seifert fibred space, which is moved instead of copied.
Other than its use of move semantics, this behaves identically to the other constructor that takes the Seifert fibred space by const reference. See that constructor for further details.
InvalidArgument | The given Seifert fibred space does not have precisely two torus boundaries, corresponding to two untwisted punctures in its base orbifold. |
sfs | the bounded Seifert fibred space. |
matchingReln | the 2-by-2 matching matrix. |
|
default |
Creates a clone of the given graph manifold.
|
defaultnoexcept |
Moves the contents of the given graph manifold into this new graph manifold.
This is a constant time operation.
The graph manifold that was passed will no longer be usable.
|
virtualinherited |
Returns a triangulation of this 3-manifold, if such a construction has been implemented.
For details of which types of 3-manifolds have implemented this routine, see the class notes for each corresponding subclasses of Manifold.
The default implemention of this routine just throws a NotImplemented exception.
NotImplemented | Explicit construction has not yet been implemented for this particular 3-manifold. |
FileError | The construction needs to be read from file (as opposed to computed on the fly), but the file is inaccessible or its contents cannot be read and parsed correctly. Currently this can only happen for the subclass SnapPeaCensusManifold, which reads its triangulations from the SnapPea census databases that are installed with Regina. |
Reimplemented in regina::Handlebody, regina::LensSpace, regina::SFSpace, regina::SimpleSurfaceBundle, and regina::SnapPeaCensusManifold.
|
inherited |
Returns a detailed text representation of this object.
This text may span many lines, and should provide the user with all the information they could want. It should be human-readable, should not contain extremely long lines (which cause problems for users reading the output in a terminal), and should end with a final newline. There are no restrictions on the underlying character set.
|
overridevirtual |
Returns the first homology group of this 3-manifold, if such a routine has been implemented.
For details of which types of 3-manifolds have implemented this routine, see the class notes for each corresponding subclasses of Manifold.
The default implemention of this routine just throws a NotImplemented exception.
NotImplemented | Homology calculation has not yet been implemented for this particular 3-manifold. |
FileError | The homology needs to be read from file (as opposed to computed), but the file is inaccessible or its contents cannot be read and parsed correctly. Currently this can only happen for the subclass SnapPeaCensusManifold, which reads its results from the SnapPea census databases that are installed with Regina. |
Reimplemented from regina::Manifold.
|
inlineoverridevirtual |
Returns whether or not this is a finite-volume hyperbolic manifold.
true
if this is a finite-volume hyperbolic manifold, or false
if not. Implements regina::Manifold.
|
inline |
Returns a reference to the 2-by-2 matrix describing how the two boundary tori of the Seifert fibred space are joined together.
See the class notes for details on precisely how this matrix is represented.
|
inherited |
Returns the common name of this 3-manifold as a human-readable string.
|
inline |
Determines whether this and the given object do not contain precisely the same presentations of the same graph manifold.
This routine does not test for homeomorphism. Instead it compares the exact presentations, including the matching matrix and the specific presentation of the bounded Seifert fibred space, and determines whether or not these presentations are identical. If you have two different presentations of the same graph manifold, they will be treated as not equal by this routine.
compare | the presentation with which this will be compared. |
true
if and only if this and the given object do not contain identical presentations of the same graph manifold. bool regina::GraphLoop::operator< | ( | const GraphLoop & | compare | ) | const |
Determines in a fairly ad-hoc fashion whether this representation of this space is "smaller" than the given representation of the given space.
The ordering imposed on graph manifolds is purely aesthetic on the part of the author, and is subject to change in future versions of Regina. It also depends upon the particular representation, so that different representations of the same space may be ordered differently.
All that this routine really offers is a well-defined way of ordering graph manifold representations.
compare | the representation with which this will be compared. |
true
if and only if this is "smaller" than the given graph manifold representation.
|
inherited |
Determines in a fairly ad-hoc fashion whether this representation of this 3-manifold is "smaller" than the given representation of the given 3-manifold.
The ordering imposed on 3-manifolds is purely aesthetic on the part of the author, and is subject to change in future versions of Regina.
The ordering also depends on the particular representation of the 3-manifold that is used. As an example, different representations of the same Seifert fibred space might well be ordered differently.
All that this routine really offers is a well-defined way of ordering 3-manifold representations.
compare | the 3-manifold representation with which this will be compared. |
true
if and only if this is "smaller" than the given 3-manifold representation. Sets this to be a clone of the given graph manifold.
Moves the contents of the given graph manifold into this graph manifold.
This is a constant time operation.
The graph manifold that was passed will no longer be usable.
|
inline |
Determines whether this and the given object contain precisely the same presentations of the same graph manifold.
This routine does not test for homeomorphism. Instead it compares the exact presentations, including the matching matrix and the specific presentation of the bounded Seifert fibred space, and determines whether or not these presentations are identical. If you have two different presentations of the same graph manifold, they will be treated as not equal by this routine.
compare | the presentation with which this will be compared. |
true
if and only if this and the given object contain identical presentations of the same graph manifold.
|
inline |
Returns a reference to the bounded Seifert fibred space that is joined to itself.
|
inherited |
Returns a short text representation of this object.
This text should be human-readable, should use plain ASCII characters where possible, and should not contain any newlines.
Within these limits, this short text ouptut should be as information-rich as possible, since in most cases this forms the basis for the Python __str__()
and __repr__()
functions.
__str__()
will use precisely this function, and for most classes the Python __repr__()
function will incorporate this into its output.
|
inherited |
Returns details of the structure of this 3-manifold that might not be evident from its common name.
For instance, for an orbit space S³/G this routine might return the full Seifert structure.
This routine may return the empty string if no additional details are deemed necessary.
|
inlinenoexcept |
Swaps the contents of this and the given graph manifold.
other | the graph manifold whose contents should be swapped with this. |
|
inherited |
Returns the common name of this 3-manifold in TeX format.
No leading or trailing dollar signs will be included.
|
inherited |
Returns a short text representation of this object using unicode characters.
Like str(), this text should be human-readable, should not contain any newlines, and (within these constraints) should be as information-rich as is reasonable.
Unlike str(), this function may use unicode characters to make the output more pleasant to read. The string that is returned will be encoded in UTF-8.
|
overridevirtual |
Writes the common name of this 3-manifold as a human-readable string to the given output stream.
out | the output stream to which to write. |
Implements regina::Manifold.
|
inlinevirtualinherited |
Writes details of the structure of this 3-manifold that might not be evident from its common name to the given output stream.
For instance, for an orbit space S³/G this routine might write the full Seifert structure.
This routine may write nothing if no additional details are deemed necessary. The default implementation of this routine behaves in this way.
out | the output stream to which to write. |
Reimplemented in regina::SFSpace, and regina::SnapPeaCensusManifold.
|
overridevirtual |
Writes the common name of this 3-manifold in TeX format to the given output stream.
No leading or trailing dollar signs will be included.
out | the output stream to which to write. |
Implements regina::Manifold.
|
inlineinherited |
Writes a detailed text representation of this object to the given output stream.
Subclasses must not override this routine. They should override writeName() and writeStructure() instead.
out | the output stream to which to write. |
|
inlineinherited |
Writes a short text representation of this object to the given output stream.
Subclasses must not override this routine. They should override writeName() instead.
out | the output stream to which to write. |