-
-
Notifications
You must be signed in to change notification settings - Fork 512
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
Implement star and stellar subdivision of a face of simplicial complex #22466
Comments
Branch: u/jipilab/22466 |
This comment has been minimized.
This comment has been minimized.
Commit: |
New commits:
|
Changed keywords from days84, simplicial complex, star, stellar subdivision, deletion to days84, simplicial complex, star, stellar subdivision |
Branch pushed to git repo; I updated commit sha1. New commits:
|
Author: Jean-Philippe Labbé |
Reviewer: Thierry Monteil |
comment:7
First few comments/questions:
|
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:9
missing empty line here:
|
Branch pushed to git repo; I updated commit sha1. New commits:
|
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:12
You should avoid lines longer than 80 characters. I see one here:
In a line like
the style is to put a space after each comma. In docstrings, use single backquotes or dollar signs – In doctests, you need to put a double colon
I'm assuming that you haven't actually looked at the built documentation or you would have realized that there were problems. It's good practice to look at the html documentation to make sure it is okay. |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:14
Dear jhpalmieri, Thank you for the comments. Indeed, the double ticks slipped out of my mind for the code part. I fixed the documentation, hopefully it should be okay now. |
comment:16
Okay, better, but now the indentation doesn't match in the input and output blocks. You need to make changes like diff --git a/src/sage/homology/simplicial_complex.py b/src/sage/homology/simplicial_complex.py
index 2f2e997..0c77839 100644
--- a/src/sage/homology/simplicial_complex.py
+++ b/src/sage/homology/simplicial_complex.py
@@ -2776,7 +2776,7 @@ class SimplicialComplex(Parent, GenericCellComplex):
- ``simplex`` -- a simplex in this simplicial complex
- ``is_mutable`` -- (default: ``True``) boolean; determines if the output
- is mutable
+ is mutable
EXAMPLES::
|
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:18
Oh! Okay, my bad! Should be okay now. Thanks a lot for the help. |
comment:19
and
and
and then change the doctests accordingly.
Otherwise, this looks good. |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:21
ok, let it be |
Changed reviewer from Thierry Monteil to Thierry Monteil, Frédéric Chapoton |
Changed branch from u/jipilab/22466 to |
This ticket provides the star and the stellar subdivision of a face of a simplicial complex.
The star of a face is the union of the faces that contains that face. The star of the empty face is the whole complex.
Given a simplicial complex C, the stellar subdivision of a face f of C is a new simplicial complex obtained as the barycentric subdivision of the face with respect to its star.
CC: @mo271 @videlec
Component: algebraic topology
Keywords: days84, simplicial complex, star, stellar subdivision
Author: Jean-Philippe Labbé
Branch/Commit:
1b54fba
Reviewer: Thierry Monteil, Frédéric Chapoton
Issue created by migration from https://trac.sagemath.org/ticket/22466
The text was updated successfully, but these errors were encountered: