Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Removed some tests dealing with digraphs
Browse files Browse the repository at this point in the history
  • Loading branch information
Michele Borassi committed Jul 16, 2015
1 parent 29346b2 commit 268662f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/sage/graphs/spanning_tree.pyx
Expand Up @@ -290,15 +290,6 @@ cpdef kruskal(G, wfunction=None, bint check=False):
sage: G = my_disconnected_graph(100, 50, directed=False, multiedges=True, loops=True) # long time
sage: kruskal(G, check=True) # long time
[]
sage: G = my_disconnected_graph(100, 50, directed=True, multiedges=False, loops=False) # long time
sage: kruskal(G, check=True) # long time
[]
sage: G = my_disconnected_graph(100, 50, directed=True, multiedges=True, loops=False) # long time
sage: kruskal(G, check=True) # long time
[]
sage: G = my_disconnected_graph(100, 50, directed=True, multiedges=True, loops=True) # long time
sage: kruskal(G, check=True) # long time
[]
If the input graph is a tree, then return its edges. ::
Expand Down

0 comments on commit 268662f

Please sign in to comment.