isweakscc: cleanup interfaces and code
* src/tgbaalgos/isweakscc.cc, src/tgbaalgos/isweakscc.hh: Do not pass automata since they are known from the scc. Avoid several dynamic casts. Try to match the established vocabulary wrt "weak" and "inherently weak". The old is_weak_scc() that used to enumerate cycles is therefore renamed to is_inherently_weak_scc(), while the new is_weak_scc() will should ensure all transitions are fully accepting. * NEWS: Mention the new interface.
This commit is contained in:
parent
450ec22bc3
commit
cb7cd868a5
3 changed files with 116 additions and 99 deletions
13
NEWS
13
NEWS
|
|
@ -56,6 +56,19 @@ New in spot 1.0.2a (not released):
|
||||||
with the favor_event_univ option of ltl_simplifier. As
|
with the favor_event_univ option of ltl_simplifier. As
|
||||||
always please check doc/tl/tl.tex for the list of rules.
|
always please check doc/tl/tl.tex for the list of rules.
|
||||||
|
|
||||||
|
- Several functions have been introduced to check the
|
||||||
|
strength of an SCC.
|
||||||
|
is_inherently_weak_scc()
|
||||||
|
is_weak_scc()
|
||||||
|
is_syntactic_weak_scc()
|
||||||
|
is_complete_scc()
|
||||||
|
is_terminal_scc()
|
||||||
|
is_syntactic_terminal_scc()
|
||||||
|
|
||||||
|
Beware that the costly is_weak_scc() function introduced in Spot
|
||||||
|
1.0, which is based on a cycle enumeration, has been renammed to
|
||||||
|
is_inherently_weak_scc() to match established vocabulary.
|
||||||
|
|
||||||
* Command-line tools:
|
* Command-line tools:
|
||||||
|
|
||||||
- ltl2tgba and ltl2tgta now honor a new --extra-options (or -x)
|
- ltl2tgba and ltl2tgta now honor a new --extra-options (or -x)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// Copyright (C) 2012 Laboratoire de Recherche et Developpement de
|
// Copyright (C) 2012, 2013 Laboratoire de Recherche et Developpement
|
||||||
// l'Epita (LRDE).
|
// de l'Epita (LRDE).
|
||||||
//
|
//
|
||||||
// This file is part of Spot, a model checking library.
|
// This file is part of Spot, a model checking library.
|
||||||
//
|
//
|
||||||
|
|
@ -67,15 +67,11 @@ namespace spot
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
is_weak_scc(scc_map& map, unsigned scc, bool easydetect)
|
is_inherently_weak_scc(scc_map& map, unsigned scc)
|
||||||
{
|
{
|
||||||
// If no cycle is accepting, the SCC is weak.
|
// If no cycle is accepting, the SCC is weak.
|
||||||
if (!map.accepting(scc))
|
if (!map.accepting(scc))
|
||||||
return true;
|
return true;
|
||||||
// If all transitions use all acceptance conditions, the SCC is weak.
|
|
||||||
if (easydetect && map.useful_acc_of(scc) ==
|
|
||||||
bdd_support(map.get_aut()->neg_acceptance_conditions()))
|
|
||||||
return true;
|
|
||||||
// If the SCC is accepting, but one cycle is not, the SCC is not
|
// If the SCC is accepting, but one cycle is not, the SCC is not
|
||||||
// weak.
|
// weak.
|
||||||
weak_checker w(map);
|
weak_checker w(map);
|
||||||
|
|
@ -84,104 +80,106 @@ namespace spot
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
is_syntactic_weak_scc(const spot::tgba *a, scc_map& map, unsigned scc)
|
is_weak_scc(scc_map& map, unsigned scc)
|
||||||
{
|
{
|
||||||
|
// If no cycle is accepting, the SCC is weak.
|
||||||
|
if (!map.accepting(scc))
|
||||||
|
return true;
|
||||||
|
// If all transitions use all acceptance conditions, the SCC is weak.
|
||||||
|
return (map.useful_acc_of(scc)
|
||||||
|
== bdd_support(map.get_aut()->neg_acceptance_conditions()));
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
is_syntactic_weak_scc(scc_map& map, unsigned scc)
|
||||||
|
{
|
||||||
|
const tgba_explicit_formula* aut =
|
||||||
|
dynamic_cast<const tgba_explicit_formula*>(map.get_aut());
|
||||||
|
if (!aut)
|
||||||
|
return false;
|
||||||
|
|
||||||
const std::list<const spot::state*> states = map.states_of(scc);
|
const std::list<const spot::state*> states = map.states_of(scc);
|
||||||
std::list<const spot::state*>::const_iterator it;
|
std::list<const spot::state*>::const_iterator it;
|
||||||
for (it = states.begin(); it != states.end(); it++)
|
for (it = states.begin(); it != states.end(); ++it)
|
||||||
{
|
{
|
||||||
const state_explicit_formula *s =
|
const state_explicit_formula* s =
|
||||||
dynamic_cast<const state_explicit_formula *>(*it);
|
down_cast<const state_explicit_formula*>(*it);
|
||||||
const ltl::formula *f = dynamic_cast<const ltl::formula*>
|
assert(s);
|
||||||
(((const tgba_explicit_formula*) a)->get_label(s));
|
if (aut->get_label(s)->is_syntactic_persistence())
|
||||||
|
|
||||||
if ((f->is_syntactic_obligation() ||
|
|
||||||
f->is_syntactic_persistence() ||
|
|
||||||
f->is_syntactic_safety()))
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
is_syntactic_terminal_scc(const spot::tgba *a, scc_map& map, unsigned scc)
|
is_syntactic_terminal_scc(scc_map& map, unsigned scc)
|
||||||
{
|
{
|
||||||
|
const tgba_explicit_formula* aut =
|
||||||
|
dynamic_cast<const tgba_explicit_formula*>(map.get_aut());
|
||||||
|
if (!aut)
|
||||||
|
return false;
|
||||||
|
|
||||||
const std::list<const spot::state*> states = map.states_of(scc);
|
const std::list<const spot::state*> states = map.states_of(scc);
|
||||||
std::list<const spot::state*>::const_iterator it;
|
std::list<const spot::state*>::const_iterator it;
|
||||||
for (it = states.begin(); it != states.end(); it++)
|
for (it = states.begin(); it != states.end(); ++it)
|
||||||
{
|
{
|
||||||
const state_explicit_formula *s =
|
const state_explicit_formula* s =
|
||||||
dynamic_cast<const state_explicit_formula *>(*it);
|
down_cast<const state_explicit_formula*>(*it);
|
||||||
const ltl::formula *f = dynamic_cast<const ltl::formula*>
|
assert(s);
|
||||||
(((const tgba_explicit_formula*) a)->get_label(s));
|
if (aut->get_label(s)->is_syntactic_guarantee())
|
||||||
|
|
||||||
if (f->is_syntactic_guarantee())
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
is_weak_heuristic(scc_map& map, unsigned scc)
|
is_complete_scc(scc_map& map, unsigned scc)
|
||||||
{
|
|
||||||
if (!map.accepting (scc))
|
|
||||||
return true;
|
|
||||||
if (map.useful_acc_of(scc) ==
|
|
||||||
bdd_support(map.get_aut()->neg_acceptance_conditions()))
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
is_complete_scc(const spot::tgba *a, scc_map& map, unsigned scc)
|
|
||||||
{
|
{
|
||||||
|
const spot::tgba *a = map.get_aut();
|
||||||
const std::list<const spot::state*> states = map.states_of(scc);
|
const std::list<const spot::state*> states = map.states_of(scc);
|
||||||
std::list<const spot::state*>::const_iterator it;
|
std::list<const spot::state*>::const_iterator it;
|
||||||
for (it = states.begin(); it != states.end(); it++)
|
for (it = states.begin(); it != states.end(); ++it)
|
||||||
{
|
{
|
||||||
const state *s = (*it);
|
const state *s = *it;
|
||||||
tgba_succ_iterator* it = a->succ_iter(s);
|
tgba_succ_iterator* it = a->succ_iter(s);
|
||||||
it->first();
|
it->first();
|
||||||
|
|
||||||
// No successors cannot be complete
|
// If a state has no successors, the SCC is not complete.
|
||||||
if (it->done())
|
if (it->done())
|
||||||
{
|
{
|
||||||
delete it;
|
delete it;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sum guards on all outgoing transitions.
|
||||||
bdd sumall = bddfalse;
|
bdd sumall = bddfalse;
|
||||||
while (!it->done())
|
do
|
||||||
{
|
{
|
||||||
const state *next = it->current_state();
|
const state *next = it->current_state();
|
||||||
unsigned sccnum = map.scc_of_state(next);
|
|
||||||
|
|
||||||
// check it's the same scc
|
// check it's the same scc
|
||||||
if (sccnum == scc)
|
if (map.scc_of_state(next) == scc)
|
||||||
sumall |= it->current_condition();
|
sumall |= it->current_condition();
|
||||||
next->destroy();
|
next->destroy();
|
||||||
|
if (sumall == bddtrue)
|
||||||
|
break;
|
||||||
it->next();
|
it->next();
|
||||||
}
|
}
|
||||||
|
while (!it->done());
|
||||||
delete it;
|
delete it;
|
||||||
|
|
||||||
if (sumall != bddtrue)
|
if (sumall != bddtrue)
|
||||||
{
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
is_terminal_heuristic (const tgba *a, scc_map& map, unsigned scc)
|
is_terminal_scc(scc_map& map, unsigned scc)
|
||||||
{
|
{
|
||||||
// If all transitions use all acceptance conditions, the SCC is weak.
|
// If all transitions use all acceptance conditions, the SCC is weak.
|
||||||
if (map.useful_acc_of(scc) ==
|
return ((map.useful_acc_of(scc) ==
|
||||||
bdd_support(map.get_aut()->neg_acceptance_conditions()))
|
bdd_support(map.get_aut()->neg_acceptance_conditions()))
|
||||||
return is_complete_scc(a, map, scc);
|
&& is_complete_scc(map, scc));
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2012 Laboratoire de Recherche et Developpement de
|
// Copyright (C) 2012, 2013 Laboratoire de Recherche et Developpement de
|
||||||
// l'Epita (LRDE).
|
// l'Epita (LRDE).
|
||||||
//
|
//
|
||||||
// This file is part of Spot, a model checking library.
|
// This file is part of Spot, a model checking library.
|
||||||
|
|
@ -26,62 +26,68 @@ namespace spot
|
||||||
/// \addtogroup tgba_misc
|
/// \addtogroup tgba_misc
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
|
/// \brief Whether the SCC number \a scc in \a map is inherently
|
||||||
|
/// weak.
|
||||||
|
///
|
||||||
|
/// An SCC is inherently weak if either its cycles are all
|
||||||
|
/// accepting, or they are all non-accepting.
|
||||||
|
///
|
||||||
|
/// Note the terminal SCCs are also inherently weak with that
|
||||||
|
/// definition.
|
||||||
|
///
|
||||||
|
/// The scc_map \a map should have been built already. The absence
|
||||||
|
/// of accepting cycle is easy to check (the scc_map can tell
|
||||||
|
/// whether the SCC is non-accepting already). Similarly, an SCC in
|
||||||
|
/// which all transitions belong to all acceptance sets is
|
||||||
|
/// necessarily weak.
|
||||||
|
/// For other accepting SCCs, this function enumerates all cycles in
|
||||||
|
/// the given SCC (it stops if it find a non-accepting cycle).
|
||||||
|
bool is_inherently_weak_scc(scc_map& map, unsigned scc);
|
||||||
|
|
||||||
/// \brief Whether the SCC number \a scc in \a map is weak.
|
/// \brief Whether the SCC number \a scc in \a map is weak.
|
||||||
///
|
///
|
||||||
/// An SCC is weak if either its cycles are all accepting, or they
|
/// An SCC is weak if its non-accepting, or if all its transition
|
||||||
/// are all non-accepting.
|
/// are fully accepting (i.e., the belong to all acceptance sets).
|
||||||
///
|
///
|
||||||
/// The scc_map \a map should have been built already. The absence
|
/// Note that terminal SCCs are also weak with that definition.
|
||||||
/// of accepting cycle is easy to check (the scc_map can tell
|
///
|
||||||
/// whether the SCC is non-accepting already). Similarly, an SCC in
|
/// The scc_map \a map should have been built already.
|
||||||
/// which all transitions belong to all acceptance sets is
|
bool is_weak_scc(scc_map& map, unsigned scc);
|
||||||
/// necessarily weak.
|
|
||||||
/// For other accepting SCCs, this function enumerates all cycles in
|
|
||||||
/// the given SCC (it stops if it find a non-accepting cycle).
|
|
||||||
bool is_weak_scc(scc_map& map, unsigned scc, bool easydetect = true);
|
|
||||||
|
|
||||||
/// \brief Whether the SCC number \a scc in \a map is complete
|
/// \brief Whether the SCC number \a scc in \a map is complete.
|
||||||
///
|
///
|
||||||
/// A SCC is complete iff for all states for all label there exist
|
/// An SCC is complete iff for all states and all label there exists
|
||||||
/// a transition that stay into this SCC.
|
/// a transition that stays into this SCC.
|
||||||
bool
|
///
|
||||||
is_complete_scc(const tgba *a, scc_map& map, unsigned scc);
|
/// The scc_map \a map should have been built already.
|
||||||
|
bool is_complete_scc(scc_map& map, unsigned scc);
|
||||||
|
|
||||||
/// \brief Whether the SCC number \a scc in \a map is syntactically weak.
|
/// \brief Whether the SCC number \a scc in \a map is syntactically
|
||||||
|
/// weak.
|
||||||
///
|
///
|
||||||
/// An SCC is syntactically weak iff the lowest label of states inside
|
/// This works only on tgba whose labels are formulas. An SCC is
|
||||||
/// this SCC corresponds to an obligation label
|
/// syntactically weak if one of its states is labeled by a
|
||||||
|
/// syntactic-persistence formula.
|
||||||
///
|
///
|
||||||
/// Work only on tgba where labels are formula
|
/// The scc_map \a map should have been built already.
|
||||||
///
|
bool is_syntactic_weak_scc(scc_map& map, unsigned scc);
|
||||||
/// The scc_map \a map should have been built already. The absence
|
|
||||||
/// of accepting cycle is easy to check (the scc_map can tell
|
|
||||||
/// whether the SCC is non-accepting already). Similarly, an SCC in
|
|
||||||
/// which all transitions belong to all acceptance sets is
|
|
||||||
/// necessarily weak.
|
|
||||||
/// For other accepting SCCs, this function enumerates all cycles in
|
|
||||||
/// the given SCC (it stops if it find a non-accepting cycle).
|
|
||||||
bool is_syntactic_weak_scc(const tgba *a, scc_map& map, unsigned scc);
|
|
||||||
|
|
||||||
/// \brief wether a SCC is syntactically characterized by a gurarantee
|
/// \brief Whether the SCC number \a scc in \a map is syntactically
|
||||||
/// formula
|
/// terminal.
|
||||||
///
|
///
|
||||||
/// Work only on tgba where labels are formula
|
/// This works only on tgba whose labels are formulas. An SCC is
|
||||||
bool is_syntactic_terminal_scc(const tgba *a, scc_map& map, unsigned scc);
|
/// syntactically terminal if one of its states is labeled by a
|
||||||
|
/// syntactic-guarantee formula.
|
||||||
|
///
|
||||||
|
/// The scc_map \a map should have been built already.
|
||||||
|
bool is_syntactic_terminal_scc(scc_map& map, unsigned scc);
|
||||||
|
|
||||||
/// \brief wether a SCC is terminal using an heuristic
|
/// \brief Whether the SCC number \a scc in \a map is terminal.
|
||||||
///
|
///
|
||||||
/// The heuristic try to characterize the SCC by loking if the SCC
|
/// An SCC is terminal if it is weak, complete, and accepting.
|
||||||
/// is complete and all cycle are fully accepting ( all transitions
|
|
||||||
/// have all acceptance conditions)
|
|
||||||
bool
|
|
||||||
is_terminal_heuristic (const tgba *a, scc_map& map, unsigned scc);
|
|
||||||
|
|
||||||
/// \brief wether a SCC is weak using an heuristic
|
|
||||||
///
|
///
|
||||||
/// The heuristic looks if all path are fully accepting
|
/// The scc_map \a map should have been built already.
|
||||||
bool
|
bool is_terminal_scc(scc_map& map, unsigned scc);
|
||||||
is_weak_heuristic(scc_map& map, unsigned scc);
|
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue