00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_ALGORITHMS_FACTOR_HXX
00018 # define VCSN_ALGORITHMS_FACTOR_HXX
00019
00020 # include <vaucanson/algorithms/factor.hh>
00021
00022 # include <vaucanson/automata/concept/automata_base.hh>
00023 # include <vaucanson/algorithms/realtime.hh>
00024 # include <vaucanson/automata/implementation/transpose_view.hh>
00025 # include <vaucanson/misc/usual_macros.hh>
00026 # include <vaucanson/algorithms/is_trim.hh>
00027
00028 namespace vcsn {
00029
00030
00031
00032
00033
00034 template<typename A, typename AI>
00035 void
00036 factor_here (Element<A, AI>& a)
00037 {
00038 precondition(is_realtime(a));
00039 precondition(is_trim(a));
00040
00041 typedef Element<A, AI> automaton_t;
00042 AUTOMATON_TYPES (automaton_t);
00043
00044 for_all_states (i, a)
00045 {
00046 a.set_initial (*i);
00047 a.set_final (*i);
00048 }
00049 }
00050
00051
00052
00053
00054
00055 template<typename A, typename AI>
00056 Element<A, AI>
00057 factor (const Element<A, AI>& a)
00058 {
00059 Element<A, AI> res (a);
00060 factor_here (res);
00061 return (res);
00062 }
00063
00064 }
00065
00066 #endif // !VCSN_ALGORITHMS_FACTOR_HXX