00001 // Copyright (C) 2009 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 00028 typedef fair_kripke_succ_iterator kripke_succ_iterator; 00029 00030 class kripke: public fair_kripke 00031 { 00032 public: 00033 virtual ~kripke(); 00034 00035 virtual bdd acceptance_conditions_of_state(const state* s) const; 00036 virtual bdd neg_acceptance_conditions() const; 00037 virtual bdd all_acceptance_conditions() const; 00038 }; 00039 } 00040 00041 #endif // SPOT_KRIPKE_KRIPKE_HH