* src/tgbaalgos/neverclaim.hh (never_claim_reachable): Document

arguments.
* src/tgbaalgos/neverclaim.cc (never_claim_bfs::state_is_accepting):
New method.
(never_claim_bfs::get_state_label, never_claim_bfs::process_state):
Use it.
This commit is contained in:
Alexandre Duret-Lutz 2004-04-21 20:08:36 +00:00
parent 231a77a05f
commit 2f84bee41c
3 changed files with 38 additions and 11 deletions

View file

@ -29,7 +29,14 @@
namespace spot
{
/// \brief Print reachable states in Spin never claim format.
std::ostream& never_claim_reachable(std::ostream& os, const tgba_tba_proxy* g, const ltl::formula* f=0);
///
/// \param os The output stream to print on.
/// \param g The degeneralized automaton to output.
/// \param f The (optional) formula associated to the automaton. If given
/// it will be output as a comment.
std::ostream& never_claim_reachable(std::ostream& os,
const tgba_tba_proxy* g,
const ltl::formula* f = 0);
}
#endif // SPOT_TGBAALGOS_NEVERCLAIM_HH