spot
0.8.1
|
00001 // Copyright (C) 2009, 2010 Laboratoire de Recherche et Developpement de l'Epita 00002 // 00003 // This file is part of Spot, a model checking library. 00004 // 00005 // Spot is free software; you can redistribute it and/or modify it 00006 // under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // Spot is distributed in the hope that it will be useful, but WITHOUT 00011 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 00012 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 00013 // License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with Spot; see the file COPYING. If not, write to the Free 00017 // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 00018 // 02111-1307, USA. 00019 00020 #ifndef SPOT_KRIPKE_KRIPKE_HH 00021 # define SPOT_KRIPKE_KRIPKE_HH 00022 00023 #include "fairkripke.hh" 00024 00025 namespace spot 00026 { 00027 00044 class kripke_succ_iterator : public tgba_succ_iterator 00045 { 00046 public: 00051 kripke_succ_iterator(const bdd& cond); 00052 virtual ~kripke_succ_iterator(); 00053 00054 virtual bdd current_condition() const; 00055 virtual bdd current_acceptance_conditions() const; 00056 protected: 00057 bdd cond_; 00058 }; 00059 00083 class kripke: public fair_kripke 00084 { 00085 public: 00086 virtual ~kripke(); 00087 00088 virtual bdd state_acceptance_conditions(const state*) const; 00089 virtual bdd neg_acceptance_conditions() const; 00090 virtual bdd all_acceptance_conditions() const; 00091 }; 00092 } 00093 00094 #endif // SPOT_KRIPKE_KRIPKE_HH