Regina 7.3 Calculation Engine
|
Represents a homomorphism between groups which are described via finite presentations. More...
#include <algebra/homgrouppresentation.h>
Public Member Functions | |
HomGroupPresentation (GroupPresentation domain, GroupPresentation codomain, std::vector< GroupExpression > map) | |
Creates a new homomorphism from the given data. More... | |
HomGroupPresentation (GroupPresentation domain, GroupPresentation codomain, std::vector< GroupExpression > map, std::vector< GroupExpression > inv) | |
Creates a declared isomorphism from the given data. More... | |
HomGroupPresentation (const GroupPresentation &groupForIdentity) | |
Creates a new identity homomorphism for the given group. More... | |
HomGroupPresentation (const HomGroupPresentation &src)=default | |
Creates a clone of the given homomorphism. More... | |
HomGroupPresentation (HomGroupPresentation &&src) noexcept=default | |
Moves the contents of the given homomorphism into this new homomorphism. More... | |
HomGroupPresentation & | operator= (const HomGroupPresentation &)=default |
Sets this to be a clone of the given homomorphism. More... | |
HomGroupPresentation & | operator= (HomGroupPresentation &&) noexcept=default |
Moves the contents of the given homomorphism to this homomorphism. More... | |
void | swap (HomGroupPresentation &other) noexcept |
Swaps the contents of this and the given homomorphism. More... | |
bool | operator== (const HomGroupPresentation &other) const |
Determines whether this and the given homomorphism have identical presentations. More... | |
bool | operator!= (const HomGroupPresentation &other) const |
Determines whether this and the given homomorphism do not have identical presentations. More... | |
const GroupPresentation & | domain () const |
The domain of the map. More... | |
const GroupPresentation & | codomain () const |
The codomain of the map. More... | |
bool | knowsInverse () const |
Returns whether or not this is a declared isomorphism. More... | |
GroupExpression | evaluate (GroupExpression arg) const |
Evaluate the homomorphism at an element of the domain. More... | |
GroupExpression | evaluate (unsigned long i) const |
Evaluate the homomorphism at a generator of the domain. More... | |
GroupExpression | invEvaluate (GroupExpression arg) const |
Evaluate the isomorphisms's inverse at an element of the codomain. More... | |
GroupExpression | invEvaluate (unsigned long i) const |
Evaluate the isomorphism at a generator of the codomain. More... | |
bool | intelligentSimplify () |
Simultaneously simplifies: More... | |
bool | intelligentNielsen () |
Simplifies the domain and codomain using only Nielsen moves, keeping track of the resulting map in the progress. More... | |
bool | smallCancellation () |
Simplifies the domain and codomain using only small cancellation theory. More... | |
HomGroupPresentation | operator* (const HomGroupPresentation &rhs) const |
Composes this homomorphism with the given homomorphism. More... | |
HomGroupPresentation | operator* (HomGroupPresentation &&rhs) const |
Composes this homomorphism with the given homomorphism. More... | |
bool | invert () |
Inverts the homomorphism. More... | |
bool | verify () const |
Verifies the map is a valid homomorphism. More... | |
bool | verifyIsomorphism () const |
Attempts to verify that a declared isomorphism is, indeed, an isomorphism. More... | |
HomMarkedAbelianGroup | markedAbelianisation () const |
Computes the induced map on the abelianizations of the domain and codomain. 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 homomorphism between groups which are described via finite presentations.
Some homomorphisms may be declared isomorphisms. This means that the user (or some other function in Regina) has proven that this is an isomorphism and has explicitly provided the inverse map. To provide the inverse map, you should call the four-argument constructor HomGroupPresentation(const GroupPresentation&, const GroupPresentation&, const std::vector<GroupExpression>&, const std::vector<GroupExpression>&).
You can test for a declared isomorphism by calling knowsInverse(). Even if a homomorphism is not a declared isomorphism, it might still be an isomorphism; this just means that no inverse map was explicitly provided.
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.
|
inline |
Creates a new homomorphism from the given data.
domain | the domain of the homomorphism. |
codomain | the codomain of the homomorphism. |
map | a vector of length g, where g is the number of generators of the domain, and where this homomorphism sends the ith generator of the domain to the element map[i] of the codomain. |
|
inline |
Creates a declared isomorphism from the given data.
Here you must provide both a map from the domain to codomain, and the inverse map from the codomain to domain.
domain | the domain of the homomorphism. |
codomain | the codomain of the homomorphism. |
map | a vector of length g, where g is the number of generators of the domain, and where this homomorphism sends the ith generator of the domain to the element map[i] of the codomain. |
inv | a vector of length k where k is the number of generators of the codomain, and where the inverse homomorphism sends the ith generator of the codomain to the element inv[i] of the domain. |
regina::HomGroupPresentation::HomGroupPresentation | ( | const GroupPresentation & | groupForIdentity | ) |
Creates a new identity homomorphism for the given group.
This will be a declared isomorphism (see the HomGroupPresentation class notes for details).
groupForIdentity | both the domain and codomain of the new identity homomorphism. |
|
default |
Creates a clone of the given homomorphism.
|
defaultnoexcept |
Moves the contents of the given homomorphism into this new homomorphism.
This is a fast (constant time) operation.
The homomorphism that was passed will no longer be usable.
|
inline |
The codomain of the map.
|
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.
|
inline |
The domain of the map.
|
inline |
Evaluate the homomorphism at an element of the domain.
arg | an element of the domain. |
|
inline |
Evaluate the homomorphism at a generator of the domain.
i | the index of a generator in the domain. |
bool regina::HomGroupPresentation::intelligentNielsen | ( | ) |
Simplifies the domain and codomain using only Nielsen moves, keeping track of the resulting map in the progress.
true
if and only if either presentation and/or the map was changed. bool regina::HomGroupPresentation::intelligentSimplify | ( | ) |
Simultaneously simplifies:
Uses the underlying GroupPresentation::intelligentSimplify(). See that routine for details.
true
if and only if either presentation and/or the map was changed. bool regina::HomGroupPresentation::invert | ( | ) |
Inverts the homomorphism.
This is only possible if the homomorphism is in fact a declared isomorphism (which means that the inverse map is already stored internally). See the HomGroupPresentation class notes for further details on declared isomorphisms.
If this is not a declared isomorphism then this routine will do nothing and simply return false
.
This operation is (very) fast constant time.
true
if and only if the inversion operation was successful (i.e., if this is a declared isomorphism).
|
inline |
Evaluate the isomorphisms's inverse at an element of the codomain.
arg | an element of the codomain. |
|
inline |
Evaluate the isomorphism at a generator of the codomain.
i | the index of a generator in the codomain. |
|
inline |
Returns whether or not this is a declared isomorphism.
A declared isomorphism is a isomorphism for which the user has explicitly provided the inverse map. See the HomGroupPresentation class notes for details.
true
if and only if this is a declared isomorphism, i.e, the inverse map was explicitly provided. HomMarkedAbelianGroup regina::HomGroupPresentation::markedAbelianisation | ( | ) | const |
Computes the induced map on the abelianizations of the domain and codomain.
|
inline |
Determines whether this and the given homomorphism do not have identical presentations.
This routine does not test whether the two homomorphisms are equal in the sense that each element of the domain maps to the same group element of the codomain - in general this is an undecidable problem.
Instead, this routine tests whether the two homomorphisms map the ith generator of the domain to precisely the same word in the codomain, for each i.
This routine will not test whether the domains and codomains have identical presentations, or whether either homomorphism is declared to be an isomorphism. However, if the two domains have different numbers of generators then the two homomorphisms will compare as not equal (since it will be impossible to compare the words that the corresponding generators map to).
other | the homomorphism to compare with this. |
true
if and only if this and the given homomorphisms do not have identical presentations. HomGroupPresentation regina::HomGroupPresentation::operator* | ( | const HomGroupPresentation & | rhs | ) | const |
Composes this homomorphism with the given homomorphism.
Evaluating the composition on some group element x is the same as evaluating this(rhs(x))
. In other words, in this composition, rhs is evaluated first and then the output of that is evaluated by this homomorphism.
If both of the given homomorphisms are declared isomorphisms, then the return value will be a declared isomoprhism also.
rhs | the homomorphism to compose this with. |
HomGroupPresentation regina::HomGroupPresentation::operator* | ( | HomGroupPresentation && | rhs | ) | const |
Composes this homomorphism with the given homomorphism.
Evaluating the composition on some group element x is the same as evaluating this(rhs(x))
. In other words, in this composition, rhs is evaluated first and then the output of that is evaluated by this homomorphism.
If both of the given homomorphisms are declared isomorphisms, then the return value will be a declared isomoprhism also.
rhs | the homomorphism to compose this with. |
|
default |
Sets this to be a clone of the given homomorphism.
|
defaultnoexcept |
Moves the contents of the given homomorphism to this homomorphism.
This is a fast (constant time) operation.
The homomorphism that was passed will no longer be usable.
|
inline |
Determines whether this and the given homomorphism have identical presentations.
This routine does not test whether the two homomorphisms are equal in the sense that each element of the domain maps to the same group element of the codomain - in general this is an undecidable problem.
Instead, this routine tests whether the two homomorphisms map the ith generator of the domain to precisely the same word in the codomain, for each i.
This routine will not test whether the domains and codomains have identical presentations, or whether either homomorphism is declared to be an isomorphism. However, if the two domains have different numbers of generators then the two homomorphisms will compare as not equal (since it will be impossible to compare the words that the corresponding generators map to).
other | the homomorphism to compare with this. |
true
if and only if this and the given homomorphisms have identical presentations. bool regina::HomGroupPresentation::smallCancellation | ( | ) |
Simplifies the domain and codomain using only small cancellation theory.
true
if and only if either presentation and/or the map was changed.
|
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.
|
inlinenoexcept |
Swaps the contents of this and the given homomorphism.
other | the homomorphism whose contents should be swapped with this. |
|
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.
bool regina::HomGroupPresentation::verify | ( | ) | const |
Verifies the map is a valid homomorphism.
Specifically, this routine runs through all the relators in the domain, evaluates the homomorphism on the relators and checks that they simplify to 1 in the codomain.
This routine does not guarantee a conclusive result (since the word problem is, in general, undecidable). If this routine returns true
then this proves that the homomorphism is indeed valid. If this routine returns false
, then the result is inconclusive (i.e., it might still be valid but Regina was not able to prove this).
This routine is intended for sanity checking only: any homomorphism that you construct in Regina should always be valid in this sense.
true
if Regina is able to verify that this is a homomorphism, or false
if the result is inconclusive. bool regina::HomGroupPresentation::verifyIsomorphism | ( | ) | const |
Attempts to verify that a declared isomorphism is, indeed, an isomorphism.
This routine works by attempting to verify that f^-1(f(x))x^-1
simplifes to 1 for all generators x in the domain, and likewise for the codomain.
This routine does not guarantee a conclusive result. If this routine returns true
then this proves that this is indeed an isomorphism. If this routine returns false
then the result is inconclusive (i.e., it might still be an isomorphism but Regina was not able to prove this).
You probably only want to run this on good presentations for small cancellation theory - an automorphism of a poorly-presented group likely will not be noticed.
This routine is intended for sanity checking only: any homomorphism that you construct as a declared isomorphism should always be an isomorphism.
true
if it is verified that this is an isomorphism, or false
if the result is inconclusive. void regina::HomGroupPresentation::writeTextLong | ( | std::ostream & | out | ) | const |
Writes a detailed text representation of this object to the given output stream.
out | the output stream to which to write. |
void regina::HomGroupPresentation::writeTextShort | ( | std::ostream & | out | ) | const |
Writes a short text representation of this object to the given output stream.
out | the output stream to which to write. |