Main Page | Class Hierarchy | Class List | Directories | File List | Class Members | File Members

compressedmarking.hh

Go to the documentation of this file.
00001 // Copyright (C) 2004  Laboratoire d'Informatique de Paris 6 (LIP6),
00002 // département Systèmes Répartis Coopératifs (SRC), Université Pierre
00003 // et Marie Curie.
00004 //
00005 // This file is part of the Spot tutorial. Spot is a model checking 
00006 // library.
00007 //
00008 // Spot is free software; you can redistribute it and/or modify it
00009 // under the terms of the GNU General Public License as published by
00010 // the Free Software Foundation; either version 2 of the License, or
00011 // (at your option) any later version.
00012 //
00013 // Spot is distributed in the hope that it will be useful, but WITHOUT
00014 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
00015 // or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
00016 // License for more details.
00017 //
00018 // You should have received a copy of the GNU General Public License
00019 // along with Spot; see the file COPYING.  If not, write to the Free
00020 // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
00021 // 02111-1307, USA.
00022 
00023 #ifndef COMPRESSED_MARKING_HH
00024 #define COMPRESSED_MARKING_HH
00025 
00026 #include <vector>
00027 #include <iostream>
00028 
00029 #include "marking.hh"
00030 
00032 class compressed_marking {
00033 public:
00034   compressed_marking(const compressed_marking& m);
00035 
00037   compressed_marking(const marking& m);
00038 
00040   marking* expand() const;
00041 
00043   void print(std::ostream& os) const;
00044 
00046   const std::vector<bool>& get_vector() const;
00047 
00048 protected:
00049   std::vector<bool> mac;
00050 };
00051 
00052 #endif

Please comment this page and report errors about it on the RefDocComments page.
Generated on Mon Jan 31 15:17:13 2005 for checkpn by doxygen 1.4.0