Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ nx-parallel is a NetworkX backend that uses joblib for parallelization. This pro
<details>
<summary>Script used to generate the above list</summary>

```py
```
import _nx_parallel as nxp
d = nxp.get_funcs_info() # temporarily add `from .update_get_info import *` to _nx_parallel/__init__.py
for func in d:
Expand Down Expand Up @@ -131,8 +131,12 @@ nxp.betweenness_centrality(H)

```py
# using `name` parameter - nx-parallel as an independent package
nxp.all_pairs_node_connectivity(H) # runs the parallel implementation in `connectivity/connectivity`
nxp.approximate_all_pairs_node_connectivity(H) # runs the parallel implementation in `approximation/connectivity`
nxp.all_pairs_node_connectivity(
H
) # runs the parallel implementation in `connectivity/connectivity`
nxp.approximate_all_pairs_node_connectivity(
H
) # runs the parallel implementation in `approximation/connectivity`
```

Also, if you are using nx-parallel as a backend then mentioning the subpackage to which the algorithm belongs is recommended to ensure that networkx dispatches to the correct implementation. For example:
Expand Down