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:
parent
6167526548
commit
852603416f
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue