We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is an example that is not handled properly:
sage: ieqs = [[1, 2, -1, 0], [0, -1, 2, -1], [0, 0, -1, 2], [0, -1, 0, 0], [0, 0, -1, 0], ....: [0, 0, 0, -1], [-1, -1, -1, -1], [1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]] sage: P = Polyhedron(ieqs=ieqs, backend='normaliz') sage: P.bounding_box() ((-3/4, -1/2, -1/4), (-1/2, -1/4, 0)) sage: P.bounding_box(integral_hull=True) (None, None) sage: P.integral_points() --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-17-2abbf2adff15> in <module>() ----> 1 P.integral_points() /home/travis/sage-build/local/lib/python2.7/site-packages/sage/geometry/polyhedron/backend_normaliz.pyc in integral_points(self, threshold) 568 if threshold > 1: 569 box_min, box_max = self.bounding_box(integral_hull=True) --> 570 box_points = prod(max_coord-min_coord+1 for min_coord, max_coord in zip(box_min, box_max)) 571 if box_points<threshold: 572 from sage.geometry.integral_points import rectangular_box_points TypeError: zip argument #1 must support iteration
CC: @mkoeppe
Component: geometry
Author: Travis Scrimshaw
Branch/Commit: aa9f258
aa9f258
Reviewer: Matthias Koeppe
Issue created by migration from https://trac.sagemath.org/ticket/22938
The text was updated successfully, but these errors were encountered:
New commits:
Fixing integral points for a non-empty polytope with trivial integral hull.
Sorry, something went wrong.
Commit: aa9f258
Branch: public/geometry/integral_points_empty_hull_normaliz-22938
Thanks for fixing this.
Changed branch from public/geometry/integral_points_empty_hull_normaliz-22938 to aa9f258
5918bf2
No branches or pull requests
Here is an example that is not handled properly:
CC: @mkoeppe
Component: geometry
Author: Travis Scrimshaw
Branch/Commit:
aa9f258
Reviewer: Matthias Koeppe
Issue created by migration from https://trac.sagemath.org/ticket/22938
The text was updated successfully, but these errors were encountered: