From 97db2de6a27032ab54f7399f22c5df86afda905f Mon Sep 17 00:00:00 2001 From: Jonathan Kliem Date: Fri, 13 Mar 2020 10:30:43 +0100 Subject: [PATCH] applied changes from 28608 --- .../geometry/polyhedron/combinatorial_polyhedron/base.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx b/src/sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx index 91202a3531f..2d9fb7c6584 100644 --- a/src/sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx +++ b/src/sage/geometry/polyhedron/combinatorial_polyhedron/base.pyx @@ -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 @@ -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