-
Notifications
You must be signed in to change notification settings - Fork 11
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 weighted Delaunay triangulation #15
Open
kiranvad
wants to merge
1
commit into
scikit-tda:master
Choose a base branch
from
kiranvad:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## master #15 +/- ##
==========================================
- Coverage 92.91% 89.72% -3.19%
==========================================
Files 12 12
Lines 381 399 +18
==========================================
+ Hits 354 358 +4
- Misses 27 41 +14
Continue to review full report at Codecov.
|
Hi Kiran,
Thank you so much for this pull request. This sounds correct, and I'm
quite sure that qhull itself computes the Delaunay triangulation this way,
but I would like a moment to add some unit tests and be sure (it's strange
that qhull doesn't support this natively).
I will try to knock this out at the same time that I investigate your bug,
within the next week.
Thank you again for your patience.
Sincerely,
Chris
…On Sat, Jan 25, 2020 at 5:06 PM Kiran Vaddi ***@***.***> wrote:
Hey,
I added a function to compute a weighted Delaunay triangulation (to Alpha
filtration) which is a really useful tool for people working with molecules
and alpha complexes.
The basic idea is to compute Delaunay triangulation using its duality with
convex hull of one dimension above.
I am not sure if usage of a weighted Dealunay would require a change in
the circumradius computation(think not). I also added a three line example
in the BasicUsage.ipynb.
Have a look and let me know what you think.
------------------------------
You can view, comment on, or merge this pull request online at:
#15
Commit Summary
- add weighted delaunay triangulation
File Changes
- *M* cechmate/filtrations/alpha.py
<https://github.com/scikit-tda/cechmate/pull/15/files#diff-0> (64)
- *M* docs/notebooks/BasicUsage.ipynb
<https://github.com/scikit-tda/cechmate/pull/15/files#diff-1> (23)
Patch Links:
- https://github.com/scikit-tda/cechmate/pull/15.patch
- https://github.com/scikit-tda/cechmate/pull/15.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#15?email_source=notifications&email_token=AAJWDZVTX5W4NPUQIMGFKKDQ7SZXNA5CNFSM4KLTJEKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IIW24KA>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJWDZVU2JOH4GBDCOKGF2LQ7SZXNANCNFSM4KLTJEKA>
.
|
@ctralie What is the status of this? do we still have work to do moving this PR forward? |
Yeah, Umberto Lupo and I are doing a major overhaul of this library, and
this will be something we include on the side. Pandemic teaching has
slowed me down, but we're doing our best
…On Mon, Mar 1, 2021 at 8:24 PM Nathaniel Saul ***@***.***> wrote:
@ctralie <https://github.com/ctralie> What is the status of this? do we
still have work to do moving this PR forward?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#15 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJWDZSC7FEO4REJFFP23DTTBQ46LANCNFSM4KLTJEKA>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey,
I added a function to compute a weighted Delaunay triangulation (to Alpha filtration) which is a really useful tool for people working with molecules and alpha complexes.
The basic idea is to compute Delaunay triangulation using its duality with convex hull of one dimension above.
I am not sure if usage of a weighted Dealunay would require a change in the circumradius computation(think not). I also added a three line example in the
BasicUsage.ipynb
.Have a look and let me know what you think.