Open schomatis opened 5 years ago
You can't generate graphs in parallel because sample_parent_node requires the rng.
The workaround is to use thread_rng and sample non-deterministically.
Btw, serialising the graphs for the tests is extremely slow. It's much faster to generate them from scratch in memory
This should be easy to do now that the parent sampling is isolated in
sample_parent_node
. Will be needed for tests of graph sizes in the order of2^30
.