/* fsaandnot.c 3/11/94. * calculates "and_not" (set-difference) of two finite state automata * * SYNOPSIS: fsaandnot [-ip d/s[dr]] [-op d/s] [-silent] [-v] [-l/-h] filename1 filename2 outfilename * * Input is from filename1 and filename2, which should contain fsa's. * Output is to outfilename * * OPTIONS: * -ip d/s[dr] input in dense or sparse format - dense is default * -op d/s output in dense or sparse format - default is as in current * value of table->printing_format, in the fsa. * -v verbose * -silent no diagnostics * -l/-h large/huge hash-tables (for big examples)
*/
if (kbm_print_level > 1)
printf(" #Number of states of fsaandnot before minimisation = %d.\n",
fsaandnot->states->size); if (fsa_minimize(fsaandnot) == -1) exit(1); if (kbm_print_level > 1)
printf(" #Number of states of fsaandnot after minimisation = %d.\n",
fsaandnot->states->size);
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 und die Messung sind noch experimentell.