You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assuming that the v0.7 result (polyhedron without constraints) can occur after fixing Dimension error for default Polyhedra backend in >= v0.7 #842: This polytope is not empty by definition. But it seems that Polyhedra interprets it like that. We should catch this case in the intersection methods and return an EmptySet in this case. Maybe we should check if Polyhedra returns a specific status flag or something to indicate empty intersections.
The text was updated successfully, but these errors were encountered:
In v0.6 this results in:
In v0.7 this results in:
Problems:
It might be because the simplification with
CDDLib
is hard to interpret (contains two hyperplanes):1
in the code, the result is as follows:This is still a strange result.
Polyhedra
interprets it like that. We should catch this case in theintersection
methods and return anEmptySet
in this case. Maybe we should check ifPolyhedra
returns a specific status flag or something to indicate empty intersections.The text was updated successfully, but these errors were encountered: