spot
0.9.1
|
00001 // Copyright (C) 2009, 2010, 2011, 2012 Laboratoire de Recherche et 00002 // Développement de l'Epita (LRDE). 00003 // Copyright (C) 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 00025 #ifndef SPOT_TGBAALGOS_REDUCTGBA_SIM_HH 00026 #define SPOT_TGBAALGOS_REDUCTGBA_SIM_HH 00027 00028 namespace spot 00029 { 00030 class tgba; 00031 00034 00036 enum reduce_tgba_options 00037 { 00038 // Reduce_None and Reduce_All clash with the definitions in ltl::reduce 00039 // for Swig because Swig does not handle namespaces. 00040 #ifndef SWIG 00041 00042 Reduce_None = 0, 00043 #endif 00044 00045 Reduce_quotient_Dir_Sim = 1, 00047 Reduce_transition_Dir_Sim = 2, 00049 Reduce_quotient_Del_Sim = 4, 00051 Reduce_transition_Del_Sim = 8, 00053 Reduce_Scc = 16, 00054 #ifndef SWIG 00055 00056 Reduce_All = -1U 00057 #endif 00058 }; 00059 00060 #if __GNUC__ 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 const tgba* reduc_tgba_sim(const tgba* a, int opt = Reduce_All) 00073 __attribute__ ((deprecated)); 00074 #else 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 const tgba* reduc_tgba_sim(const tgba* a, int opt = Reduce_All); 00087 #endif 00088 00090 } 00091 00092 #endif // SPOT_TGBAALGOS_REDUCTGBA_SIM_HH