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

Commit

Permalink
missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Dec 10, 2020
1 parent 19bc7e4 commit 5feb98c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/sage/geometry/polyhedron/backend_ppl.py
Expand Up @@ -6,13 +6,15 @@
from sage.rings.integer import Integer
from sage.arith.functions import LCM_list
from sage.misc.functional import denominator
from .base import Polyhedron_base
from .base_QQ import Polyhedron_QQ
from .base_ZZ import Polyhedron_ZZ

from sage.misc.lazy_import import lazy_import
from sage.features import PythonModule
lazy_import('ppl', ['C_Polyhedron', 'Generator_System', 'Constraint_System',
'Linear_Expression', 'line', 'ray', 'point'],
feature=PythonModule("ppl", spkg="pplpy"))
from .base import Polyhedron_base
from .base_QQ import Polyhedron_QQ
from .base_ZZ import Polyhedron_ZZ


#########################################################################
Expand Down

0 comments on commit 5feb98c

Please sign in to comment.