Represents a power of a generator in a group presentation.
More...
#include <algebra/grouppresentation.h>
|
unsigned long | generator |
| The number that identifies the generator in this term. More...
|
|
long | exponent |
| The exponent to which the generator is raised. More...
|
|
Represents a power of a generator in a group presentation.
These objects are small enough to pass by value and swap with std::swap(), with no need for any specialised move operations or swap functions.
◆ GroupExpressionTerm() [1/3]
regina::GroupExpressionTerm::GroupExpressionTerm |
( |
| ) |
|
|
default |
Creates a new uninitialised term.
◆ GroupExpressionTerm() [2/3]
regina::GroupExpressionTerm::GroupExpressionTerm |
( |
unsigned long |
gen, |
|
|
long |
exp |
|
) |
| |
|
inline |
Creates a new term initialised to the given value.
- Parameters
-
gen | the number that identifies the generator in the new term. |
exp | the exponent to which this generator is raised. |
◆ GroupExpressionTerm() [3/3]
Creates a new term initialised to the given value.
◆ inverse()
Returns the inverse of this term.
The inverse has the same generator but a negated exponent.
Note that this term will remain unchanged.
- Returns
- the inverse of this term.
◆ operator!=()
Determines whether this and the given term do not contain identical data.
- Parameters
-
other | the term with which this term will be compared. |
- Returns
true
if and only if this and the given term do not have both the same generator and exponent.
◆ operator+=()
Attempts to merge this term with the given term.
If both terms have the same generator, the two exponents will be added and stored in this term. If the generators are different, this routine will do nothing.
Note that this term might be changed but the given term will remain unchanged.
- Parameters
-
other | the term to merge with this term. |
- Returns
true
if the two terms were merged into this term, or false
if the two terms have different generators.
◆ operator<()
Imposes an ordering on terms.
Terms are ordered lexigraphically as (generator, exponent) pairs.
- Parameters
-
other | the term to compare with this. |
- Returns
- true if and only if this term is lexicographically smaller than other.
◆ operator=()
Makes this term identical to the given term.
- Returns
- a reference to this term.
◆ operator==()
Determines whether this and the given term contain identical data.
- Parameters
-
other | the term with which this term will be compared. |
- Returns
true
if and only if this and the given term have both the same generator and exponent.
◆ exponent
long regina::GroupExpressionTerm::exponent |
The exponent to which the generator is raised.
◆ generator
unsigned long regina::GroupExpressionTerm::generator |
The number that identifies the generator in this term.
The documentation for this struct was generated from the following file: