cyaron
cyaron copied to clipboard
fix(Graph): DAG/connected 函数中计算边数上限的错误
语句cyaron.Graph.DAG(10, 90, repeated_edges=False) 将导致无限循环。
https://github.com/luogu-dev/cyaron/blob/0865426a68124828988f60c8b0e5d5db5cad8cde/cyaron/graph.py#L609-L615
应把 610 行的 not loop 换成 loop。
@Mr-Python-in-China 你直接修了吧