* bin/README, bin/common_conv.hh, bin/common_trans.cc,
bin/ltlsynt.cc, bin/spot-x.cc, spot/gen/automata.hh,
spot/graph/graph.hh, spot/ltsmin/ltsmin.hh,
spot/ltsmin/spins_interface.hh, spot/ltsmin/spins_kripke.hh,
spot/mc/bloemen.hh, spot/mc/bloemen_ec.hh, spot/mc/cndfs.hh,
spot/mc/deadlock.hh, spot/mc/intersect.hh, spot/mc/lpar13.hh,
spot/mc/mc_instanciator.hh, spot/misc/bareword.cc,
spot/misc/fixpool.hh, spot/misc/formater.hh, spot/misc/minato.hh,
spot/misc/satsolver.hh, spot/misc/timer.hh,
spot/parseaut/public.hh, spot/priv/partitioned_relabel.cc,
spot/priv/satcommon.hh, spot/ta/ta.hh, spot/ta/taexplicit.cc,
spot/ta/taproduct.hh, spot/ta/tgta.hh, spot/taalgos/reachiter.hh,
spot/taalgos/tgba2ta.hh, spot/tl/apcollect.cc,
spot/tl/apcollect.hh, spot/tl/formula.cc, spot/tl/parse.hh,
spot/tl/randomltl.hh, spot/tl/relabel.hh, spot/tl/simplify.cc,
spot/twa/acc.hh, spot/twa/bddprint.hh, spot/twa/formula2bdd.cc,
spot/twa/twa.hh, spot/twa/twagraph.cc, spot/twa/twagraph.hh,
spot/twaalgos/aiger.cc, spot/twaalgos/aiger.hh,
spot/twaalgos/alternation.hh, spot/twaalgos/cleanacc.cc,
spot/twaalgos/cobuchi.cc, spot/twaalgos/contains.cc,
spot/twaalgos/couvreurnew.cc, spot/twaalgos/cycles.hh,
spot/twaalgos/degen.cc, spot/twaalgos/degen.hh,
spot/twaalgos/dot.hh, spot/twaalgos/dtbasat.cc,
spot/twaalgos/dtwasat.cc, spot/twaalgos/dtwasat.hh,
spot/twaalgos/dualize.cc, spot/twaalgos/emptiness.hh,
spot/twaalgos/emptiness_stats.hh, spot/twaalgos/game.cc,
spot/twaalgos/genem.hh, spot/twaalgos/hoa.hh,
spot/twaalgos/langmap.hh, spot/twaalgos/ltl2tgba_fm.hh,
spot/twaalgos/magic.cc, spot/twaalgos/magic.hh,
spot/twaalgos/mask.hh, spot/twaalgos/mealy_machine.cc,
spot/twaalgos/mealy_machine.hh,
spot/twaalgos/minimize.hh, spot/twaalgos/parity.cc,
spot/twaalgos/parity.hh, spot/twaalgos/postproc.cc,
spot/twaalgos/product.hh, spot/twaalgos/reachiter.hh,
spot/twaalgos/relabel.cc, spot/twaalgos/remfin.cc,
spot/twaalgos/remfin.hh, spot/twaalgos/sccfilter.cc,
spot/twaalgos/sccinfo.hh, spot/twaalgos/se05.cc,
spot/twaalgos/se05.hh, spot/twaalgos/simulation.hh,
spot/twaalgos/split.hh, spot/twaalgos/stats.hh,
spot/twaalgos/synthesis.cc, spot/twaalgos/synthesis.hh,
spot/twaalgos/tau03.hh, spot/twaalgos/tau03opt.hh,
spot/twaalgos/toparity.hh, spot/twaalgos/totgba.hh,
spot/twaalgos/translate.hh, spot/twaalgos/word.cc,
spot/twaalgos/word.hh, spot/twaalgos/zlktree.cc,
spot/twaalgos/zlktree.hh, spot/twacube/cube.hh,
spot/twacube/twacube.hh, tests/core/cube.cc,
tests/core/ltlsynt.test, tests/core/parity.cc,
tests/core/safra.cc, tests/core/twagraph.cc: here
146 lines
No EOL
4.6 KiB
C++
146 lines
No EOL
4.6 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) by the Spot authors, see the AUTHORS file for details. (LRE).
|
|
//
|
|
// 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/priv/partitioned_relabel.hh>
|
|
|
|
|
|
relabeling_map
|
|
bdd_partition::to_relabeling_map(twa_graph& for_me) const
|
|
{
|
|
relabeling_map res;
|
|
// Change to unordered_map?
|
|
bdd_dict_ptr bdddict = for_me.get_dict();
|
|
|
|
bool use_inner = ig->state_storage(0).new_label != bddfalse;
|
|
std::vector<bool> doskip
|
|
= use_inner ? std::vector<bool>(ig->num_states(), false)
|
|
: std::vector<bool>();
|
|
|
|
auto bdd2form = [&bdddict](const bdd& cond)
|
|
{
|
|
return bdd_to_formula(cond, bdddict);
|
|
};
|
|
|
|
for (const auto& [old_letter, s] : treated)
|
|
{
|
|
formula new_letter_form = bdd2form(ig->state_storage(s).new_label);
|
|
assert(res.count(new_letter_form) == 0);
|
|
if (use_inner)
|
|
doskip[s] = true;
|
|
res[new_letter_form] = bdd2form(old_letter);
|
|
}
|
|
|
|
if (use_inner)
|
|
{
|
|
// This implies that the split option was false,
|
|
// so we can store further info
|
|
auto& all_cond = *all_cond_ptr;
|
|
const unsigned Norig = all_cond.size();
|
|
|
|
for (unsigned i = 0; i < Norig; ++i)
|
|
{
|
|
// Internal node -> new ?
|
|
if (doskip[i])
|
|
continue;
|
|
// Leave node -> already exists
|
|
if (ig->state_storage(i).succ == 0)
|
|
continue;
|
|
doskip[i] = true;
|
|
formula new_letter_form
|
|
= bdd2form(ig->state_storage(i).new_label);
|
|
#ifdef NDEBUG
|
|
res[new_letter_form] = bdd2form(all_cond[i]);
|
|
#else
|
|
// Check if they are the same
|
|
formula old_form = bdd2form(all_cond[i]);
|
|
if (res.count(new_letter_form) == 0)
|
|
res[new_letter_form] = old_form;
|
|
else
|
|
assert(res[new_letter_form] == old_form);
|
|
#endif
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
/// \brief Tries to partition the given condition vector \a all_cond
|
|
/// abandons at \a max_letter.
|
|
/// \return The corresponding bdd_partition
|
|
/// \note A pointer to all_cond is captured internally, it needs
|
|
/// to outlive the returned bdd_partition
|
|
bdd_partition
|
|
try_partition_me(const std::vector<bdd>& all_cond, unsigned max_letter)
|
|
{
|
|
// We create vector that will be successively filled.
|
|
// Each entry corresponds to a "letter", of the partition
|
|
const size_t Norig = all_cond.size();
|
|
|
|
bdd_partition result(all_cond);
|
|
|
|
auto& treated = result.treated;
|
|
auto& ig = *result.ig;
|
|
|
|
for (unsigned io = 0; io < Norig; ++io)
|
|
{
|
|
bdd cond = all_cond[io];
|
|
const auto Nt = treated.size();
|
|
for (size_t in = 0; in < Nt; ++in)
|
|
{
|
|
if (cond == bddfalse)
|
|
break;
|
|
if (treated[in].first == cond)
|
|
{
|
|
// Found this very condition -> make transition
|
|
ig.new_edge(io, treated[in].second);
|
|
cond = bddfalse;
|
|
break;
|
|
}
|
|
if (bdd_have_common_assignment(treated[in].first, cond))
|
|
{
|
|
bdd inter = treated[in].first & cond;
|
|
// Create two new states
|
|
unsigned ssplit = ig.new_states(2);
|
|
// ssplit becomes the state without the intersection
|
|
// ssplit + 1 becomes the intersection
|
|
// Both of them are implied by the original node,
|
|
// Only inter is implied by the current letter
|
|
ig.new_edge(treated[in].second, ssplit);
|
|
ig.new_edge(treated[in].second, ssplit+1);
|
|
ig.new_edge(io, ssplit+1);
|
|
treated.emplace_back(inter, ssplit+1);
|
|
// Update
|
|
cond -= inter;
|
|
treated[in].first -= inter;
|
|
treated[in].second = ssplit;
|
|
if (treated.size() > max_letter)
|
|
return bdd_partition{};
|
|
}
|
|
}
|
|
if (cond != bddfalse)
|
|
{
|
|
unsigned sc = ig.new_state();
|
|
treated.emplace_back(cond, sc);
|
|
ig.new_edge(io, sc);
|
|
}
|
|
}
|
|
|
|
result.relabel_succ = true;
|
|
return result;
|
|
} |