-
-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
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
Add neighborly methods for polyhedra #22417
Comments
Branch: u/moritz/neighborly |
Commit: |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:3
Hi Moritz, You could truncate the two long lines before the "for" (see https://www.python.org/dev/peps/pep-0008/#maximum-line-length ) |
comment:4
and you can put your name as the author. |
Author: Moritz Firsching |
Changed keywords from polyhedron to polyhedron days84 |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:8
can be simplified to
(please be careful with spaces in the code) |
comment:9
About spacing, change (in the code and in the examples)
|
comment:12
Hi Moritz,
More comments to come... |
Branch pushed to git repo; I updated commit sha1. New commits:
|
Changed keywords from polyhedron days84 to polyhedron, days84 |
Reviewer: Jean-Philippe Labbé |
This comment has been minimized.
This comment has been minimized.
comment:15
This ticket looks ready to go to me. I'd like to have a second opinion though to make sure! |
comment:16
Hi Moritz, Here are a couple of things to correct:
The doc compiles on 7.6.beta6 |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:18
Thanks JP! I improved the docstring. |
comment:20
Looks good! Up to the bot, I'll give it a positive review. |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:22
I would adapt the text before the neighborliness examples (specifying the cubes). All test pass on 7.6.beta6 and the documentation looks good. Once the bot gives the green light and you corrected the above, I'd give it a positive review. |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:24
thanks, JP! I moved the text before the cubes to the cyclic example. |
comment:25
It now looks good to me. Positive review. |
Changed branch from u/moritz/neighborly to |
I propose to add two functions to the polyhedron class; namely
neighborliness
andis_neighborly
.While
neighborliness
could be used to calculate theis_neighborly
, it might be faster not to compute the neighborliness if one only wants to knowis_neighborly(k)
for some small k. (More specifically, the output ofP.is_neighborly()
shoud be the same asP.neighborliness()>=floor(P.dim()/2))
).CC: @jplab @fchapoton @videlec
Component: geometry
Keywords: polyhedron, days84
Author: Moritz Firsching
Branch/Commit:
eea1215
Reviewer: Jean-Philippe Labbé
Issue created by migration from https://trac.sagemath.org/ticket/22417
The text was updated successfully, but these errors were encountered: