Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
thompson.cc
Go to the documentation of this file.
1 #include <vcsn/dyn/automaton.hh>
2 #include <vcsn/algos/thompson.hh>
3 #include <vcsn/dyn/algos.hh>
5 
6 namespace vcsn
7 {
8  namespace dyn
9  {
10  REGISTER_DEFINE(thompson);
11 
12  automaton
14  {
15  return detail::thompson_registry().call(e);
16  }
17  }
18 }
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
std::shared_ptr< detail::ratexp_base > ratexp
Definition: fwd.hh:64
automaton thompson(const ratexp &e)
The Thompson automaton of e.
Definition: thompson.cc:13