* src/graph/graph.hh (transitions): New method.
This commit is contained in:
parent
7b23691629
commit
6ecd71c485
1 changed files with 10 additions and 0 deletions
|
|
@ -588,6 +588,16 @@ namespace spot
|
||||||
return states_;
|
return states_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const trans_vector& transitions() const
|
||||||
|
{
|
||||||
|
return transitions_;
|
||||||
|
}
|
||||||
|
|
||||||
|
trans_vector& transitions()
|
||||||
|
{
|
||||||
|
return transitions_;
|
||||||
|
}
|
||||||
|
|
||||||
void defrag()
|
void defrag()
|
||||||
{
|
{
|
||||||
if (killed_trans_ == 0) // Nothing to do.
|
if (killed_trans_ == 0) // Nothing to do.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue