-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #209 from saraedum/links
Check for broken references in the documentation
- Loading branch information
Showing
17 changed files
with
288 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
.. automodule:: flatsurf.geometry.hyperbolic | ||
:members: | ||
:undoc-members: | ||
:special-members: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
.. automodule:: flatsurf.geometry.surface | ||
:members: | ||
:undoc-members: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**Fixed:** | ||
|
||
* Fixed broken links in the documentation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ | |
# **************************************************************************** | ||
# Copyright (C) 2013-2019 Vincent Delecroix <[email protected]> | ||
# 2013-2019 W. Patrick Hooper <[email protected]> | ||
# 2023 Julian Rüth <[email protected]> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 2 of | ||
|
@@ -203,6 +204,12 @@ def matrix_multiplicative_order(m): | |
class FinitelyGenerated2x2MatrixGroup(Group): | ||
r""" | ||
Finitely generated group of 2x2 matrices with real coefficients | ||
.. SEEALSO:: | ||
:py:mod:`sage.groups.group` for the general interface of groups | ||
like this in SageMath | ||
""" | ||
def __init__(self, matrices, matrix_space=None, category=None): | ||
if matrix_space is None: | ||
|
@@ -362,7 +369,29 @@ def __reduce__(self): | |
def one(self): | ||
return self._matrix_space.identity_matrix() | ||
|
||
def an_element(self): | ||
def _an_element_(self): | ||
r""" | ||
Return a typical element of this group, namely a generator. | ||
EXAMPLES: | ||
sage: from flatsurf.geometry.finitely_generated_matrix_group import FinitelyGenerated2x2MatrixGroup | ||
sage: G = FinitelyGenerated2x2MatrixGroup([identity_matrix(2)]) | ||
sage: G._an_element_() | ||
[1 0] | ||
[0 1] | ||
sage: G.an_element() | ||
[1 0] | ||
[0 1] | ||
.. SEEALSO:: | ||
:meth:`sage.structure.parent.Parent.an_element` which relies on | ||
this method and should be called instead | ||
""" | ||
return self._generators[0] | ||
|
||
def gen(self, i): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# **************************************************************************** | ||
# Copyright (C) 2013-2019 Vincent Delecroix <[email protected]> | ||
# 2013-2019 W. Patrick Hooper <[email protected]> | ||
# 2023 Julian Rüth <[email protected]> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 2 of | ||
|
@@ -31,7 +32,7 @@ class HalfDilationSurface(SimilaritySurface): | |
A half-dilation surface is a (G,X) structure for the group of dilatations | ||
`G = \RR^*` acting on the plane `X = \RR^2`. If you want to consider only | ||
the oriented case, have a look at | ||
:meth:`flatsurf.dilation_surface.DilationSurface`. | ||
:class:`~.dilation_surface.DilationSurface`. | ||
""" | ||
|
||
def __rmul__(self,matrix): | ||
|
Oops, something went wrong.