graph: Add a is_dead_transition method.
* src/graph/graph.hh, src/tgba/tgbagraph.hh (is_dead_transition): New method.
This commit is contained in:
parent
73e74c0ad3
commit
d28e7f9c5c
2 changed files with 18 additions and 3 deletions
|
|
@ -357,6 +357,10 @@ namespace spot
|
|||
auto transitions()
|
||||
SPOT_RETURN(g_.transitions());
|
||||
|
||||
template<typename T>
|
||||
auto is_dead_transition(T t) const
|
||||
SPOT_RETURN(g_.is_dead_transition(t));
|
||||
|
||||
/// \brief Copy the acceptance conditions of another tgba.
|
||||
void copy_acceptance_conditions_of(const const_tgba_ptr& a)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue