-
-
Notifications
You must be signed in to change notification settings - Fork 205
refactor!: kill igraph.arpack.default and arpack_defaults lists, add arpack_defaults() as a function #762
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
refactor!: kill igraph.arpack.default and arpack_defaults lists, add arpack_defaults() as a function #762
Changes from all commits
f812f04
31b33e2
ab5fb88
f31031e
c3a7e34
3a83b43
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,6 +33,7 @@ Imports: | |
| cli, | ||
| graphics, | ||
| grDevices, | ||
| lifecycle, | ||
| magrittr, | ||
| Matrix, | ||
| pkgconfig (>= 2.0.0), | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
What do we need
eval_tidyfor? Can't we just force, and if the user has passed a function, we call it?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.
We only need to catch the case where the argument is
arpack_defaultsand a function. I'm usingrlang::call_args(rlang::current_call())[["options"]]on the following line hence the rlang here, especially as rlang is a dependency.Now, maybe this whole "hack" is a bad idea.