// -*- coding: utf-8 -*- // Copyright (C) 2010, 2011, 2012, 2014, 2015 Laboratoire de Recherche // et Developpement 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 . #include "tgtaexplicit.hh" #include "twa/formula2bdd.hh" #include "twa/bddprint.hh" namespace spot { tgta_explicit::tgta_explicit(const const_twa_ptr& tgba, unsigned n_acc, state_ta_explicit* artificial_initial_state) : tgta(tgba->get_dict()), ta_(make_ta_explicit(tgba, n_acc, artificial_initial_state)) { } state* tgta_explicit::get_init_state() const { return ta_->get_artificial_initial_state(); } twa_succ_iterator* tgta_explicit::succ_iter(const spot::state* state) const { return ta_->succ_iter(state); } bdd tgta_explicit::compute_support_conditions(const spot::state* in) const { const state_ta_explicit* s = down_cast(in); assert(s); return ta_->get_tgba()->support_conditions(s->get_tgba_state()); } bdd_dict_ptr tgta_explicit::get_dict() const { return ta_->get_dict(); } std::string tgta_explicit::format_state(const spot::state* s) const { return ta_->format_state(s); } spot::twa_succ_iterator* tgta_explicit::succ_iter_by_changeset(const spot::state* s, bdd chngset) const { return ta_->succ_iter(s, chngset); } }