Fixes #403. * spot/twaalgos/cleanacc.cc (simplify_complementary_marks_here): Assume that two colors are complementary in a broad sense, i.e., on is present if (but not only if) the other is missing before applying those rewritings. Technically, this is usually not necessary, because the changes done in #418 will cause such "covering-the-full-automaton" pair of colors to be disjoint so complementary in a strict sense. It might make a difference (this is not tested) in presence of reused colors which #418 cannot remove. In any case, it's simply less code to implement the broad sense. * tests/python/toparity.py: Add test case from #403, which is reduced to two states with recent optimizations.
672 lines
24 KiB
C++
672 lines
24 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2015, 2017-2020 Laboratoire de Recherche et Développement
|
|
// de l'Epita.
|
|
//
|
|
// This file is part of Spot, a model checking library.
|
|
//
|
|
// Spot is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
// License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "config.h"
|
|
#include <spot/twaalgos/cleanacc.hh>
|
|
|
|
namespace spot
|
|
{
|
|
twa_graph_ptr cleanup_acceptance_here(twa_graph_ptr aut, bool strip)
|
|
{
|
|
auto& acc = aut->acc();
|
|
if (acc.num_sets() == 0)
|
|
return aut;
|
|
|
|
auto c = aut->get_acceptance();
|
|
acc_cond::mark_t used_in_cond = c.used_sets();
|
|
|
|
acc_cond::mark_t used_in_aut = {};
|
|
acc_cond::mark_t used_on_all_edges = used_in_cond;
|
|
for (auto& t: aut->edges())
|
|
{
|
|
used_in_aut |= t.acc;
|
|
used_on_all_edges &= t.acc;
|
|
}
|
|
|
|
auto useful = used_in_aut & used_in_cond;
|
|
auto useless = strip ? acc.comp(useful) : (used_in_cond - used_in_aut);
|
|
|
|
useless |= used_on_all_edges;
|
|
|
|
if (!useless)
|
|
return aut;
|
|
|
|
// Remove useless marks from the automaton
|
|
if (strip)
|
|
for (auto& t: aut->edges())
|
|
t.acc = t.acc.strip(useless);
|
|
|
|
// if x appears on all edges, then
|
|
// Fin(x) = false and Inf(x) = true
|
|
if (used_on_all_edges)
|
|
c = c.remove(used_on_all_edges, false);
|
|
|
|
// Remove useless marks from the acceptance condition
|
|
if (strip)
|
|
aut->set_acceptance(useful.count(), c.strip(useless, true));
|
|
else
|
|
aut->set_acceptance(aut->num_sets(), c.remove(useless, true));
|
|
|
|
// This may in turn cause even more set to be unused, because of
|
|
// some simplifications in the acceptance condition, so do it again.
|
|
return cleanup_acceptance_here(aut, strip);
|
|
}
|
|
|
|
twa_graph_ptr cleanup_acceptance(const_twa_graph_ptr aut, bool strip)
|
|
{
|
|
return cleanup_acceptance_here(make_twa_graph(aut, twa::prop_set::all()),
|
|
strip);
|
|
}
|
|
|
|
namespace
|
|
{
|
|
// Remove complementary marks from the acceptance condition.
|
|
acc_cond::acc_code remove_compl_rec(const acc_cond::acc_word* pos,
|
|
const std::vector<acc_cond::mark_t>&
|
|
complement)
|
|
{
|
|
auto start = pos - pos->sub.size;
|
|
auto boolop =
|
|
[&](acc_cond::acc_op opand, acc_cond::acc_op opfin,
|
|
acc_cond::acc_op opinf,
|
|
acc_cond::acc_code&& truecode,
|
|
acc_cond::acc_code&& falsecode)
|
|
{
|
|
--pos;
|
|
acc_cond::acc_code res = truecode;
|
|
acc_cond::mark_t seen_fin = {};
|
|
do
|
|
{
|
|
auto tmp = remove_compl_rec(pos, complement);
|
|
|
|
if (!tmp.empty() && (tmp.back().sub.op == opfin
|
|
&& tmp.front().mark.is_singleton()))
|
|
seen_fin |= tmp.front().mark;
|
|
|
|
if (opand == acc_cond::acc_op::And)
|
|
tmp &= std::move(res);
|
|
else
|
|
tmp |= std::move(res);
|
|
std::swap(tmp, res);
|
|
pos -= pos->sub.size + 1;
|
|
}
|
|
while (pos > start);
|
|
if (res.empty() || res.back().sub.op != opand)
|
|
return res;
|
|
// Locate the position of any Inf element.
|
|
// A property of the &= operator is that there
|
|
// is only one Inf in a conjunction.
|
|
auto rbegin = &res.back();
|
|
auto rend = rbegin - rbegin->sub.size;
|
|
--rbegin;
|
|
do
|
|
{
|
|
if (rbegin->sub.op == opinf)
|
|
break;
|
|
rbegin -= rbegin->sub.size + 1;
|
|
}
|
|
while (rbegin > rend);
|
|
if (rbegin <= rend)
|
|
return res;
|
|
// Fin(i) & Inf(i) = f; (also done by unit-fin)
|
|
if (rbegin[-1].mark & seen_fin)
|
|
return std::move(falsecode);
|
|
for (auto m: seen_fin.sets())
|
|
{
|
|
acc_cond::mark_t cm = complement[m];
|
|
// Fin(i) & Fin(!i) = f;
|
|
if (cm & seen_fin)
|
|
return std::move(falsecode);
|
|
// Inf({!i}) & Fin({i}) = Fin({i})
|
|
rbegin[-1].mark -= complement[m];
|
|
}
|
|
if (rbegin[-1].mark)
|
|
return res;
|
|
// Inf(i) has been rewritten as t, we need to remove it. Sigh!
|
|
acc_cond::acc_code res2 = std::move(truecode);
|
|
rbegin = &res.back() - 1;
|
|
do
|
|
{
|
|
acc_cond::acc_code tmp(rbegin);
|
|
if (opand == acc_cond::acc_op::And)
|
|
tmp &= std::move(res);
|
|
else
|
|
tmp |= std::move(res);
|
|
std::swap(tmp, res2);
|
|
rbegin -= rbegin->sub.size + 1;
|
|
}
|
|
while (rbegin > rend);
|
|
return res2;
|
|
};
|
|
|
|
switch (pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::And:
|
|
return boolop(acc_cond::acc_op::And,
|
|
acc_cond::acc_op::Fin,
|
|
acc_cond::acc_op::Inf,
|
|
acc_cond::acc_code::t(),
|
|
acc_cond::acc_code::f());
|
|
case acc_cond::acc_op::Or:
|
|
return boolop(acc_cond::acc_op::Or,
|
|
acc_cond::acc_op::Inf,
|
|
acc_cond::acc_op::Fin,
|
|
acc_cond::acc_code::f(),
|
|
acc_cond::acc_code::t());
|
|
case acc_cond::acc_op::Fin:
|
|
return acc_cond::acc_code::fin(pos[-1].mark);
|
|
case acc_cond::acc_op::Inf:
|
|
return acc_cond::acc_code::inf(pos[-1].mark);
|
|
case acc_cond::acc_op::FinNeg:
|
|
case acc_cond::acc_op::InfNeg:
|
|
SPOT_UNREACHABLE();
|
|
};
|
|
SPOT_UNREACHABLE();
|
|
return {};
|
|
}
|
|
|
|
// Always cleanup_acceptance_here with stripping after calling this function
|
|
// As complementary marks might be simplified in the acceptance condition.
|
|
twa_graph_ptr simplify_complementary_marks_here(twa_graph_ptr aut)
|
|
{
|
|
auto& acc = aut->acc();
|
|
auto c = acc.get_acceptance();
|
|
acc_cond::mark_t used_in_cond = c.used_sets();
|
|
if (!used_in_cond)
|
|
return aut;
|
|
|
|
// complement[i] holds sets that appear when set #i does not.
|
|
// (This is not a strict complement, i.e., the sets in
|
|
// complement[i] are allowed to occur at the same time as i.)
|
|
unsigned num_sets = acc.num_sets();
|
|
std::vector<acc_cond::mark_t> complement(num_sets);
|
|
|
|
for (unsigned i = 0; i < num_sets; ++i)
|
|
if (used_in_cond.has(i))
|
|
complement[i] = used_in_cond - acc_cond::mark_t({i});
|
|
|
|
// Let's visit all edges to update complement[i]. To skip some
|
|
// duplicated work, prev_acc remember the "acc" sets of the
|
|
// previous edge, so we can skip consecutive edges with
|
|
// identical "acc" sets. Note that there is no value of
|
|
// prev_acc that would allow us to fail the comparison on the
|
|
// first edge (this was issue #315), so we have to deal with
|
|
// that first edge specifically.
|
|
acc_cond::mark_t prev_acc = {};
|
|
const auto& edges = aut->edges();
|
|
auto b = edges.begin();
|
|
auto e = edges.end();
|
|
auto update = [&](acc_cond::mark_t tacc)
|
|
{
|
|
prev_acc = tacc;
|
|
for (unsigned m: used_in_cond.sets())
|
|
if (!tacc.has(m))
|
|
complement[m] &= tacc;
|
|
};
|
|
if (b != e)
|
|
{
|
|
update(b->acc);
|
|
++b;
|
|
while (b != e)
|
|
{
|
|
if (b->acc != prev_acc)
|
|
update(b->acc);
|
|
++b;
|
|
}
|
|
}
|
|
aut->set_acceptance(num_sets,
|
|
remove_compl_rec(&acc.get_acceptance().back(),
|
|
complement));
|
|
return aut;
|
|
}
|
|
|
|
|
|
acc_cond::acc_code acc_rewrite_rec(const acc_cond::acc_word* pos)
|
|
{
|
|
auto start = pos - pos->sub.size;
|
|
switch (pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::And:
|
|
{
|
|
--pos;
|
|
auto res = acc_cond::acc_code::t();
|
|
do
|
|
{
|
|
auto tmp = acc_rewrite_rec(pos);
|
|
tmp &= std::move(res);
|
|
std::swap(tmp, res);
|
|
pos -= pos->sub.size + 1;
|
|
}
|
|
while (pos > start);
|
|
return res;
|
|
}
|
|
case acc_cond::acc_op::Or:
|
|
{
|
|
--pos;
|
|
auto res = acc_cond::acc_code::f();
|
|
do
|
|
{
|
|
auto tmp = acc_rewrite_rec(pos);
|
|
tmp |= std::move(res);
|
|
std::swap(tmp, res);
|
|
pos -= pos->sub.size + 1;
|
|
}
|
|
while (pos > start);
|
|
return res;
|
|
}
|
|
case acc_cond::acc_op::Fin:
|
|
return acc_cond::acc_code::fin(pos[-1].mark);
|
|
case acc_cond::acc_op::Inf:
|
|
return acc_cond::acc_code::inf(pos[-1].mark);
|
|
case acc_cond::acc_op::FinNeg:
|
|
case acc_cond::acc_op::InfNeg:
|
|
SPOT_UNREACHABLE();
|
|
};
|
|
SPOT_UNREACHABLE();
|
|
return {};
|
|
}
|
|
|
|
acc_cond::mark_t find_interm_rec(const acc_cond::acc_word* pos)
|
|
{
|
|
acc_cond::acc_op wanted;
|
|
auto topop = pos->sub.op;
|
|
if (topop == acc_cond::acc_op::Or)
|
|
{
|
|
wanted = acc_cond::acc_op::Fin;
|
|
}
|
|
else
|
|
{
|
|
wanted = acc_cond::acc_op::Inf;
|
|
assert(topop == acc_cond::acc_op::And);
|
|
}
|
|
acc_cond::mark_t res = {};
|
|
const acc_cond::acc_word* rend = pos - (pos->sub.size + 1);
|
|
--pos;
|
|
do
|
|
switch (auto op = pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::Inf:
|
|
case acc_cond::acc_op::Fin:
|
|
case acc_cond::acc_op::InfNeg:
|
|
case acc_cond::acc_op::FinNeg:
|
|
{
|
|
auto m = pos[-1].mark;
|
|
if (op == wanted)
|
|
{
|
|
res |= m;
|
|
}
|
|
else
|
|
{
|
|
return {};
|
|
}
|
|
pos -= 2;
|
|
break;
|
|
}
|
|
case acc_cond::acc_op::And:
|
|
case acc_cond::acc_op::Or:
|
|
if (op == topop)
|
|
{
|
|
if (auto m = find_interm_rec(pos))
|
|
res |= m;
|
|
else
|
|
return {};
|
|
pos -= pos->sub.size + 1;
|
|
}
|
|
else
|
|
{
|
|
auto posend = pos - (pos->sub.size + 1);
|
|
--pos;
|
|
bool seen = false;
|
|
do
|
|
{
|
|
switch (auto op = pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::Inf:
|
|
case acc_cond::acc_op::Fin:
|
|
case acc_cond::acc_op::InfNeg:
|
|
case acc_cond::acc_op::FinNeg:
|
|
if (op == wanted)
|
|
{
|
|
auto m = pos[-1].mark;
|
|
if (!seen)
|
|
{
|
|
seen = true;
|
|
res |= m;
|
|
}
|
|
else
|
|
{
|
|
return {};
|
|
}
|
|
}
|
|
pos -= 2;
|
|
break;
|
|
case acc_cond::acc_op::And:
|
|
case acc_cond::acc_op::Or:
|
|
return {};
|
|
}
|
|
}
|
|
while (pos > posend);
|
|
}
|
|
break;
|
|
}
|
|
while (pos > rend);
|
|
return res;
|
|
}
|
|
|
|
// Replace Inf(i)|Inf(j) by Inf(k)
|
|
// or Fin(i)&Fin(j) by Fin(k)
|
|
// For this to work, k must be one of i or j,
|
|
// k must be used only once in the acceptance
|
|
// the transitions have to be updated: every transition marked
|
|
// by i or j should be marked by k.
|
|
void fuse_marks_here(twa_graph_ptr aut)
|
|
{
|
|
acc_cond::acc_code acccopy = aut->get_acceptance();
|
|
acc_cond::mark_t once = acccopy.used_once_sets();
|
|
if (!once)
|
|
return;
|
|
|
|
acc_cond::acc_word* pos = &acccopy.back();
|
|
const acc_cond::acc_word* front = &acccopy.front();
|
|
|
|
// a list of pairs ({i}, {j, k, l, ...}) where i is a set
|
|
// occurring once that can be removed if all transitions in set
|
|
// i are added to sets j,k,l, ...
|
|
std::vector<std::pair<acc_cond::mark_t, acc_cond::mark_t>> to_fuse;
|
|
|
|
auto find_fusable = [&](acc_cond::acc_word* pos)
|
|
{
|
|
acc_cond::acc_op wanted;
|
|
auto topop = pos->sub.op;
|
|
if (topop == acc_cond::acc_op::And)
|
|
{
|
|
wanted = acc_cond::acc_op::Fin;
|
|
}
|
|
else
|
|
{
|
|
wanted = acc_cond::acc_op::Inf;
|
|
assert(topop == acc_cond::acc_op::Or);
|
|
}
|
|
|
|
// Build a vector of "singleton-sets" of
|
|
// the wanted type in the operand of the
|
|
// pointed Or/And operator. For instance,
|
|
// assuming wanted=Inf and pos points to
|
|
//
|
|
// Inf({1})|Inf({2,3})|Fin({4})
|
|
// |Inf({5})|Inf({5,6})
|
|
//
|
|
// This returns [({1}, Inf({1})),
|
|
// ({5}, Inf({5}))]].
|
|
std::vector<std::pair<acc_cond::mark_t,
|
|
acc_cond::acc_word*>>
|
|
singletons;
|
|
const acc_cond::acc_word* rend =
|
|
pos - (pos->sub.size + 1);
|
|
--pos;
|
|
do
|
|
{
|
|
switch (auto op = pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::InfNeg:
|
|
case acc_cond::acc_op::FinNeg:
|
|
case acc_cond::acc_op::Inf:
|
|
case acc_cond::acc_op::Fin:
|
|
{
|
|
if (op == wanted)
|
|
singletons.emplace_back(pos[-1].mark,
|
|
pos);
|
|
pos -= 2;
|
|
}
|
|
break;
|
|
case acc_cond::acc_op::And:
|
|
case acc_cond::acc_op::Or:
|
|
// On Fin(a)&(Fin(b)&Inf(c)|Fin(d))
|
|
// we'd like to build [({a},...),
|
|
// ({b,d},...)] and decide later that
|
|
// {b,d} can receive {a} if they
|
|
// (b and d) are both used once.
|
|
if (auto m = find_interm_rec(pos))
|
|
singletons.emplace_back(m, pos);
|
|
pos -= pos->sub.size + 1;
|
|
break;
|
|
}
|
|
}
|
|
while (pos > rend);
|
|
|
|
// sort the singletons vector: we want
|
|
// those that are not really singleton to
|
|
// be first to they can become recipient
|
|
std::partition(singletons.begin(), singletons.end(),
|
|
[&] (auto s)
|
|
{ return !s.first.is_singleton(); });
|
|
|
|
acc_cond::mark_t can_receive = {};
|
|
for (auto p: singletons)
|
|
if ((p.first & once) == p.first)
|
|
{
|
|
can_receive = p.first;
|
|
break;
|
|
}
|
|
if (!can_receive)
|
|
return;
|
|
for (auto p: singletons)
|
|
if (p.first != can_receive
|
|
&& p.first.is_singleton())
|
|
{
|
|
// Mark fused singletons as false,
|
|
// so that a future call to
|
|
// find_fusable() ignores them.
|
|
if (p.second->sub.op == acc_cond::acc_op::Fin)
|
|
p.second->sub.op = acc_cond::acc_op::Inf;
|
|
else if (p.second->sub.op ==
|
|
acc_cond::acc_op::Inf)
|
|
p.second->sub.op = acc_cond::acc_op::Fin;
|
|
else
|
|
continue;
|
|
p.second[-1].mark = {};
|
|
to_fuse.emplace_back(p.first, can_receive);
|
|
}
|
|
};
|
|
|
|
do
|
|
{
|
|
switch (pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::And:
|
|
case acc_cond::acc_op::Or:
|
|
find_fusable(pos);
|
|
// Don't skip to entire operands, as we might find
|
|
// fusable sub-parts.
|
|
--pos;
|
|
break;
|
|
case acc_cond::acc_op::Inf:
|
|
case acc_cond::acc_op::InfNeg:
|
|
case acc_cond::acc_op::FinNeg:
|
|
case acc_cond::acc_op::Fin:
|
|
pos -= 2;
|
|
break;
|
|
}
|
|
}
|
|
while (pos >= front);
|
|
|
|
if (to_fuse.empty())
|
|
return;
|
|
|
|
// Update the transition according to to_fuse.
|
|
for (auto pair: to_fuse)
|
|
if (pair.first & once) // can we remove pair.first?
|
|
{
|
|
assert(pair.first.is_singleton());
|
|
for (auto& e: aut->edges())
|
|
if (e.acc & pair.first)
|
|
e.acc = (e.acc - pair.first) | pair.second;
|
|
}
|
|
else
|
|
{
|
|
for (auto& e: aut->edges())
|
|
if (e.acc & pair.first)
|
|
e.acc |= pair.second;
|
|
}
|
|
|
|
// Now rewrite the acceptance condition, removing all the "to_kill" terms.
|
|
aut->set_acceptance(aut->num_sets(), acc_rewrite_rec(&acccopy.back()));
|
|
}
|
|
|
|
// If X always occurs when Y is present, Inf({X,Y}) can be
|
|
// replaced by Inf({Y}).
|
|
//
|
|
// If X and Y always occur together, then Inf({X}) and Inf({Y})
|
|
// can be used interchangeably, so we only keep the smallest one.
|
|
static twa_graph_ptr simplify_included_marks_here(twa_graph_ptr aut)
|
|
{
|
|
// Compute included_by[i], the set of colors always included
|
|
unsigned ns = aut->num_sets();
|
|
if (ns <= 1)
|
|
return aut;
|
|
auto& c = aut->acc().get_acceptance();
|
|
acc_cond::mark_t used_in_cond = c.used_sets();
|
|
if (!used_in_cond.has_many())
|
|
return aut;
|
|
|
|
std::vector<acc_cond::mark_t> always_with(ns, used_in_cond);
|
|
acc_cond::mark_t previous_a{};
|
|
|
|
for (auto& e: aut->edges())
|
|
{
|
|
// Just avoit the e.acc.sets() loops on marks that we have
|
|
// just seen.
|
|
if (e.acc == previous_a)
|
|
continue;
|
|
previous_a = e.acc;
|
|
for (auto c : e.acc.sets())
|
|
always_with[c] &= e.acc;
|
|
}
|
|
|
|
// For each color n, find the smallest color m that is always used
|
|
// with n. If m != n, record that n must be removed (and replaced
|
|
// by always_together[m]).
|
|
std::vector<acc_cond::mark_t> always_together(ns);
|
|
acc_cond::mark_t to_remove{};
|
|
for (unsigned n = ns - 1; n > 0; --n)
|
|
{
|
|
if (!used_in_cond.has(n))
|
|
continue;
|
|
always_together[n].set(n);
|
|
for (unsigned m = 0; m < n; ++m)
|
|
if (used_in_cond.has(m) && always_with[n] == always_with[m])
|
|
{
|
|
always_together[n] = {m};
|
|
to_remove.set(n);
|
|
break;
|
|
}
|
|
}
|
|
always_together[0].set(0);
|
|
|
|
for (unsigned n = 0; n < ns; ++n)
|
|
always_with[n].clear(n);
|
|
|
|
// Replace the marks in the acceptance condition
|
|
// We replace each color X in to_remove by always_together[X],
|
|
// and remove always_with[Y] for each Y in Inf or Fin.
|
|
auto pos = &c.back();
|
|
auto end = &c.front();
|
|
while (pos > end)
|
|
{
|
|
switch (pos->sub.op)
|
|
{
|
|
case acc_cond::acc_op::And:
|
|
case acc_cond::acc_op::Or:
|
|
--pos;
|
|
break;
|
|
case acc_cond::acc_op::Fin:
|
|
case acc_cond::acc_op::Inf:
|
|
case acc_cond::acc_op::FinNeg:
|
|
case acc_cond::acc_op::InfNeg:
|
|
{
|
|
acc_cond::mark_t colors = pos[-1].mark;
|
|
acc_cond::mark_t replace = colors & to_remove;
|
|
colors -= replace;
|
|
for (unsigned m: replace.sets())
|
|
colors |= always_together[m];
|
|
for (unsigned m: colors.sets())
|
|
colors -= always_with[m];
|
|
pos[-1].mark = colors;
|
|
pos -= 2;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return aut;
|
|
}
|
|
|
|
|
|
// If any subformula of the acceptance condition looks like
|
|
// (Inf(y₁)&Inf(y₂)&...&Inf(yₙ)) | f(x₁,...,xₙ)
|
|
// then for each transition with all colors {y₁,y₂,...,yₙ} we
|
|
// can remove all the xᵢ that are used only once in the formula.
|
|
//
|
|
// See also issue #418.
|
|
static bool
|
|
remove_useless_colors_from_edges_here(twa_graph_ptr aut)
|
|
{
|
|
// [({y₁,y₂,...,yₙ},{x₁,x₂,...,xₙ}),...]
|
|
auto patterns = aut->get_acceptance().useless_colors_patterns();
|
|
if (patterns.empty())
|
|
return false;
|
|
|
|
bool changed = false;
|
|
for (auto& e: aut->edges())
|
|
for (auto& p: patterns)
|
|
if (p.first.subset(e.acc))
|
|
if (auto nacc = e.acc - p.second; nacc != e.acc)
|
|
{
|
|
e.acc = nacc;
|
|
changed = true;
|
|
}
|
|
return changed;
|
|
}
|
|
}
|
|
|
|
|
|
twa_graph_ptr simplify_acceptance_here(twa_graph_ptr aut)
|
|
{
|
|
for (;;)
|
|
{
|
|
cleanup_acceptance_here(aut, false);
|
|
simplify_included_marks_here(aut);
|
|
if (aut->acc().is_generalized_buchi())
|
|
break;
|
|
acc_cond::acc_code old = aut->get_acceptance();
|
|
aut->set_acceptance(aut->acc().unit_propagation());
|
|
simplify_complementary_marks_here(aut);
|
|
fuse_marks_here(aut);
|
|
bool changed = remove_useless_colors_from_edges_here(aut);
|
|
if (!changed && old == aut->get_acceptance())
|
|
break;
|
|
}
|
|
cleanup_acceptance_here(aut, true);
|
|
return aut;
|
|
}
|
|
|
|
twa_graph_ptr simplify_acceptance(const_twa_graph_ptr aut)
|
|
{
|
|
return simplify_acceptance_here(make_twa_graph(aut, twa::prop_set::all()));
|
|
}
|
|
}
|