spot  0.8.2
futurecondcol.hh
Go to the documentation of this file.
00001 // Copyright (C) 2009  Laboratoire de recherche et développement 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_TGBA_FUTURECONDCOL_HH
00021 # define SPOT_TGBA_FUTURECONDCOL_HH
00022 
00023 #include "tgbascc.hh"
00024 
00025 namespace spot
00026 {
00027 
00037   class future_conditions_collector : public tgba_scc
00038   {
00039   public:
00040     typedef scc_map::cond_set cond_set;
00041     typedef std::vector<cond_set> fc_map;
00042 
00048     future_conditions_collector(const tgba* aut, bool show = false);
00049     virtual ~future_conditions_collector();
00050 
00052     const cond_set& future_conditions(const spot::state* s) const;
00053 
00059     virtual std::string format_state(const state* state) const;
00060 
00061   protected:
00062     void map_builder_(unsigned s);
00063 
00064     fc_map future_conds_;       // The map of future conditions for each
00065                                 // strongly connected component.
00066   };
00067 
00068 }
00069 
00070 #endif // SPOT_TGBA_FUTURECONDCOL_HH

Please comment this page and report errors about it on the RefDocComments page.
Generated on Thu Jan 19 2012 19:33:03 for spot by doxygen 1.7.6.1