Skip to content

Commit 28a6b51

Browse files
author
Release Manager
committed
gh-39468: Fix documentation of integral_points Fixes #39395 Replacement for #39414 Check https://doc-pr-39468-- sagemath.netlify.app/html/en/reference/discrete_geometry/ and https://doc-pr-39468--sagemath.netlify.app/html/en/reference/discrete_ge ometry/sage/geometry/integral_points to see it is fixed. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [x] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #39468 Reported by: user202729 Reviewer(s):
2 parents d8970e8 + 0ddb79a commit 28a6b51

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/sage/geometry/integral_points.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
r"""
2+
Cython helper methods to compute integral points in polyhedra
3+
"""
4+
15
try:
26
from .integral_points_integer_dense import (
37
parallelotope_points,
@@ -22,3 +26,9 @@
2226
Inequality_int,
2327
InequalityCollection,
2428
)
29+
30+
31+
# __all__ is needed to generate Sphinx documentation
32+
__all__ = ['InequalityCollection', 'Inequality_generic', 'Inequality_int',
33+
'loop_over_parallelotope_points', 'parallelotope_points', 'print_cache',
34+
'ray_matrix_normal_form', 'rectangular_box_points', 'simplex_points']

0 commit comments

Comments
 (0)