From: Michael Orlitzky Date: Fri, 2 Nov 2018 00:18:12 +0000 (-0400) Subject: cone/faces.py: remove a misleading comment. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=73d18143dcfc5fcde02cfa0d5323d96d3ae02174;p=sage.d.git cone/faces.py: remove a misleading comment. --- diff --git a/mjo/cone/faces.py b/mjo/cone/faces.py index 48d201b..9c6cfd4 100644 --- a/mjo/cone/faces.py +++ b/mjo/cone/faces.py @@ -79,8 +79,6 @@ def face_generated_by(K,S): """ face_lattice = K.face_lattice() - - # A list comprehension doesn't work and don't ask me why. candidates = [F for F in face_lattice if all([F.contains(x) for x in S])] # K itself is a face of K, so unless we were given a set S that