// -*- coding: utf-8 -*- // Copyright (C) 2009, 2011, 2012, 2014 Laboratoire de Recherche et // Développement de l'Epita (LRDE). // Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6), // département Systèmes Répartis Coopératifs (SRC), Université Pierre // et Marie Curie. // // 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 "dupexp.hh" #include #include #include #include "reachiter.hh" namespace spot { namespace { template class dupexp_iter: public T { public: dupexp_iter(const tgba* a) : T(a), out_(new tgba_digraph(a->get_dict())) { out_->copy_acceptance_conditions_of(a); a->get_dict()->register_all_variables_of(a, out_); } tgba_digraph* result() { return out_; } virtual void process_state(const state*, int n, tgba_succ_iterator*) { unsigned ns = out_->new_state(); assert(ns == static_cast(n) - 1); (void)ns; } virtual void process_link(const state*, int in, const state*, int out, const tgba_succ_iterator* si) { out_->new_transition(in - 1, out - 1, si->current_condition(), si->current_acceptance_conditions()); } protected: tgba_digraph* out_; }; template class dupexp_iter_save: public dupexp_iter { public: dupexp_iter_save(const tgba* a, std::vector& relation) : dupexp_iter(a), relation_(relation) { } virtual void end() { relation_.resize(this->seen.size()); for (auto s: this->seen) relation_[s.second - 1] = const_cast(s.first); } std::vector& relation_; }; } // anonymous tgba_digraph* tgba_dupexp_bfs(const tgba* aut) { dupexp_iter di(aut); di.run(); return di.result(); } tgba_digraph* tgba_dupexp_dfs(const tgba* aut) { dupexp_iter di(aut); di.run(); return di.result(); } tgba_digraph* tgba_dupexp_bfs(const tgba* aut, std::vector& rel) { dupexp_iter_save di(aut, rel); di.run(); return di.result(); } tgba_digraph* tgba_dupexp_dfs(const tgba* aut, std::vector& rel) { dupexp_iter_save di(aut, rel); di.run(); return di.result(); } }