Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
check=False in MutablePoset.merge since checked already before
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Sep 28, 2015
1 parent 485b46f commit d5d6bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/data_structures/mutable_poset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3272,7 +3272,7 @@ def can_merge(other):
for m in tuple(to_merge):
if m.is_special():
continue
shell.merge(m.element, delete=True)
shell.merge(m.element, check=False, delete=True)


def maximal_elements(self):
Expand Down

0 comments on commit d5d6bec

Please sign in to comment.