* 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

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