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

Commit

Permalink
src/sage/geometry/polyhedron/backend_cdd.py: Make Polyhedron_RDF_cdd …
Browse files Browse the repository at this point in the history
…a deprecated lazy_import
  • Loading branch information
Matthias Koeppe committed Sep 30, 2021
1 parent e251555 commit 5ec8fa8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/sage/geometry/polyhedron/backend_cdd.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
from .base import Polyhedron_base
from .base_QQ import Polyhedron_QQ

from sage.misc.lazy_import import lazy_import
lazy_import('sage.geometry.polyhedron.backend_cdd_rdf', 'Polyhedron_RDF_cdd', deprecation=32592)


class Polyhedron_cdd(Polyhedron_base):
r"""
Expand Down Expand Up @@ -457,7 +460,3 @@ def __init__(self, parent, Vrep, Hrep, **kwds):
sage: TestSuite(p).run()
"""
Polyhedron_cdd.__init__(self, parent, Vrep, Hrep, **kwds)


from sage.misc.lazy_import import lazy_import
lazy_import('sage.geometry.polyhedron.backend_cdd_rdf', 'Polyhedron_RDF_cdd')

0 comments on commit 5ec8fa8

Please sign in to comment.