00001 // eps_removal.hh: this file is part of the Vaucanson project. 00002 // 00003 // Vaucanson, a generic library for finite state machines. 00004 // 00005 // Copyright (C) 2004, 2005, 2006 The Vaucanson Group. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 // 00012 // The complete GNU General Public Licence Notice can be found as the 00013 // `COPYING' file in the root directory. 00014 // 00015 // The Vaucanson Group consists of people listed in the `AUTHORS' file. 00016 // 00017 #ifndef VCSN_ALGORITHMS_EPS_REMOVAL_SP_HH 00018 # define VCSN_ALGORITHMS_EPS_REMOVAL_SP_HH 00019 00033 // INTERFACE: void forward_eps_removal_here_sp(Automaton& a) { return vcsn::forward_eps_removal_here(*a); } 00034 // INTERFACE: void forward_eps_removal_here_sp(GenAutomaton& a) { return vcsn::forward_eps_removal_here(*a); } 00035 00036 // INTERFACE: Automaton forward_eps_removal_sp(const Automaton& a) { return vcsn::forward_eps_removal(*a); } 00037 // INTERFACE: GenAutomaton forward_eps_removal_sp(const GenAutomaton& a) { return vcsn::forward_eps_removal(*a); } 00038 00039 // INTERFACE: void backward_eps_removal_here_sp(Automaton& a) { return vcsn::backward_eps_removal_here(*a); } 00040 // INTERFACE: void backward_eps_removal_here_sp(GenAutomaton& a) { return vcsn::backward_eps_removal_here(*a); } 00041 00042 // INTERFACE: Automaton backward_eps_removal_sp(const Automaton& a) { return vcsn::backward_eps_removal(*a); } 00043 // INTERFACE: GenAutomaton backward_eps_removal_sp(const GenAutomaton& a) { return vcsn::backward_eps_removal(*a); } 00044 00045 // INTERFACE: void eps_removal_here_sp(Automaton& a, vcsn::misc::direction_type dir) { return vcsn::eps_removal_here(*a); } 00046 // INTERFACE: void eps_removal_here_sp(GenAutomaton& a) { return vcsn::eps_removal_here(*a); } 00047 00048 // INTERFACE: Automaton eps_removal_sp(const Automaton& a, vcsn::misc::direction_type dir) { return vcsn::eps_removal(*a); } 00049 // INTERFACE: GenAutomaton eps_removal_sp(const GenAutomaton& a) { return vcsn::eps_removal(*a); } 00050 00051 # include <vaucanson/design_pattern/design_pattern.hh> 00052 # include <vaucanson/misc/direction.hh> 00053 00054 namespace vcsn { 00055 00073 template<typename A, typename T> 00074 void 00075 eps_removal_here_sp(Element<A, T>& a, misc::direction_type dir = misc::backward); 00076 00077 00093 template<typename A, typename T> 00094 Element<A, T> 00095 eps_removal_sp(const Element<A, T>& a, misc::direction_type dir = misc::backward); 00096 00097 00112 template<typename A, typename T> 00113 void 00114 backward_eps_removal_here_sp(Element<A, T>& a); 00115 00116 00131 template<typename A, typename T> 00132 Element<A, T> 00133 backward_eps_removal_sp(const Element<A, T>& a); 00134 00135 00150 template<typename A, typename T> 00151 void 00152 forward_eps_removal_here_sp(Element<A, T>& a); 00153 00154 00169 template<typename A, typename T> 00170 Element<A, T> 00171 forward_eps_removal_sp(const Element<A, T>& a); 00172 00174 00175 } // vcsn 00176 00177 00178 # if !defined VCSN_USE_INTERFACE_ONLY && !defined VCSN_USE_LIB 00179 # include <vaucanson/algorithms/eps_removal_sp.hxx> 00180 # endif // VCSN_USE_INTERFACE_ONLY 00181 00182 #endif // ! VCSN_ALGORITHMS_EPS_REMOVAL_SP_HH