Skip to content

Commit

Permalink
Fix documentation examples
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPointon committed Jan 31, 2024
1 parent bf0d9b4 commit 31f4c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/oper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1410,14 +1410,14 @@ gap> VerticesReachableFrom(D, 5);
gap> D := CompleteDigraph(5);
<immutable complete digraph with 5 vertices>
gap> VerticesReachableFrom(D, [1]);
[ 2, 1, 3, 4, 5 ]
[ 1, 2, 3, 4, 5 ]
gap> VerticesReachableFrom(D, [3]);
[ 1, 2, 3, 4, 5 ]
gap> D := EmptyDigraph(5);
<immutable empty digraph with 5 vertices>
gap> VerticesReachableFrom(D, [1, 2, 3, 4]);
[ ]
gap> VerticesReachableFrom(D, [3, 4, 5, 6]);
gap> VerticesReachableFrom(D, [3, 4, 5]);
[ ]
gap> D := ChainDigraph(5);
<immutable chain digraph with 5 vertices>
Expand Down

0 comments on commit 31f4c5d

Please sign in to comment.