00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_ALGORITHMS_PRODUCT_HH
00018 # define VCSN_ALGORITHMS_PRODUCT_HH
00019
00030
00031
00032
00033 # include <vaucanson/design_pattern/design_pattern.hh>
00034 # include <vaucanson/automata/concept/handlers.hh>
00035
00036 # include <utility>
00037 # include <map>
00038
00039 namespace vcsn
00040 {
00041
00044
00045
00046
00047 template<typename A, typename T, typename U>
00048 Element<A, T>
00049 product(const Element<A, T>& lhs, const Element<A, U>& rhs,
00050 const bool use_geometry = false);
00051
00052 template<typename A, typename T, typename U>
00053 Element<A, T>
00054 product(const Element<A, T>& lhs,
00055 const Element<A, U>& rhs,
00056 std::map<hstate_t, std::pair<hstate_t, hstate_t> >&,
00057 const bool use_geometry = false);
00059
00062 }
00063
00064 # ifndef VCSN_USE_INTERFACE_ONLY
00065 # include <vaucanson/algorithms/product.hxx>
00066 # endif // VCSN_USE_INTERFACE_ONLY
00067
00068 #endif // ! VCSN_ALGORITHMS_PRODUCT_HH