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

Commit

Permalink
applied changes from 28608
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Apr 3, 2020
1 parent 4f163bf commit 97db2de
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1745,10 +1745,10 @@ cdef class CombinatorialPolyhedron(SageObject):
# The facet has at most two non-vertices and corresponds to
# two symmetric vertices or a vertex at the origin
# in the Gale transform.
facet.set_atom_repr()
facet.set_atom_rep()
counter = 0
while counter < length:
if facet.atom_repr[counter] != counter:
if facet.atom_rep[counter] != counter:
# We have found our first non-vertex.
one = counter
break
Expand All @@ -1765,7 +1765,7 @@ cdef class CombinatorialPolyhedron(SageObject):
# The facet corresponds to two symmetric vertices
# of the Gale transform.
while counter < length:
if facet.atom_repr[counter] != counter + 1:
if facet.atom_rep[counter] != counter + 1:
# We have found our second non-vertex.
two = counter + 1
break
Expand Down

0 comments on commit 97db2de

Please sign in to comment.