Skip to content

Commit

Permalink
prop.gd: Immediate method for IsStronglyConnectedDigraph
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson committed Jan 24, 2017
1 parent f6e44ac commit 1cbf6be
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gap/prop.gd
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,5 @@ InstallTrueMethod(IsSymmetricDigraph, IsCompleteDigraph);
InstallTrueMethod(IsTransitiveDigraph, IsCompleteDigraph);
InstallTrueMethod(IsAcyclicDigraph, IsEmptyDigraph);
InstallTrueMethod(IsRegularDigraph, IsInRegularDigraph and IsOutRegularDigraph);
InstallTrueMethod(IsStronglyConnectedDigraph,
IsConnectedDigraph and IsSymmetricDigraph);

0 comments on commit 1cbf6be

Please sign in to comment.