Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
compose.cc
Go to the documentation of this file.
2 #include <vcsn/algos/compose.hh>
3 #include <vcsn/dyn/algos.hh>
4 
5 
6 namespace vcsn
7 {
8 
9  namespace dyn
10  {
11  REGISTER_DEFINE(compose);
12  automaton
14  {
15  return detail::compose_registry().call(lhs, rhs);
16  }
17 
18  }
19 }
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
automaton compose(automaton &lhs, automaton &rhs)
The composition of transducers lhs and rhs.
Definition: compose.cc:13