networkx / nx-parallel

A networkx backend that uses joblib to run graph algorithms in parallel.
BSD 3-Clause "New" or "Revised" License
23 stars 20 forks source link

MAINT: Renaming functions with a different name while dispatching #56

Closed Schefflera-Arboricola closed 5 months ago

Schefflera-Arboricola commented 5 months ago

Reverting the change made in PR https://github.com/networkx/nx-parallel/pull/32 The changes made in the above PR would let the user do something like nxp.tournament.is_strongly_connected(H) for functions with a different name in _dispachable decorator(ref PR’s first comment for more) but it breaks the way we currently create the get_info function and how we automatically generate the algorithms list in the README.md. Let me know what you think.