Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/sage/databases/findstat.py
Original file line number Diff line number Diff line change
Expand Up @@ -4318,6 +4318,7 @@ def in_range(self, element):
Cc0027: Signed permutations 4282 True
Cc0028: Skew partitions 1250 True
Cc0029: Lattices 1378 True
Cc0030: Ordered set partitions 5316 True
"""
return self._data["Code"].element_level(element) in self._data["LevelsWithSizes"]

Expand Down Expand Up @@ -4711,7 +4712,8 @@ class FindStatCollections(UniqueRepresentation, Parent):
Cc0026: Decorated permutations,
Cc0027: Signed permutations,
Cc0028: Skew partitions,
Cc0029: Lattices]
Cc0029: Lattices,
Cc0030: Ordered set partitions]
"""
def __init__(self):
"""
Expand Down Expand Up @@ -4787,7 +4789,8 @@ def _element_constructor_(self, entry):
Cc0026: Decorated permutations,
Cc0027: Signed permutations,
Cc0028: Skew partitions,
Cc0029: Lattices]
Cc0029: Lattices,
Cc0030: Ordered set partitions]

sage: FindStatCollection(Permutation([1,2,3])) # optional -- internet
Cc0001: Permutations
Expand Down