00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_ALGORITHMS_OUTSPLITTING_HH
00018 # define VCSN_ALGORITHMS_OUTSPLITTING_HH
00019
00032 # include <set>
00033 # include <vaucanson/automata/concept/automata_base.hh>
00034
00035 namespace vcsn {
00036
00037 template <typename S, typename T>
00038 Element<S, T>
00039 outsplitting(const Element<S, T>& aut, std::set<hstate_t>& m);
00040
00041 template <typename S, typename T>
00042 Element<S, T>
00043 insplitting(const Element<S, T>& aut, std::set<hstate_t>& m);
00044
00045 template <typename S, typename T>
00046 Element<S, T>
00047 outsplitting(const Element<S, T>& aut);
00048
00049 template <typename S, typename T>
00050 Element<S, T>
00051 insplitting(const Element<S, T>& aut);
00052
00053 }
00054
00055
00056 # ifndef VCSN_USE_INTERFACE_ONLY
00057 # include <vaucanson/algorithms/outsplitting.hxx>
00058 # endif // VCSN_USE_INTERFACE_ONLY
00059
00060
00061 #endif // ! VCSN_ALGORITHMS_OUTSPLITTING_HH