Skip to content

Commit 0e8e707

Browse files
committed
Updated edge-weighted section in testinstall
1 parent 8ef2dca commit 0e8e707

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tst/testinstall.tst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -427,15 +427,15 @@ gap> String(CycleDigraph(4));
427427
428428
# Edge-weighted digraphs
429429
gap> d := EdgeWeightedDigraph([[2], [1]], [[5], [10]]);
430-
<immutable digraph with 2 vertices, 2 edges>
430+
<immutable edge-weighted digraph with 2 vertices, 2 edges>
431431
gap> EdgeWeights(d);
432432
[ [ 5 ], [ 10 ] ]
433433
gap> EdgeWeightedDigraphTotalWeight(d);
434434
15
435435
gap> EdgeWeightedDigraphMinimumSpanningTree(d);
436-
<immutable digraph with 2 vertices, 1 edge>
436+
<immutable edge-weighted digraph with 2 vertices, 1 edge>
437437
gap> d := EdgeWeightedDigraph([[2], [1, 2]], [[5], [5, 5]]);
438-
<immutable digraph with 2 vertices, 3 edges>
438+
<immutable edge-weighted digraph with 2 vertices, 3 edges>
439439
gap> EdgeWeightedDigraphShortestPaths(d, 1);
440440
rec( distances := [ 0, 5 ], edges := [ fail, 1 ], parents := [ fail, 1 ] )
441441
gap> EdgeWeightedDigraphShortestPaths(d);

0 commit comments

Comments
 (0)