Qiskit / rustworkx

A high performance Python graph library implemented in Rust.
https://www.rustworkx.org
Apache License 2.0
1.13k stars 154 forks source link

Avoid using HashMaps in intermediate betweenness centrality computations when not necessary #1309

Open Paulo-21 opened 2 weeks ago

Paulo-21 commented 2 weeks ago

Remove HashMap from some computation

I removed the hashmap that index "NodeId" and replace it with a Vec .

1307