Dan Schult
Dan Schult
You do not need to add a changelog to `doc/release/release_dev.rst`. But you are welcome to! :}
The viz problem was solved by a merged PR in the last 12 hours or so. Can you merge with main again? Or you can just leave it and we...
The problem occurs while using `heapify`. So we are providing the object in `heapify` in a way that it allows comparing the nodes (perhaps only when ties on the heap...
Thanks for those comments @brocla !! Hmmm... I thought the `create_tuple` function (line 375) in `dag.py` avoids the issue for `lexicographical_topological_sort`. But that is in `algorithms/dag.py` not `algorithms/graphical.py`. Perhaps I...
Thanks for this! It took me a little while to recall how those two functions handle sorting. We've got it fixed so most of the time it works fine. But...
That list of suggested changes looks good to me. And I agree that the example you make by putting all strings behind every non-string works for the case of a...
Wow -- it is definitely a bug that `__gt__` uses a `less than` check to break the ties in `_HeapElement`. That should be fixed. I think there are multiple ways...
Nice!! There are a lot of pieces there -- but at least we can make a list now. :} I believe the `simple/lazy/pagerank_directed_laplacian` are all available now in `directed_laplacian_matrix` with...
Yes, After looking through this again, there are other functions (that you mention) that call this code and didn't get updated to turn off the new option. Also, the part...
Hi.. thanks for these ideas -- I like "negative_cycle_early_detection" the best. But it is long.... :} I'm also trying to understand the shortcut process better. In particular I want to...