improve support for LTLf semantics

* spot/twaalgos/remprop.cc, spot/twaalgos/remprop.hh (to_finite): New
function.
* bin/autfilt.cc (--to-finite): Add it.
* doc/org/tut12.org: Update to use it.
* spot/twa/twagraph.cc (purge_dead_states): Also remove false edges.
* spot/parseaut/parseaut.yy: Do not ignore false self-loops, and
add false self-loop on accepting states without successors.
* NEWS: List the above changes.
* tests/core/ltlf.test: New file.
* tests/Makefile.am: Add it.
* tests/core/complete.test: Adjust expected output.
This commit is contained in:
Alexandre Duret-Lutz 2022-02-07 14:44:04 +01:00
parent 9b0a20412b
commit a3753e608b
10 changed files with 416 additions and 83 deletions

View file

@ -1,5 +1,5 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2015-2019 Laboratoire de Recherche et Développement
// Copyright (C) 2015-2019, 2022 Laboratoire de Recherche et Développement
// de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
@ -174,4 +174,74 @@ namespace spot
});
return res;
}
twa_graph_ptr to_finite(const_twa_graph_ptr aut, const char* alive)
{
twa_graph_ptr res =
make_twa_graph(aut,
{ false, false, true, false, false, false });
bdd rem = bddtrue;
bdd neg = bddfalse;
int v = res->get_dict()->
has_registered_proposition(spot::formula::ap(alive), aut);
if (v >= 0)
{
rem = bdd_ithvar(v);
neg = bdd_nithvar(v);
res->unregister_ap(v);
}
unsigned ns = res->num_states();
std::vector<bool> isacc(ns, false);
for (unsigned s = 0; s < ns; ++s)
{
for (auto& e: res->out(s))
if (bdd_implies(e.cond, neg))
{
isacc[e.src] = true;
e.cond = bddfalse;
}
else
{
e.cond = bdd_exist(e.cond, rem);
}
}
res->set_buchi();
res->prop_state_acc(true);
// Purge dead states will remove all states accessible via edges
// marked as "bddfalse" above, along with those edges.
auto old = new std::vector<unsigned>(ns);
std::iota(old->begin(), old->end(), 0);
res->set_named_prop("original-states", old);
res->purge_dead_states();
ns = res->num_states();
for (unsigned s = 0; s < ns; ++s)
{
if (isacc[(*old)[s]])
{
acc_cond::mark_t m = {0};
bool done = false;
for (auto& e: res->out(s))
{
e.acc = m;
done = true;
}
if (!done)
res->new_edge(s, s, bddfalse, m);
}
else
{
acc_cond::mark_t m = {};
for (auto& e: res->out(s))
e.acc = m;
}
}
return res;
}
}

View file

@ -1,5 +1,5 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2015 Laboratoire de Recherche et Développement de
// Copyright (C) 2015, 2022 Laboratoire de Recherche et Développement de
// l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
@ -40,4 +40,19 @@ namespace spot
twa_graph_ptr strip(const_twa_graph_ptr aut) const;
};
/// \brief Interpret the "live" part of an automaton as finite automaton.
///
/// This functions assumes that there is a property "alive" is
/// that either true or false on all transitions, and that can only
/// switch from true to false.
///
/// Because Spot does not support finite automata, this creates a
/// state-based Büchi automaton where any states with a !alive
/// outgoing transition in the original automaton is accepting, and
/// all alive/!alive occurrences are removed.
SPOT_API twa_graph_ptr
to_finite(const_twa_graph_ptr aut, const char* alive = "alive");
}