* src/tgbaalgos/emptiness.cc (print_tgba_run): Output the
labels as formulae rather than bdd sets.
This commit is contained in:
parent
9d0bcae806
commit
908b6129f4
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2004-11-09 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||
|
||||
* src/tgbaalgos/emptiness.cc (print_tgba_run): Output the
|
||||
labels as formulae rather than bdd sets.
|
||||
|
||||
2004-11-08 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||
|
||||
* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_path):
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ namespace spot
|
|||
{
|
||||
os << " " << a->format_state(i->s) << std::endl;
|
||||
os << " | ";
|
||||
bdd_print_set(os, d, i->label);
|
||||
bdd_print_formula(os, d, i->label);
|
||||
os << "\t";
|
||||
bdd_print_accset(os, d, i->acc);
|
||||
os << std::endl;
|
||||
|
|
@ -72,7 +72,7 @@ namespace spot
|
|||
{
|
||||
os << " " << a->format_state(i->s) << std::endl;
|
||||
os << " | ";
|
||||
bdd_print_set(os, d, i->label);
|
||||
bdd_print_formula(os, d, i->label);
|
||||
os << "\t";
|
||||
bdd_print_accset(os, d, i->acc);
|
||||
os << std::endl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue