00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef VCSN_ALGORITHMS_IMAGE_HXX
00019 # define VCSN_ALGORITHMS_IMAGE_HXX
00020
00021 # include <vaucanson/algorithms/image.hh>
00022 # include <vaucanson/algorithms/projection.hh>
00023
00024 namespace vcsn
00025 {
00026 template <typename auto_t, typename trans_t>
00027 static void
00028 do_fmp_image(const trans_t& fmp_trans, auto_t& res)
00029 {
00030 BENCH_TASK_SCOPED("image");
00031 AUTOMATON_TYPES_(trans_t, trans_);
00032 AUTOMATON_TYPES(auto_t);
00033
00034 typedef typename trans_series_set_elt_t::support_t trans_support_t;
00035 std::map<trans_hstate_t, hstate_t> stmap;
00036
00037 const series_set_t& series = res.structure().series();
00038 const monoid_t& monoid = res.structure().series().monoid();
00039 const trans_monoid_t& trans_monoid =
00040 fmp_trans.structure().series().monoid();
00041
00042 set_states(fmp_trans, res, stmap);
00043
00044 for_all_const_transitions_(trans_, fmp_e, fmp_trans)
00045 {
00046 const trans_series_set_elt_t trans_series_elt =
00047 fmp_trans.series_of(*fmp_e);
00048 trans_support_t trans_supp = trans_series_elt.supp();
00049 const trans_monoid_elt_t trans_monoid_elt
00050 (trans_monoid, *(trans_supp.begin()));
00051
00052 const monoid_elt_value_t word(trans_monoid_elt.value().second);
00053
00054 series_set_elt_t series_elt(series);
00055
00056 series_elt.assoc(monoid_elt_t(monoid, word),
00057 trans_series_elt.get(trans_monoid_elt));
00058
00059 res.add_series_transition(stmap[fmp_trans.src_of(*fmp_e)],
00060 stmap[fmp_trans.dst_of(*fmp_e)], series_elt);
00061 }
00062 }
00063
00064
00065
00066 template<typename Trans_t, typename Auto_t>
00067 static void
00068 do_rw_image(const Trans_t& t,
00069 Auto_t& ret)
00070 {
00071 BENCH_TASK_SCOPED("image (transducer to automaton)");
00072 AUTOMATON_TYPES(Trans_t);
00073 AUTOMATON_TYPES_(Auto_t, auto_);
00074 std::map<hstate_t, auto_hstate_t> m;
00075
00076 for_all_const_states(p, t)
00077 m[*p] = ret.add_state();
00078
00079 monoid_elt_t empty =
00080 algebra::identity_as<monoid_elt_value_t>::of(t.series().monoid());
00081 typename Trans_t::series_set_elt_t id_series(t.structure().series());
00082 id_series = vcsn::algebra::
00083 identity_as<typename Trans_t::series_set_elt_value_t>::
00084 of(t.structure().series());
00085
00086 for_all_const_initial_states(p, t)
00087 {
00088 if (t.get_initial(*p) != id_series)
00089 {
00090 auto_hstate_t tmp = ret.add_state();
00091 ret.set_initial(tmp);
00092 ret.add_series_transition(tmp, m[*p], t.get_initial(*p).get(empty));
00093 }
00094 else
00095 ret.set_initial(m[*p], t.get_initial(*p).get(empty));
00096 }
00097
00098 for_all_const_final_states(p, t)
00099 {
00100 if (t.get_final(*p) != id_series)
00101 {
00102 auto_hstate_t tmp = ret.add_state();
00103 ret.set_final(tmp);
00104 ret.add_series_transition(m[*p], tmp, t.get_final(*p).get(empty));
00105 }
00106 else
00107 ret.set_final(m[*p], t.get_final(*p).get(empty));
00108 }
00109
00110 for_all_const_transitions(e, t)
00111 {
00112 ret.add_series_transition(m[t.src_of(*e)],
00113 m[t.dst_of(*e)],
00114 t.output_of(*e));
00115 }
00116 }
00117
00118
00119 template <typename S, typename T, typename Auto_t>
00120 static
00121 typename output_projection_helper<S, T>::ret
00122 do_rw_image(const Element<S, T>& t,
00123 Auto_t& ret,
00124 std::map<typename Auto_t::hstate_t, typename T::hstate_t>& m_)
00125 {
00126 BENCH_TASK_SCOPED("image (transducer to automaton)");
00127 typedef Element<S, T> Trans_t;
00128 AUTOMATON_TYPES(Trans_t);
00129
00130 monoid_elt_t empty = t.series().monoid().VCSN_EMPTY_;
00131 std::map<hstate_t, hstate_t> m;
00132
00133 for_all_const_states(p, t)
00134 {
00135 m[*p] = ret.add_state();
00136 m_[m[*p]] = *p;
00137 }
00138
00139 for_all_const_initial_states(p, t)
00140 ret.set_initial(m[*p], t.get_initial(*p).get(empty));
00141
00142 for_all_const_final_states(p, t)
00143 ret.set_final(m[*p], t.get_final(*p).get(empty));
00144
00145 for_all_const_transitions(e, t)
00146 ret.add_series_transition(m[t.src_of(*e)], m[t.dst_of(*e)],
00147 t.output_of(*e));
00148
00149 return ret;
00150 }
00151
00152
00153
00154
00155
00156
00157
00158
00159 template <typename S, typename S2,
00160 typename T, typename T2,
00161 typename ST, typename M1>
00162 static void
00163 image_dispatch(const Element<S,T>& src,
00164 const TransducerBase<ST>&,
00165 const algebra::FreeMonoidBase<M1>&,
00166 Element<S2, T2>& dst)
00167 {
00168 do_rw_image(src, dst);
00169 }
00170
00171 template <typename S, typename S2,
00172 typename T, typename T2,
00173 typename ST, typename M1>
00174 static void
00175 image_dispatch(const Element<S,T>& src,
00176 const TransducerBase<ST>&,
00177 const algebra::FreeMonoidBase<M1>&,
00178 Element<S2, T2>& dst,
00179 std::map<typename T::hstate_t, typename T2::hstate_t>& m)
00180 {
00181 do_rw_image(src, dst, m);
00182 }
00183
00184
00185
00186 template <typename S, typename T, typename ST>
00187 static
00188 typename output_projection_helper<S, T>::ret
00189 image_dispatch2(const Element<S,T>& src,
00190 const TransducerBase<ST>&,
00191 std::map<typename T::hstate_t, typename T::hstate_t>& m)
00192 {
00193 typename output_projection_helper<S, T>::ret dst =
00194 output_projection_helper<S, T>::make_output_projection_automaton(src);
00195
00196 image_dispatch(src, src.structure(),
00197 src.structure().series().monoid(), dst, m);
00198 return dst;
00199 }
00200
00201
00202 template <typename S, typename T, typename ST>
00203 static
00204 typename output_projection_helper<S, T>::ret
00205 image_dispatch2(const Element<S,T>& src,
00206 const TransducerBase<ST>&)
00207 {
00208 typename output_projection_helper<S, T>::ret dst =
00209 output_projection_helper<S, T>::make_output_projection_automaton(src);
00210
00211 image_dispatch(src, src.structure(),
00212 src.structure().series().monoid(), dst);
00213 return dst;
00214 }
00215
00216
00217 template <typename S, typename S2,
00218 typename T, typename T2,
00219 typename ST, typename M1>
00220 static void
00221 image_dispatch(const Element<S,T>& src,
00222 const AutomataBase<ST>&,
00223 const algebra::FreeMonoidProductBase<M1>&,
00224 Element<S2, T2>& dst)
00225 {
00226 do_fmp_image(src, dst);
00227 }
00228
00229
00230
00231
00232
00233
00234
00235 template <typename S, typename T>
00236 void
00237 image(const Element<S, T>& src, typename output_projection_helper<S, T>::ret& dst)
00238 {
00239 image_dispatch(src, src.structure(),
00240 src.structure().series().monoid(),
00241 dst);
00242 }
00243
00244 template <typename S, typename T>
00245 typename output_projection_helper<S, T>::ret
00246 image(const Element<S, T>& src)
00247 {
00248 return image_dispatch2(src, src.structure());
00249 }
00250
00251 template <typename S, typename T>
00252 typename output_projection_helper<S, T>::ret
00253 image(const Element<S, T>& src,
00254 std::map<typename T::hstate_t, typename T::hstate_t>& m)
00255 {
00256 return image_dispatch2(src, src.structure(), m);
00257 }
00258
00259 }
00260
00261 #endif