Simon Schölly

Results 188 comments of Simon Schölly

> @simonschoelly , for my packages I have switched away from using extras and rather using a sub Project.toml for the tests. I believe that started being supported somewhere around...

I am not sure how I can add something to your PR - so the changes are here: #435

What is the issue with using `Distrubuted`? As far as I know it is a standard library.

> LGTM, but I am a bit new to the maintainer team, and this does introduce a new public feature (the `parallel` kwarg), so I will wait a bit for...

I think the randomness comes from the solver ArnoldiMethod.jl that we are using here. Even if the graph is connected we can get slightly different results between each run: ```julia...

Isn't `v1.10` the new lts? In that case we should still keep the check for the lower bound version `v1.6` until we decide to raise that version in `Project.toml`.

It would be very nice if we had a flag to allow or disallows self-loops. A while ago I tried to come up with a variant of the Erdős–Gallai for...

This [paper](https://upcommons.upc.edu/bitstream/handle/2117/1490/sequences.pdf?sequence=1&isAllowed=y) might have some solution. One difference there is that for Graphs.jl we only add `1` to the degree of a vertex if it has a self-loop. But that...

So for a quick solution we should state in the documentation that self-loops and multiple edges are not allowed.