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:
Alexandre Duret-Lutz 2014-08-20 16:09:53 +02:00
parent 73e74c0ad3
commit d28e7f9c5c
2 changed files with 18 additions and 3 deletions

View file

@ -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)
{