* src/tgbaalgos/lbtt.cc (lbtt_reachable): Do not end transitions
guards with -1 in output.
This commit is contained in:
parent
f9c8eb1cb7
commit
ea04df6971
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-07-09 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgbaalgos/lbtt.cc (lbtt_reachable): Do not end transitions
|
||||||
|
guards with -1 in output.
|
||||||
|
|
||||||
2003-07-08 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
2003-07-08 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
* src/tgbatest/ltl2tgba.cc: Add option -t to output the LBTT automata.
|
* src/tgbatest/ltl2tgba.cc: Add option -t to output the LBTT automata.
|
||||||
|
|
|
||||||
|
|
@ -203,7 +203,7 @@ namespace spot
|
||||||
std::string s = bdd_to_lbtt(si->current_condition(), d);
|
std::string s = bdd_to_lbtt(si->current_condition(), d);
|
||||||
for (unsigned i = destrange.first; i < destrange.second; ++i)
|
for (unsigned i = destrange.first; i < destrange.second; ++i)
|
||||||
{
|
{
|
||||||
body << i << " " << s << " " << "-1" << std::endl;
|
body << i << " " << s << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
body << "-1" << std::endl;
|
body << "-1" << std::endl;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue