Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
insplit.cc
Go to the documentation of this file.
1 #include <vcsn/dyn/algos.hh>
2 #include <vcsn/algos/insplit.hh>
4 
5 
6 namespace vcsn
7 {
8  namespace dyn
9  {
10 
11  /*----------------.
12  | insplit(aut). |
13  `----------------*/
14  REGISTER_DEFINE(insplit);
15 
16  automaton
17  insplit(const automaton& a)
18  {
19  return detail::insplit_registry().call(a);
20  }
21  }
22 }
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
automaton insplit(const automaton &aut)
Split automaton on the incoming transition.
Definition: insplit.cc:17