Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stertooy committed May 1, 2021
1 parent 173aba4 commit a1bc02a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
17 changes: 8 additions & 9 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,14 @@ ArchiveFormats := ".tar.gz",

Status := "dev",

AbstractHTML := """
The <span class=\"pkgname\">TwistedConjugacy</span> package provides
methods to calculate Reidemeister classes, numbers, spectra and zeta
functions, as well as coincidence groups of group homomorphisms. These
ethods are, for the most part, designed to be used with (group
homomorphisms between) finite groups and, if the package
<span class=\"pkgname\">polycyclic</span> is also installed,
polycyclically presented groups.
""",
AbstractHTML := Concatenation(
"The TwistedConjugacy package provides methods to calculate Reidemeister ",
"classes, numbers, spectra and zeta functions, as well as coincidence ",
"groups of group homomorphisms. These methods are, for the most part, ",
"designed to be used with (group homomorphisms between) finite groups ",
"and, if the package polycyclic is also installed, polycyclically ",
"presented groups."
),

PackageDoc := rec(
BookName := ~.PackageName,
Expand Down
6 changes: 3 additions & 3 deletions doc/manual.gd
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
#! $$G \times H \to G: (g,h) \mapsto g \cdot h = \psi(h)^{-1} g\varphi(h).$$
#! This group action is called **$(\varphi,\psi)$-twisted conjugation**, and induces an equivalence relation $\sim_{\varphi,\psi}$ on $G$:
#! $$g_1 \sim_{\varphi,\psi} g_2 \iff \exists h \in H: g_1 \cdot h = g2.$$
#! The equivalence classes (i.e. the orbits of the action) are called **Reidemeister classes** and the number of Reidemeister classes is called the Reidemeister number of the pair $(\varphi,\psi)$.
#! The equivalence classes (i.e. the orbits of the action) are called **Reidemeister classes** and the number of Reidemeister classes is called the Reidemeister number $R(\varphi,\psi)$ of the pair $(\varphi,\psi)$.
#! The stabiliser of the identity $1_G$ for this action is the coincidence group $\mathrm{Coin}(\varphi, \psi )$, i.e. the subgroup of $H$ given by
#! $$ \mathrm{Coin}(\varphi,\psi) := \{ h \in H \mid \varphi(h) = \psi(h) \}.$$

#! <P/>

#! The <B>TwistedConjugacy</B> packageprovides methods to calculate Reidemeister classes, Reidemeister numbers and coincidence groups of pairs of group homomorphisms.
#! These methods are implemented for finite groups and (infinite) polycyclically presented groups. If $H$ and $G$ are both infinite polycyclically presented groups, then
#! many of the methods in this package are only guaranteed to produce a result if either $G = H$ and $R(\varphi,\psi) < \infinity$, or $G$ is nilpotent-by-finite.
#! many of the methods in this package are only guaranteed to produce a result if either $G = H$ and $R(\varphi,\psi)$ is finite, or $G$ is nilpotent-by-finite.
#! If this is not case, methods may either produce a (correct!) result, or throw an error: "<C>Error, no method found!</C>"

#! <P/>
Expand Down Expand Up @@ -245,7 +245,7 @@ DeclareOperation( "PrintReidemeisterZeta", [ IsGroupHomomorphism and IsEndoGener

#! @BeginExample
khi := GroupHomomorphismByImages( G, G, [ (1,2,3,4,5), (4,5,6) ],
> [ (1,2,6,3,5), (1,4,5) ] );;
[ (1,2,6,3,5), (1,4,5) ] );;
ReidemeisterZetaCoefficients( khi );
#! [ [ 7 ], [ ] ]
IsRationalReidemeisterZeta( khi );
Expand Down

0 comments on commit a1bc02a

Please sign in to comment.