Random dag generator
Open
docs
- Dominant language
- Jupyter Notebook
- Stars
- 2.6k
- Forks
- 1k
- PR merge metrics
- No merged PRs in 30d
Description
There is a bug in the random_dag function of
https://ipython.org/ipython-doc/3/parallel/dag_dependencies.html
The solution is to add the following line:
if G.has_edge(a, b):continue
before:
G.add_edge(a,b)
Contributor guide
Assessment
This issue has not been assessed yet.