283283gap> gr[ 3 ] := Digraph([[ 1 , 2 ] , [ 1 , 2 ]] );
284284< immutable digraph with 2 vertices, 4 edges>
285285gap> WriteDigraphs(filename, Digraph([[ 2 ] , []] ), Graph6String);
286- Error, the argument < D> must be a symmetric digraph; consider encoding in Spar\
287- se6 or Disparse6
286+ Error, the argument < D> must be a symmetric digraph;
287+ consider encoding in Digraph6 or Disparse6
288288gap> OnBreak := oldOnBreak;;
289289gap> IO_Close(IO.OpenFiles[ Length(IO.OpenFiles)] );;
290290gap> filename := Concatenation(DIGRAPHS_Dir(), " /tst/out/test.s6.bz2" );;
@@ -320,8 +320,8 @@ gap> ReadDigraphs(f);
320320gap> IO_Close(f);;
321321gap> f := DigraphFile(filename, " a" );;
322322gap> WriteDigraphs(f, CycleDigraph(5 ));
323- Error, the argument < D> must be a symmetric digraph; consider encoding in Spar\
324- se6 or Disparse6
323+ Error, the argument < D> must be a symmetric digraph;
324+ consider encoding in Digraph6 or Disparse6
325325gap> WriteDigraphs(f, JohnsonDigraph(6 , 3 ));
326326IO_OK
327327gap> IO_Close(f);;
@@ -546,8 +546,8 @@ Error, the 2nd argument <s> is not a valid disparse6 string,
546546
547547# Special format characters
548548gap> Sparse6String(ChainDigraph(3 ));
549- Error, the argument < D> must be a symmetric digraph; consider encoding in Digr\
550- aph6 or Disparse6
549+ Error, the argument < D> must be a symmetric digraph;
550+ consider encoding in Digraph6 or Disparse6
551551gap> Sparse6String(CompleteDigraph(1 ));
552552" :@"
553553gap> gr := Digraph([[ 1 ] , []] );;
@@ -563,20 +563,20 @@ gap> Sparse6String(last);
563563# Multiple Edges Digraph6
564564gap> gr := Digraph([[ 1 , 1 ] , [ 2 ]] );;
565565gap> Digraph6String(gr);
566- Error, the argument < D> must not have multiple edges consider encoding in Spar\
567- se6 or Disparse6,
566+ Error, the argument < D> must not have multiple edges;
567+ consider encoding in Sparse6 or Disparse6
568568
569569# Non-symmetric Digraph in Sparse6
570570gap> gr := Digraph([[ 2 ] , []] );;
571571gap> Sparse6String(gr);
572- Error, the argument < D> must be a symmetric digraph; consider encoding in Digr\
573- aph6 or Disparse6
572+ Error, the argument < D> must be a symmetric digraph;
573+ consider encoding in Digraph6 or Disparse6
574574
575575# Digraph with loops in Sparse6
576576gap> gr := Digraph([[ 1 ] , [ 2 ]] );;
577577gap> Graph6String(gr);
578- Error, the argument < D> must not have loops; consider encoding in Sparse6 or D\
579- isparse6
578+ Error, the argument < D> must not have loops;
579+ consider encoding in Sparse6, Digraph6, or Disparse6
580580
581581# DigraphPlainTextLineDecoder: bad input
582582gap> DigraphPlainTextLineDecoder(" " , " " , 1 , " ." );
@@ -678,8 +678,8 @@ Error, cannot open the file given as the 1st argument <name>,
678678
679679# DigraphPlainTextLineDecoder: bad input
680680gap> Graph6String(ChainDigraph(4));
681- Error, the argument <D> must be a symmetric digraph; consider encoding in Spar\
682- se6 or Disparse6
681+ Error, the argument <D> must be a symmetric digraph;
682+ consider encoding in Digraph6 or Disparse6
683683gap> DIGRAPHS_Graph6Length(-1);
684684fail
685685gap> DIGRAPHS_Graph6Length(68719476737);
0 commit comments