-
-
Notifications
You must be signed in to change notification settings - Fork 206
chore: Ensure we're always using named indexes to access the internal data structure #784
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
fc89fcb
igraph_t_idx_max
krlmlr 34fdeb5
igraph_t_idx_env
krlmlr 714842e
add `igraph_t_idx_attr`
Antonov548 0cac024
add `igraph_t_idx_attr`
Antonov548 9a6d686
add `igraph_t_idx_os`
Antonov548 f615f75
skip test with old data type
Antonov548 c2c601e
add `igraph_t_idx_ii`
Antonov548 cd7a664
add `igraph_t_idx_oi`
Antonov548 b02d24f
add `igraph_t_idx_to`
Antonov548 48bcef5
add `igraph_t_idx_from`
Antonov548 57daed6
add `igraph_t_idx_directed`
Antonov548 6222e73
add `igraph_t_idx_n`
Antonov548 bc599c9
update index list
Antonov548 cda21d5
unskip tests
Antonov548 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
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.
@krlmlr I think it should be replaced with some
Callof C function. Should it be in this pull request?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.
I agree. Yes, please.
I wonder why the tests fail in CI/CD. Can you please try reverting the change to the
.svgfile?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.
It seems slightly better to have all
.Call()calls in separate R functions. So, this can be a call to a function whose only purpose is to.Call()a C function.Uh oh!
There was an error while loading. Please reload this page.
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.
There is one failing test which is related to
updateold graph. I think it should be fixed after all properties will be fine. For now I just ignored it locally.CC:
test-old-data-type.RThere 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.
You can use
skip()to officially skip the test for now, I had used that in this PR too.