Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Change 'kind' to 'output' following #20259
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Aug 12, 2016
1 parent 0d449b9 commit 9e2c927
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/geometry/polyhedron/base.py
Expand Up @@ -4837,7 +4837,7 @@ def fundamental_domain(self, group=None):
sage: P = Polyhedron([(0,0), (1,0), (0,2)])
sage: P.volume()
1
sage: G = P.restricted_automorphism_group(kind="matrix")
sage: G = P.restricted_automorphism_group(output="matrix")
sage: Q = P.fundamental_domain(G)
sage: Q.vertices()
(A vertex at (0, 0), A vertex at (1/3, 2/3), A vertex at (0, 1))
Expand Down Expand Up @@ -4875,7 +4875,7 @@ def fundamental_domain(self, group=None):
return self

if group is None:
G = self.restricted_automorphism_group(kind="matrixlist")
G = self.restricted_automorphism_group(output="matrixlist")
else:
# Convert all group elements to matrices representing affine
# transformations
Expand Down

0 comments on commit 9e2c927

Please sign in to comment.