File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
doc/en/reference/references Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -3689,6 +3689,9 @@ REFERENCES:
3689
3689
.. [Ja1971 ] \N . Jacobson. *Exceptional Lie Algebras *. Marcel Dekker,
3690
3690
Inc. New York. 1971. IBSN No. 0-8247-1326-5.
3691
3691
3692
+ .. [Jer2006 ] Mark Jerrum. *Two remarks concerning balanced matroids *.
3693
+ Combinatorica 26, no. 6 (2006): 733-742.
3694
+
3692
3695
.. [Jet2008 ] \D . Jetchev. Global divisibility of Heegner points and
3693
3696
Tamagawa numbers. Compos. Math. 144 (2008), no. 4, 811--826.
3694
3697
@@ -4991,6 +4994,10 @@ REFERENCES:
4991
4994
*Yangians and classical Lie algebras *. (1994)
4992
4995
:arxiv: `hep-th/9409025 `
4993
4996
4997
+ .. [MNWW2011 ] Dillon Mayhew, Mike Newman, Dominic Welsh, and Geoff Whittle.
4998
+ *On the asymptotic proportion of connected matroids *.
4999
+ European Journal of Combinatorics. 2011 Aug 1;32(6):882-90.
5000
+
4994
5001
.. [Mol2007 ] Alexander Ivanovich Molev.
4995
5002
*Yangians and Classical Lie Algebras *.
4996
5003
Mathematical Surveys and Monographs.
Original file line number Diff line number Diff line change @@ -6210,6 +6210,10 @@ cdef class Matroid(SageObject):
6210
6210
sage: M = matroids.Theta(4)
6211
6211
sage: M.is_paving()
6212
6212
False
6213
+
6214
+ REFERENCES:
6215
+
6216
+ [Oxl2011]_, p. 24.
6213
6217
"""
6214
6218
if self .rank() >= 2 :
6215
6219
for _ in self .dependent_sets_iterator(self .rank() - 1 ):
@@ -6239,12 +6243,17 @@ cdef class Matroid(SageObject):
6239
6243
sage: M.is_sparse_paving()
6240
6244
False
6241
6245
6246
+ REFERENCES:
6247
+
6248
+ The definition of sparse-paving matroids can be found in [MNWW2011]_.
6249
+ The algorithm uses an alternative characterization from [Jer2006]_.
6250
+
6242
6251
TESTS::
6243
6252
6244
6253
sage: M = matroids.Uniform(4, 50) # fast because we don't check M.dual().is_paving()
6245
6254
sage: M.is_sparse_paving()
6246
6255
True
6247
- sage: for M in matroids.AllMatroids(8):
6256
+ sage: for M in matroids.AllMatroids(8): # optional - matroid_database
6248
6257
....: assert M.is_sparse_paving() == (M.is_paving() and M.dual().is_paving())
6249
6258
"""
6250
6259
if not self .is_paving():
You can’t perform that action at this time.
0 commit comments