#define HELPTEXT \ " Canonically label a file of graphs or digraphs.\n\
\n\
-s force output to sparse6 format\n\
-g force output to graph6 format\n\
-z force output to digraph6 format\n\ If neither -s, -g or -z are given, the output format is\n\
determined by the header or, if there is none, by the\n\
format of the first input graph. As an exception, digraphs\n\
are always written in digraph6 format.\n\
-S Use sparse representation internally.\n\
Note that this changes the canonical labelling.\n\
Multiple edges are not supported. One loop per vertex is ok.\n\
-t Use Traces.\n\
Note that this changes the canonical labelling.\n\
Multiple edges and loops are not supported, nor invariants.\n\
\n\
-C# Make an invariant in 0..#-1 and output the number of graphs\n\
with each value of the invariant. Don't write graphs unless\n\
-W too.\n\
-W# (requires -C) Output the graphs with this invariant value,\n\
in their original labelling. Don't write the table.\n\
\n\
The output file will have a header ifand only if the input file does.\n\
\n\
-fxxx Specify a partition of the point set. xxx is any\n\
string of ASCII characters except nul. This string is\n\
considered extended to infinity on the right with the\n\
character 'z'. One character is associated with each point,\n\
in the order given. The labelling used obeys these rules:\n\
(1) the new order of the points is such that the associated\n\
characters are in ASCII ascending order\n\
(2) if two graphs are labelled using the same string xxx,\n\
the output graphs are identical iff there is an\n\
associated-character-preserving isomorphism between them.\n\
No option can be concatenated to the right of -f.\n\
\n\
-i# select an invariant (1 = twopaths, 2 = adjtriang(K), 3 = triples,\n\
4 = quadruples, 5 = celltrips, 6 = cellquads, 7 = cellquins,\n\
8 = distances(K), 9 = indsets(K), 10 = cliques(K), 11 = cellcliq(K),\n\
12 = cellind(K), 13 = adjacencies, 14 = cellfano, 15 = cellfano2,\n\
16 = refinvar(K))\n\
-I#:# select mininvarlevel and maxinvarlevel (default 1:1)\n\
-K# select invararg (default 3)\n\
\n\
-q suppress auxiliary information\n"
if ((sswitch!=0) + (zswitch!=0) + (gswitch!=0) + (uswitch!=0) > 1)
gt_abort(">E labelg: -szgu are incompatible\n");
if (tswitch && (fswitch || Sswitch))
gt_abort(">E labelg: -t is incompatible with -S and -f \n");
if (iswitch && inv == 0) iswitch = FALSE;
if (!Sswitch && iswitch && (inv > NUMINVARS))
gt_abort(">E labelg: -i value must be 0..16\n"); if (tswitch && iswitch)
gt_abort(">E labelg: invariants are not available with -t\n"); if (Wswitch && (sswitch || gswitch || zswitch || uswitch || !Cswitch))
gt_abort(">E labelg: -W forbids -sgzu and requires -C\n"); if (Cswitch && tabsize <= 0)
gt_abort(">E labelg: bad value for -C\n"); if (Wswitch && (outinvar < 0 || outinvar >= tabsize))
gt_abort(">E labelg: value of -W is not valid\n"); if (Sswitch && iswitch && invarproc[inv].entrypoint_sg == NULL)
gt_abort( ">E labelg: that invariant is not available in sparse mode\n");
if (iswitch)
{ if (Iswitch)
{
mininvarlevel = minil;
maxinvarlevel = maxil;
} else
mininvarlevel = maxinvarlevel = 1; if (!Kswitch) invararg = 3;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.