Skip to content

Commit bcedb88

Browse files
committed
using only cover relations
1 parent 52a74d7 commit bcedb88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/combinat/posets/lattices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1645,7 +1645,7 @@ def is_left_modular(self, H=None, certificate=False) -> bool | list:
16451645
for x in H:
16461646
for z in self:
16471647
mxz = self.meet(x, z)
1648-
for y in self.principal_lower_set(z):
1648+
for y in self.lower_covers_iterator(z):
16491649
if self.join(y, mxz) != self.meet(self.join(y, x), z):
16501650
if not certificate:
16511651
return False

0 commit comments

Comments
 (0)