@@ -109,17 +109,17 @@ Error, the argument <D> must be a connected digraph,
109109
110110# digraph with one node
111111gap> d := EdgeWeightedDigraph([[]] , [[]] );
112- < immutable edge - weighted empty digraph with 1 vertex>
112+ < immutable empty digraph with 1 vertex>
113113gap> tree := EdgeWeightedDigraphMinimumSpanningTree(d);
114- < immutable edge - weighted empty digraph with 1 vertex>
114+ < immutable empty digraph with 1 vertex>
115115gap> EdgeWeightedDigraphTotalWeight(tree);
1161160
117117
118118# digraph with loop
119119gap> d := EdgeWeightedDigraph([[ 1 ]] , [[ 5 ]] );
120120< immutable edge- weighted digraph with 1 vertex, 1 edge>
121121gap> EdgeWeightedDigraphMinimumSpanningTree(d);
122- < immutable edge - weighted empty digraph with 1 vertex>
122+ < immutable empty digraph with 1 vertex>
123123
124124# digraph with cycle
125125gap> d := EdgeWeightedDigraph([[ 2 ] , [ 3 ] , [ 1 ]] , [[ 5 ] , [ 10 ] , [ 15 ]] );
@@ -153,7 +153,7 @@ gap> EdgeWeightedDigraphMinimumSpanningTree(d);
153153
154154# Shortest paths: one node
155155gap> d := EdgeWeightedDigraph([[]] , [[]] );
156- < immutable edge - weighted empty digraph with 1 vertex>
156+ < immutable empty digraph with 1 vertex>
157157gap> EdgeWeightedDigraphShortestPaths(d, 1 );
158158rec ( distances := [ 0 ] , edges := [ fail ] , parents := [ fail ] )
159159
0 commit comments