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