-
Notifications
You must be signed in to change notification settings - Fork 93
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
Fix could not import Graphs.prufer_decode warning #215
Conversation
@SimonCoste would you mind doing a quick review? |
Codecov Report
@@ Coverage Diff @@
## master #215 +/- ##
=======================================
Coverage 97.43% 97.43%
=======================================
Files 113 113
Lines 6554 6554
=======================================
Hits 6386 6386
Misses 168 168 |
How did you get this warning ? |
Usually one does not notice, but when Graphs.jl gets precompiled there is a warning: julia> using Graphs
[ Info: Precompiling Graphs [86223c79-3864-5bf0-83f7-82e725a168b6]
WARNING: could not import Graphs.prufer_decode into SimpleGraphs I did't realize it, when I made this PR, but I think the reason is, that in I can't think of any pretty solution to that - but maybe we should simply move all the code into the function prufer_decode end right before including |
I feel like including What about modifying
Maybe the simplest thing is to get rid of those in a consistent manner, by replacing them with |
There was an incorrect import statement for
prufer_code
in theSimpleGraphs
submodule. This PR removes it.