Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
strip.cc
Go to the documentation of this file.
1 #include <vcsn/algos/strip.hh>
2 #include <vcsn/dyn/algos.hh>
4 
5 namespace vcsn
6 {
7  namespace dyn
8  {
9  REGISTER_DEFINE(strip);
10  automaton
11  strip(const automaton& aut)
12  {
13  return detail::strip_registry().call(aut);
14  }
15  }
16 }
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
automaton strip(const automaton &a)
The automaton in a with its metadata layers removed.
Definition: strip.cc:11