-
-
Notifications
You must be signed in to change notification settings - Fork 654
Closed
Description
As noted first on #20570, current Sage is not able to plot some LPs with irrational data. This appears to be due to a bug in the Sage polyhedron code for RDF data (which InteractiveLP uses when the data are not rational).
sage: poly = polytopes.regular_polygon(7)
sage: lp, x = poly.to_linear_program(solver='InteractiveLP', return_variable=True)
sage: lp.set_objective(x[0] + x[1])
sage: b = lp.get_backend()
sage: P = b.interactive_lp_problem()
sage: p = P.plot() ### ERROR
sage: p.show()
CC: @fchapoton @mo271 @jplab
Component: geometry
Keywords: polyhedron, days84
Author: Moritz Firsching
Branch/Commit: 736f8a3
Reviewer: Jean-Philippe Labbé
Issue created by migration from https://trac.sagemath.org/ticket/21270