Skip to content

Commit e34645b

Browse files
committed
Changes suggested by reviewer
1 parent 55cc69b commit e34645b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/sage/matroids/matroid.pyx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5964,14 +5964,13 @@ cdef class Matroid(SageObject):
59645964
59655965
OUTPUT:
59665966
5967-
a Boolean
5967+
boolean
59685968
59695969
EXAMPLES::
59705970
59715971
sage: M = matroids.named_matroids.Vamos()
59725972
sage: M.is_paving()
59735973
True
5974-
59755974
"""
59765975
for C in self.circuits():
59775976
if len(C) < self.rank():
@@ -5987,7 +5986,7 @@ cdef class Matroid(SageObject):
59875986
59885987
OUTPUT:
59895988
5990-
a Boolean
5989+
boolean
59915990
59925991
EXAMPLES::
59935992
@@ -5997,7 +5996,6 @@ cdef class Matroid(SageObject):
59975996
sage: M = matroids.named_matroids.Fano()
59985997
sage: M.is_sparse_paving()
59995998
True
6000-
60015999
"""
60026000
if not self.is_paving():
60036001
return False
@@ -8000,8 +7998,7 @@ cdef class Matroid(SageObject):
80007998
80017999
REFERENCES:
80028000
8003-
[Oxl2011], p. 189.
8004-
8001+
[Oxl2011]_, p. 189.
80058002
"""
80068003
from sage.topology.simplicial_complex import SimplicialComplex
80078004
return SimplicialComplex(self.bases()).automorphism_group()

0 commit comments

Comments
 (0)