00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_ALGORITHMS_DETERMINIZE_HH
00018 # define VCSN_ALGORITHMS_DETERMINIZE_HH
00019
00033
00034
00035
00036
00037 # include <vaucanson/design_pattern/design_pattern.hh>
00038 # include <vaucanson/automata/concept/handlers.hh>
00039
00040 # include <map>
00041 # include <set>
00042
00043 namespace vcsn {
00044
00047
00048
00049
00056 template<typename A, typename T>
00057 Element<A, T>
00058 determinize(const Element<A, T>& a);
00059
00060 template<typename A, typename T>
00061 Element<A, T>
00062 determinize(const Element<A, T>& a,
00063 std::map<hstate_t, std::set<hstate_t> >&);
00065
00073 template<typename A, typename T>
00074 bool
00075 is_deterministic(const Element<A, T>& a);
00076
00079 }
00080
00081 # ifndef VCSN_USE_INTERFACE_ONLY
00082 # include <vaucanson/algorithms/determinize.hxx>
00083 # endif // VCSN_USE_INTERFACE_ONLY
00084
00085 #endif // ! VCSN_ALGORITHMS_DETERMINIZE_HH