* src/tgbaalgos/emptinesscheck.hh
(counter_example::connected_component_set::has_state): Return a const state* and behave like h_filt. * src/tgbaalgos/emptinesscheck.cc: Adjust.
This commit is contained in:
parent
b85e930232
commit
1ea3c2ce5a
3 changed files with 47 additions and 27 deletions
|
|
@ -183,8 +183,12 @@ namespace spot
|
|||
/// component
|
||||
set_type states;
|
||||
|
||||
/// Check if the SCC contains states \a s.
|
||||
bool has_state(const state* s) const;
|
||||
/// \brief Check if the SCC contains states \a s.
|
||||
///
|
||||
/// Return the representative of \a s in the SCC, and delete \a
|
||||
/// s if it is different (acting like
|
||||
/// emptiness_check_status::h_filt), or 0 otherwise.
|
||||
const state* has_state(const state* s) const;
|
||||
};
|
||||
|
||||
/// Called by counter_example to find a path which traverses all
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue