@@ -90,17 +90,17 @@ def join(self, x, y):
9090 """
9191
9292 class SubcategoryMethods :
93- def Graded (self ):
93+ def ChainGraded (self ):
9494 r"""
9595 A lattice is graded if all maximal chains have the same length.
9696
9797 EXAMPLES::
9898
9999 sage: P = posets.DivisorLattice(24)
100- sage: P in FiniteLatticePosets().Graded ()
100+ sage: P in FiniteLatticePosets().ChainGraded ()
101101 True
102102 """
103- return self ._with_axiom ("Graded " )
103+ return self ._with_axiom ("ChainGraded " )
104104
105105 def Stone (self ):
106106 r"""
@@ -261,13 +261,13 @@ def extra_super_categories(self):
261261 return [LatticePosets ().Extremal ()]
262262
263263 class SubcategoryMethods :
264- def Graded (self ):
264+ def ChainGraded (self ):
265265 r"""
266266 A trim and graded lattice is distributive.
267267
268268 EXAMPLES::
269269
270- sage: FiniteLatticePosets().Trim().Graded ()
270+ sage: FiniteLatticePosets().Trim().ChainGraded ()
271271 Category of finite distributive lattice posets
272272 """
273273 return self ._with_axiom ("Distributive" )
@@ -376,7 +376,7 @@ def extra_super_categories(self):
376376 """
377377 return [LatticePosets ().Trim (),
378378 LatticePosets ().CongruenceUniform (),
379- LatticePosets ().Graded ()]
379+ LatticePosets ().ChainGraded ()]
380380
381381 class ParentMethods :
382382 def is_distributive (self ):
@@ -431,21 +431,21 @@ def is_stone(self):
431431 """
432432 return True
433433
434- class Graded (CategoryWithAxiom ):
434+ class ChainGraded (CategoryWithAxiom ):
435435 """
436436 The category of graded lattices.
437437
438438 EXAMPLES::
439439
440- sage: cat = FiniteLatticePosets().Graded (); cat
441- Category of finite graded lattice posets
440+ sage: cat = FiniteLatticePosets().ChainGraded (); cat
441+ Category of finite chain graded lattice posets
442442
443443 sage: cat.super_categories()
444444 [Category of finite lattice posets,
445- Category of graded lattice posets]
445+ Category of chain graded lattice posets]
446446 """
447447 class ParentMethods :
448- def is_graded (self ):
448+ def is_graded (self ) -> bool :
449449 """
450450 Return whether ``self`` is a graded lattice.
451451
0 commit comments