succiter.hh

Go to the documentation of this file.
00001 // Copyright (C) 2011 Laboratoire de Recherche et Developpement de
00002 // l'Epita (LRDE).
00003 // Copyright (C) 2003, 2004, 2005  Laboratoire d'Informatique de Paris 6 (LIP6),
00004 // département Systèmes Répartis Coopératifs (SRC), Université Pierre
00005 // et Marie Curie.
00006 //
00007 // This file is part of Spot, a model checking library.
00008 //
00009 // Spot is free software; you can redistribute it and/or modify it
00010 // under the terms of the GNU General Public License as published by
00011 // the Free Software Foundation; either version 2 of the License, or
00012 // (at your option) any later version.
00013 //
00014 // Spot is distributed in the hope that it will be useful, but WITHOUT
00015 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
00016 // or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
00017 // License for more details.
00018 //
00019 // You should have received a copy of the GNU General Public License
00020 // along with Spot; see the file COPYING.  If not, write to the Free
00021 // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
00022 // 02111-1307, USA.
00023 
00024 #ifndef SPOT_TGBA_SUCCITER_HH
00025 # define SPOT_TGBA_SUCCITER_HH
00026 
00027 #include "state.hh"
00028 
00029 namespace spot
00030 {
00039   class tgba_succ_iterator
00040   {
00041   public:
00042     virtual
00043     ~tgba_succ_iterator()
00044     {
00045     }
00046 
00048 
00049 
00059     virtual void first() = 0;
00060 
00065     virtual void next() = 0;
00066 
00077     virtual bool done() const = 0;
00078 
00080 
00082 
00083 
00093     virtual state* current_state() const = 0;
00097     virtual bdd current_condition() const = 0;
00100     virtual bdd current_acceptance_conditions() const = 0;
00101 
00103   };
00104 }
00105 
00106 
00107 #endif // SPOT_TGBA_SUCCITER_HH

Please comment this page and report errors about it on the RefDocComments page.
Generated on Mon Feb 7 2011 14:29:29 for spot by doxygen 1.7.1