Regina 7.0 Calculation Engine
|
Represents a particular 3-manifold, independent of how it might be triangulated. More...
#include <manifold/manifold.h>
Public Member Functions | |
virtual | ~Manifold ()=default |
A destructor that does nothing. 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 | TeXName () const |
Deprecated routine that 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... | |
virtual AbelianGroup | homology () const |
Returns the first homology group of this 3-manifold, if such a routine has been implemented. More... | |
AbelianGroup | homologyH1 () const |
A deprecated alias for homology(). More... | |
virtual bool | isHyperbolic () const =0 |
Returns whether or not this is a finite-volume hyperbolic manifold. 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 & | writeName (std::ostream &out) const =0 |
Writes the common name of this 3-manifold as a human-readable string to the given output stream. More... | |
virtual std::ostream & | writeTeXName (std::ostream &out) const =0 |
Writes the common name of this 3-manifold in TeX format to the given output stream. 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... | |
Protected Member Functions | |
Manifold ()=default | |
A default constructor. More... | |
Manifold (const Manifold &)=default | |
A copy constructor. More... | |
Manifold & | operator= (const Manifold &)=default |
A copy assignment operator. More... | |
Represents a particular 3-manifold, independent of how it might be triangulated.
This is an abstract base class: its subclasses correspond to different families of 3-manifolds.
Each subclass:
|
virtualdefault |
A destructor that does nothing.
|
protecteddefault |
A default constructor.
This does nothing in the base Manifold class, and is not for public use. It is declared here so that subclasses can use it implicitly in their own default constructors.
|
protecteddefault |
A copy constructor.
This does nothing in the base Manifold class, and is not for public use. It is declared here so that subclasses can use it implicitly in their own copy constructors.
|
virtual |
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::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.
|
virtual |
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.
This routine can also be accessed via the alias homologyH1() (a name that is more specific, but a little longer to type).
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 in regina::GraphLoop, regina::GraphPair, regina::GraphTriple, regina::Handlebody, regina::LensSpace, regina::SFSpace, regina::SimpleSurfaceBundle, regina::SnapPeaCensusManifold, and regina::TorusBundle.
|
inline |
A deprecated alias for homology().
NotImplemented | homology calculation has not yet been implemented for this particular 3-manifold. |
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. |
|
pure virtual |
Returns whether or not this is a finite-volume hyperbolic manifold.
true
if this is a finite-volume hyperbolic manifold, or false
if not. Implemented in regina::GraphLoop, regina::GraphPair, regina::GraphTriple, regina::Handlebody, regina::LensSpace, regina::SFSpace, regina::SimpleSurfaceBundle, regina::SnapPeaCensusManifold, and regina::TorusBundle.
std::string regina::Manifold::name | ( | ) | const |
Returns the common name of this 3-manifold as a human-readable string.
bool regina::Manifold::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.
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. A copy assignment operator.
This does nothing in the base Manifold class, and is not for public use. It is declared here so that subclasses can use it implicitly in their own copy assignment operators.
|
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.std::string regina::Manifold::structure | ( | ) | const |
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^3/G this routine might return the full Seifert structure.
This routine may return the empty string if no additional details are deemed necessary.
std::string regina::Manifold::texName | ( | ) | const |
Returns the common name of this 3-manifold in TeX format.
No leading or trailing dollar signs will be included.
|
inline |
Deprecated routine that returns the common name of this 3-manifold in TeX format.
|
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.
|
pure virtual |
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. |
Implemented in regina::GraphLoop, regina::GraphPair, regina::GraphTriple, regina::Handlebody, regina::LensSpace, regina::SFSpace, regina::SimpleSurfaceBundle, regina::SnapPeaCensusManifold, and regina::TorusBundle.
|
inlinevirtual |
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^3/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.
|
pure virtual |
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. |
Implemented in regina::GraphLoop, regina::GraphPair, regina::GraphTriple, regina::Handlebody, regina::LensSpace, regina::SFSpace, regina::SimpleSurfaceBundle, regina::SnapPeaCensusManifold, and regina::TorusBundle.
|
inline |
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. |
|
inline |
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. |