to_spin_string: fix output of false and true

We used to output 0 and 1, but "spin -f" does not under understand
that.

* src/ltlvisit/tostring.cc (kw_spin): Output true and false instead of
0 and 1.
This commit is contained in:
Alexandre Duret-Lutz 2012-10-09 12:08:37 +02:00
parent 6167526548
commit 852603416f

View file

@ -99,8 +99,8 @@ namespace spot
}; };
const char* spin_kw[] = { const char* spin_kw[] = {
"0", "false", // 0 doesn't work from the command line
"1", "true", // 1 doesn't work from the command line
"[*0]", // not supported "[*0]", // not supported
" xor ", // rewritten " xor ", // rewritten
" -> ", // rewritten, although supported " -> ", // rewritten, although supported