Bases: sage.geometry.polyhedron.backend_ppl.Polyhedron_ppl, sage.geometry.polyhedron.base_QQ.Polyhedron_QQ
Polyhedra over with ppl
INPUT:
EXAMPLES:
sage: p = Polyhedron(vertices=[(0,0),(1,0),(0,1)], rays=[(1,1)], lines=[],
... backend='ppl', base_ring=QQ)
sage: TestSuite(p).run(skip='_test_pickling')
Bases: sage.geometry.polyhedron.backend_ppl.Polyhedron_ppl, sage.geometry.polyhedron.base_ZZ.Polyhedron_ZZ
Polyhedra over with ppl
INPUT:
EXAMPLES:
sage: p = Polyhedron(vertices=[(0,0),(1,0),(0,1)], rays=[(1,1)], lines=[])
... backend='ppl', base_ring=ZZ)
sage: TestSuite(p).run(skip='_test_pickling')
Bases: sage.geometry.polyhedron.base.Polyhedron_base
Polyhedra with ppl
INPUT:
EXAMPLES:
sage: p = Polyhedron(vertices=[(0,0),(1,0),(0,1)], rays=[(1,1)], lines=[], backend='ppl')
sage: TestSuite(p).run()