Skip to content

Commit 83b3f53

Browse files
reiniscirponsjames-d-mitchell
authored andcommitted
Add failing example to tests
1 parent 252c7a0 commit 83b3f53

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tst/standard/prop.tst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,14 @@ gap> HasIsAcyclicDigraph(gr);
192192
false
193193
gap> IsAcyclicDigraph(gr);
194194
false
195+
gap> IsAcyclicDigraph(Digraph([[2 .. 3], [], []]));
196+
true
197+
gap> IsAcyclicDigraph(Digraph([[2 .. 4], [], [], []]));
198+
true
199+
gap> IsAcyclicDigraph(Digraph([[1 .. 3], [1 .. 3], [1 .. 3]]));
200+
false
201+
gap> IsAcyclicDigraph(Digraph([[2 .. 4], [1 .. 4], [1 .. 4], [1 .. 2]]));
202+
false
195203

196204
# IsFunctionalDigraph
197205
gap> IsFunctionalDigraph(multiple);

0 commit comments

Comments
 (0)