spot  1.2.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
tgbabddconcrete.hh
1 // Copyright (C) 2011, 2013 Laboratoire de Recherche et Développement
2 // de l'Epita (LRDE).
3 // Copyright (C) 2003, 2004, 2006 Laboratoire d'Informatique de Paris
4 // 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
5 // Université Pierre et Marie Curie.
6 //
7 // This file is part of Spot, a model checking library.
8 //
9 // Spot is free software; you can redistribute it and/or modify it
10 // under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 3 of the License, or
12 // (at your option) any later version.
13 //
14 // Spot is distributed in the hope that it will be useful, but WITHOUT
15 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17 // License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program. If not, see <http://www.gnu.org/licenses/>.
21 
22 #ifndef SPOT_TGBA_TGBABDDCONCRETE_HH
23 # define SPOT_TGBA_TGBABDDCONCRETE_HH
24 
25 #include "tgba.hh"
26 #include "statebdd.hh"
27 #include "tgbabddfactory.hh"
28 #include "succiterconcrete.hh"
29 
30 namespace spot
31 {
34  class SPOT_API tgba_bdd_concrete: public tgba
35  {
36  public:
41 
43  tgba_bdd_concrete(const tgba_bdd_factory& fact, bdd init);
44 
45  virtual ~tgba_bdd_concrete();
46 
48  virtual void set_init_state(bdd s);
49 
50  virtual state_bdd* get_init_state() const;
51 
61  bdd get_init_bdd() const;
62 
64  succ_iter(const state* local_state,
65  const state* global_state = 0,
66  const tgba* global_automaton = 0) const;
67 
68  virtual std::string format_state(const state* state) const;
69 
70  virtual bdd_dict* get_dict() const;
71 
77  const tgba_bdd_core_data& get_core_data() const;
78 
79  virtual bdd all_acceptance_conditions() const;
80  virtual bdd neg_acceptance_conditions() const;
81 
84  void delete_unaccepting_scc();
85 
86  protected:
87  virtual bdd compute_support_conditions(const state* state) const;
88  virtual bdd compute_support_variables(const state* state) const;
89 
91  bdd init_;
92  private:
93  // Disallow copy.
95  tgba_bdd_concrete& operator=(const tgba_bdd_concrete&);
96  };
97 }
98 
99 #endif // SPOT_TGBA_TGBABDDCONCRETE_HH

Please direct any question, comment, or bug report to the Spot mailing list at spot@lrde.epita.fr.
Generated on Sat Dec 6 2014 12:28:44 for spot by doxygen 1.8.4