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

Commit

Permalink
took into account the changes from #28614
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Dec 13, 2019
1 parent f131286 commit 2113b47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ cdef class CombinatorialPolyhedron(SageObject):
d = face_iter.next_dimension()
while (d < dim):
sig_check()
if face_iter.length_atom_repr() == d + 1:
if face_iter.n_atom_rep() == d + 1:
# The current face is a simplex.
face_iter.ignore_subfaces()
else:
Expand Down Expand Up @@ -1367,7 +1367,7 @@ cdef class CombinatorialPolyhedron(SageObject):
d = face_iter.next_dimension()
while (d < dim):
sig_check()
if face_iter.length_atom_repr() == d + 1:
if face_iter.n_atom_rep() == d + 1:
# The current face is a simplex.
face_iter.ignore_supfaces()
else:
Expand Down

0 comments on commit 2113b47

Please sign in to comment.