This is needed now that lib/ is in the include path. * src/misc/bareword.cc, src/misc/bddop.cc, src/misc/escape.cc, src/misc/formater.cc, src/misc/intvcmp2.cc, src/misc/intvcomp.cc, src/misc/memusage.cc, src/misc/minato.cc, src/misc/optionmap.cc, src/misc/random.cc, src/misc/timer.cc, src/misc/version.cc: Include config.h.
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2009, 2013 Laboratoire de Recherche et Développement
|
|
// de l'Epita (LRDE).
|
|
//
|
|
// 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 <cassert>
|
|
#include "bddop.hh"
|
|
|
|
namespace spot
|
|
{
|
|
bdd
|
|
compute_all_acceptance_conditions(bdd neg_acceptance_conditions)
|
|
{
|
|
bdd all = bddfalse;
|
|
|
|
// Build all_acceptance_conditions_ from neg_acceptance_conditions_
|
|
// I.e., transform !A & !B & !C into
|
|
// A & !B & !C
|
|
// + !A & B & !C
|
|
// + !A & !B & C
|
|
bdd cur = neg_acceptance_conditions;
|
|
while (cur != bddtrue)
|
|
{
|
|
assert(cur != bddfalse);
|
|
|
|
bdd v = bdd_ithvar(bdd_var(cur));
|
|
all |= v & bdd_exist(neg_acceptance_conditions, v);
|
|
|
|
assert(bdd_high(cur) != bddtrue);
|
|
cur = bdd_low(cur);
|
|
}
|
|
|
|
return all;
|
|
}
|
|
|
|
bdd
|
|
compute_neg_acceptance_conditions(bdd all_acceptance_conditions)
|
|
{
|
|
bdd cur = bdd_support(all_acceptance_conditions);
|
|
bdd neg = bddtrue;
|
|
while (cur != bddtrue)
|
|
{
|
|
neg &= bdd_nithvar(bdd_var(cur));
|
|
assert(bdd_low(cur) != bddtrue);
|
|
cur = bdd_high(cur);
|
|
}
|
|
return neg;
|
|
}
|
|
|
|
}
|