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