-
Notifications
You must be signed in to change notification settings - Fork 78
c level edge id array #2340
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
c level edge id array #2340
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2340 +/- ##
=======================================
Coverage 93.29% 93.30%
=======================================
Files 28 28
Lines 26789 26797 +8
Branches 1233 1233
=======================================
+ Hits 24994 25002 +8
Misses 1762 1762
Partials 33 33
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
benjeffery
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! One reword of the docs.
c/tskit/trees.h
Outdated
| @brief The edge encoding the relationship between u and its parent is | ||
| edge[u]. Equal to``TSK_NULL`` if node u is a root or is not a node in | ||
| the current tree. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| @brief The edge encoding the relationship between u and its parent is | |
| edge[u]. Equal to``TSK_NULL`` if node u is a root or is not a node in | |
| the current tree. | |
| @brief Array of edge ids where ``edge[u]`` is the edge that encodes the relationship between child node ``u`` and its | |
| parent. Equal to``TSK_NULL`` if node ``u`` is a root, virtual root or is not a node in the current tree. |
jeromekelleher
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work, thanks @GertjanBisschop!
f87107b to
498c0d9
Compare
|
@Mergifyio refresh |
✅ Pull request refreshed |
|
Circle CI AWOL again.... |
|
@Mergifyio rebase |
✅ Branch has been successfully rebased |
498c0d9 to
c8eb484
Compare
First pass at the C level edge array (#2304).