danspielman / Laplacians.jl

Algorithms inspired by graph Laplacians: linear equation solvers, sparsification, clustering, optimization, etc.
Other
217 stars 39 forks source link

Receiving an Error by Using the Package with Julia v1.0.4 #18

Open moash85 opened 5 years ago

moash85 commented 5 years ago

I am trying to use Laplacians package with Julia version- 1.0.4, however I get the following message (error): "Entropy pool not available to seed RNG; using ad-hoc entropy sources."

I appreciate if anyone help me with this. I am assuming that this is an error that causes an issue to use the package properly since I am not getting the correct results using some of the existing functions in the package (sparsify() and maxflow()).

I am not sure if the package necessarily needs Julia- v1.0.0 to be properly used.

danspielman commented 5 years ago

I have never seen this error. Can you provide a small example of code that produces it?

Also, please run the tests for Laplacians and let me know if they report any errors on your system. You do this by typing "]" to get the "pkg>" prompt, and then entering "test Laplacians"

moash85 commented 5 years ago

Thank you for your response. I found out that this error is related to my OS and has nothing to do with the package. I also followed your instructions for testing the package and I got some warnings about some functions that are deprecated but at the end I got this: "Laplacians test passed". Thank you.