Information
- rustworkx version:
- rustworkx==0.17.1
- Python version: 3.10.16
- Rust version: rustc 1.78.0
- Operating system: MacOS
What is the current behavior?
Running all_pairs_all_simple_paths hangs indefinitely, using huge amount of processing.
What is the expected behavior?
It should complete in a few seconds
Steps to reproduce the problem
from rustworkx import all_pairs_all_simple_paths, directed_gnp_random_graph
graph_100 = directed_gnp_random_graph(100, 0.6, seed=None)
simple_path_pairs = all_pairs_all_simple_paths(graph_100)