dot: support 'u'

* spot/twaalgos/dot.cc: Implement it.
* bin/common_aoutput.cc, NEWS: Mention it.
* tests/python/alternation.ipynb: Test it.
This commit is contained in:
Alexandre Duret-Lutz 2018-05-11 14:50:14 +02:00
parent 13c227a099
commit 60898b6d22
4 changed files with 3296 additions and 1639 deletions

View file

@ -88,7 +88,7 @@ static const argp_option options[] =
/**************************************************/
{ nullptr, 0, nullptr, 0, "Output format:", 3 },
{ "dot", 'd',
"1|a|A|b|B|c|C(COLOR)|e|f(FONT)|h|k|n|N|o|r|R|s|t|v|y|+INT|<INT|#",
"1|a|A|b|B|c|C(COLOR)|e|f(FONT)|h|k|n|N|o|r|R|s|t|u|v|y|+INT|<INT|#",
OPTION_ARG_OPTIONAL,
"GraphViz's format. Add letters for "
"(1) force numbered states, "
@ -110,6 +110,7 @@ static const argp_option options[] =
"(R) color acceptance sets by Inf/Fin, "
"(s) with SCCs, "
"(t) force transition-based acceptance, "
"(u) hide true states, "
"(v) vertical layout, "
"(y) split universal edges by color, "
"(+INT) add INT to all set numbers, "