-
-
Notifications
You must be signed in to change notification settings - Fork 654
Closed
Milestone
Description
The following error used to occur:
sage: from sage.geometry.polyhedron.parent import Polyhedra
sage: P_ppl = Polyhedra(ZZ, 3, 'ppl')
sage: P_cdd = Polyhedra(ZZ, 3, 'cdd')
sage: P_ppl([[],[],[]], None)
The empty polyhedron in ZZ^3
sage: P_cdd([[],[],[]], None)
Traceback (most recent call last):
...
TypeError: can't multiply sequence by non-int of type 'NoneType'
Apparently it got fixed along the way and we add doctests verifying it.
Component: geometry
Keywords: empty polyhedron, cdd
Author: Jonathan Kliem
Branch/Commit: 96dad18
Reviewer: Laith Rastanawi
Issue created by migration from https://trac.sagemath.org/ticket/19803