* 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:
parent
24fec22e52
commit
c0210abb55
2 changed files with 10 additions and 4 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue