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

Commit

Permalink
small fix in ridges
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Nov 13, 2019
1 parent dd0729d commit d4b3163
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1129,8 +1129,8 @@ cdef class CombinatorialPolyhedron(SageObject):
if add_equalities and names:
# Also getting the equalities for each facet.
return tuple(
(((facet_one(i),) + self._equalities()),
((facet_two(i),) + self._equalities()))
(((facet_one(i),) + self.equalities()),
((facet_two(i),) + self.equalities()))
for i in range(n_ridges))
else:
return tuple((facet_one(i), facet_two(i))
Expand Down

0 comments on commit d4b3163

Please sign in to comment.