You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The add_turn_edges func in network.py is a perfomance bottleneck for graph creation, taking well over 30 minutes for the full WFRC dataset due to all the nested for loops. We could speed it up with Cython or a little C++/Rust extension with Python bindings.
The text was updated successfully, but these errors were encountered:
The add_turn_edges func in network.py is a perfomance bottleneck for graph creation, taking well over 30 minutes for the full WFRC dataset due to all the nested
for
loops. We could speed it up with Cython or a little C++/Rust extension with Python bindings.The text was updated successfully, but these errors were encountered: