I'm using networkx in tests, so I'd like results to be deterministic. In particular, I found that nx.articulation_points(graph)
sometimes gives articulation points in topological order, and other times in reverse topological order. Are there tricks to improve determinism?
I tried doing export PYTHONHASHSEED=0
before running the script, but it made no difference for nx.articulation_points