spot
0.8.1
|
00001 // Copyright (C) 2008 Laboratoire de Recherche et Développement 00002 // de l'Epita (LRDE). 00003 // Copyright (C) 2003, 2004, 2006, 2007 Laboratoire d'Informatique de 00004 // Paris 6 (LIP6), département Systèmes Répartis Coopératifs (SRC), 00005 // Université Pierre 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_IFACE_GSPN_SSP_HH 00025 # define SPOT_IFACE_GSPN_SSP_HH 00026 00027 // Do not include gspnlib.h here, or it will polute the user's 00028 // namespace with internal C symbols. 00029 00030 # include <string> 00031 # include "tgba/tgba.hh" 00032 # include "common.hh" 00033 # include "tgbaalgos/gtec/gtec.hh" 00034 # include "tgbaalgos/gtec/ce.hh" 00035 # include "ltlenv/declenv.hh" 00036 00037 namespace spot 00038 { 00039 00040 class gspn_ssp_interface 00041 { 00042 public: 00043 gspn_ssp_interface(int argc, char **argv, 00044 bdd_dict* dict, const ltl::declarative_environment& env, 00045 bool inclusion = false, 00046 bool doublehash = true, 00047 bool pushfront = false); 00048 ~gspn_ssp_interface(); 00049 tgba* automaton(const tgba* operand) const; 00050 private: 00051 bdd_dict* dict_; 00052 const ltl::declarative_environment& env_; 00053 }; 00054 00058 couvreur99_check* couvreur99_check_ssp_semi(const tgba* ssp_automata); 00059 couvreur99_check* couvreur99_check_ssp_shy_semi(const tgba* ssp_automata); 00060 couvreur99_check* couvreur99_check_ssp_shy(const tgba* ssp_automata, 00061 bool stack_inclusion = true, 00062 bool double_inclusion = false, 00063 bool reversed_double_inclusion 00064 = false, 00065 bool no_decomp = false); 00066 00068 00069 // I rewrote couvreur99_check_result today, and it no longer use 00070 // connected_component_ssp_factory. So this cannot work anymore. 00071 // -- adl 2004-12-10. 00072 // couvreur99_check_result* 00073 // counter_example_ssp(const couvreur99_check_status* status); 00074 } 00075 00076 #endif // SPOT_IFACE_GSPN_SSP_GSPN_SSP_HH