File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -5964,14 +5964,13 @@ cdef class Matroid(SageObject):
5964
5964
5965
5965
OUTPUT:
5966
5966
5967
- a Boolean
5967
+ boolean
5968
5968
5969
5969
EXAMPLES::
5970
5970
5971
5971
sage: M = matroids.named_matroids.Vamos()
5972
5972
sage: M.is_paving()
5973
5973
True
5974
-
5975
5974
"""
5976
5975
for C in self .circuits():
5977
5976
if len (C) < self .rank():
@@ -5987,7 +5986,7 @@ cdef class Matroid(SageObject):
5987
5986
5988
5987
OUTPUT:
5989
5988
5990
- a Boolean
5989
+ boolean
5991
5990
5992
5991
EXAMPLES::
5993
5992
@@ -5997,7 +5996,6 @@ cdef class Matroid(SageObject):
5997
5996
sage: M = matroids.named_matroids.Fano()
5998
5997
sage: M.is_sparse_paving()
5999
5998
True
6000
-
6001
5999
"""
6002
6000
if not self .is_paving():
6003
6001
return False
@@ -8000,8 +7998,7 @@ cdef class Matroid(SageObject):
8000
7998
8001
7999
REFERENCES:
8002
8000
8003
- [Oxl2011 ], p. 189.
8004
-
8001
+ [Oxl2011 ]_, p. 189.
8005
8002
"""
8006
8003
from sage.topology.simplicial_complex import SimplicialComplex
8007
8004
return SimplicialComplex(self .bases()).automorphism_group()
You can’t perform that action at this time.
0 commit comments