merge_edge: clarify documentation
Reported by Florian Renkin. * spot/graph/graph.hh, spot/twa/twagraph.hh (merge_edge): Document that it is expected that state i can only be renamed as j if j≤i.
This commit is contained in:
parent
2072151499
commit
238a9ffc1d
2 changed files with 9 additions and 5 deletions
|
|
@ -695,9 +695,12 @@ namespace spot
|
|||
/// digraph::defrag_state() that additionally deals with universal
|
||||
/// branching.
|
||||
///
|
||||
/// \param newst A vector indicating how each state should be renumbered.
|
||||
/// Use -1U to erase a state.
|
||||
/// \param used_states the number of states used (after renumbering)
|
||||
/// \param newst A vector indicating how each state should be
|
||||
/// renumbered. Use -1U to erase a state. Ignoring the
|
||||
/// occurrences of -1U, the renumbering is expected to
|
||||
/// satisfy newst[i] ≤ i for all i.
|
||||
/// \param used_states the number of states used
|
||||
/// (after renumbering)
|
||||
void defrag_states(std::vector<unsigned>&& newst, unsigned used_states);
|
||||
|
||||
/// \brief Print the data structures used to represent the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue