Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #19803: difference of behavior in polyhedra with different backends
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. URL: https://trac.sagemath.org/19803 Reported by: vdelecroix Ticket author(s): Jonathan Kliem Reviewer(s): Laith Rastanawi
- Loading branch information