We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 252c7a0 commit 83b3f53Copy full SHA for 83b3f53
1 file changed
tst/standard/prop.tst
@@ -192,6 +192,14 @@ gap> HasIsAcyclicDigraph(gr);
192
false
193
gap> IsAcyclicDigraph(gr);
194
195
+gap> IsAcyclicDigraph(Digraph([[2 .. 3], [], []]));
196
+true
197
+gap> IsAcyclicDigraph(Digraph([[2 .. 4], [], [], []]));
198
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
203
204
# IsFunctionalDigraph
205
gap> IsFunctionalDigraph(multiple);
0 commit comments