* iface/gspn/eesrg.cc (tgba_gspn_eesrg::all_acceptance_conditions,

tgba_gspn_eesrg::neg_acceptance_conditions): Forward to
data_->operand.
This commit is contained in:
Alexandre Duret-Lutz 2004-01-06 11:59:24 +00:00
parent 24fec22e52
commit c0210abb55
2 changed files with 10 additions and 4 deletions

View file

@ -1,5 +1,9 @@
2004-01-06 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-01-06 Alexandre Duret-Lutz <adl@src.lip6.fr>
* iface/gspn/eesrg.cc (tgba_gspn_eesrg::all_acceptance_conditions,
tgba_gspn_eesrg::neg_acceptance_conditions): Forward to
data_->operand.
* src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle): * src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle):
Do not skip this computation if from == to but the period is empty. Do not skip this computation if from == to but the period is empty.

View file

@ -469,15 +469,17 @@ namespace spot
bdd bdd
tgba_gspn_eesrg::all_acceptance_conditions() const tgba_gspn_eesrg::all_acceptance_conditions() const
{ {
// There is no acceptance conditions in GSPN systems. // There is no acceptance conditions in GSPN systems, they all
return bddfalse; // come from the operand automaton.
return data_->operand->all_acceptance_conditions();
} }
bdd bdd
tgba_gspn_eesrg::neg_acceptance_conditions() const tgba_gspn_eesrg::neg_acceptance_conditions() const
{ {
// There is no acceptance conditions in GSPN systems. // There is no acceptance conditions in GSPN systems, they all
return bddtrue; // come from the operand automaton.
return data_->operand->neg_acceptance_conditions();
} }
} }