Vaucanson  1.4.1
normalized.hh
Go to the documentation of this file.
1 // normalized.hh: this file is part of the Vaucanson project.
2 //
3 // Vaucanson, a generic library for finite state machines.
4 //
5 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2008 The Vaucanson Group.
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License
9 // as published by the Free Software Foundation; either version 2
10 // of the License, or (at your option) any later version.
11 //
12 // The complete GNU General Public Licence Notice can be found as the
13 // `COPYING' file in the root directory.
14 //
15 // The Vaucanson Group consists of people listed in the `AUTHORS' file.
16 //
17 #ifndef VCSN_ALGORITHMS_NORMALIZED_HH
18 # define VCSN_ALGORITHMS_NORMALIZED_HH
19 /* @{ */
34 // INTERFACE: Automaton normalize(const Automaton& a) { return vcsn::normalize(*a); }
35 
36 // INTERFACE: void normalize_here(Automaton& a) { return vcsn::normalize_here(*a); }
37 
38 // INTERFACE: bool is_normalized(const Automaton& a) { return vcsn::is_normalized(*a); }
39 
40 // INTERFACE: void union_of_normalized_here(Automaton& a1, const Automaton& a2) { return vcsn::union_of_normalized_here(*a1, *a2); }
41 
42 // INTERFACE: Automaton union_of_normalized(const Automaton& a1, const Automaton& a2) { return vcsn::union_of_normalized(*a1, *a2); }
43 
44 // INTERFACE: void concatenate_of_normalized_here(Automaton& a1, const Automaton& a2) { return vcsn::concatenate_of_normalized_here(*a1, *a2); }
45 
46 // INTERFACE: Automaton concatenate_of_normalized(const Automaton& a1, const Automaton& a2) { return vcsn::concatenate_of_normalized(*a1, *a2); }
47 
48 // INTERFACE: void star_of_normalized_here(Automaton& a) { return vcsn::star_of_normalized_here(*a); }
49 
50 // INTERFACE: Automaton star_of_normalized(const Automaton& a) { return vcsn::star_of_normalized(*a); }
51 
52 # include <vaucanson/design_pattern/design_pattern.hh>
53 
54 namespace vcsn {
55 /* @{ */
57 
69  template <typename A, typename AI>
70  Element<A, AI>
71  normalize(const Element<A, AI>& a);
72 
84  template<typename A, typename AI>
85  void
86  normalize_here(Element<A, AI>& a);
87 
99  template<typename A, typename AI>
100  bool
101  is_normalized(const Element<A, AI>& a);
102 
116  template<typename A, typename AI1, typename AI2>
117  void
118  union_of_normalized_here(Element<A, AI1>& lhs,
119  const Element<A, AI2>& rhs);
120 
133  template<typename A, typename AI1, typename AI2>
134  Element<A, AI1>
135  union_of_normalized(const Element<A, AI1>& lhs,
136  const Element<A, AI2>& rhs);
137 
151  template<typename A, typename AI1, typename AI2>
152  void
153  concatenate_of_normalized_here(Element<A, AI1>& lhs,
154  const Element<A, AI2>& rhs);
155 
168  template<typename A, typename AI1, typename AI2>
169  Element<A, AI1>
170  concatenate_of_normalized(const Element<A, AI1>& lhs,
171  const Element<A, AI2>& rhs);
172 
185  template<typename A, typename AI>
186  void
187  star_of_normalized_here(Element<A, AI>& a);
188 
201  template<typename A, typename AI>
202  Element<A, AI>
203  star_of_normalized(const Element<A, AI>& a);
204 
207 } // vcsn
208 
209 # if !defined VCSN_USE_INTERFACE_ONLY && !defined VCSN_USE_LIB
210 # include <vaucanson/algorithms/normalized.hxx>
211 # endif // VCSN_USE_INTERFACE_ONLY
212 
213 #endif // ! VCSN_ALGORITHMS_NORMALIZED_HH