47 template <
class SymbolType,
class StateType >
53 template <
class SymbolType,
class StateType >
59 template <
class SymbolType,
class StateType >
63template <
class SymbolType,
class StateType >
72 for(
const auto& t :
automaton.getTransitions())
73 res.addTransition(t.second, t.first.second, t.first.first);
78template <
class SymbolType,
class StateType >
87 for(
const auto& t :
automaton.getTransitions())
88 res.addTransition(t.second, t.first.second, t.first.first);
93template <
class SymbolType,
class StateType >
102 for(
const auto& t :
automaton.getTransitions())
103 res.addTransition ( t.second, t.first.second, t.first.first);
Deterministic finite automaton. Accepts regular languages.
Definition: DFA.h:71
Nondeterministic finite automaton with multiple initial states. Accepts regular languages.
Definition: MultiInitialStateNFA.h:69
Nondeterministic finite automaton. Accepts regular languages.
Definition: NFA.h:66
Definition: ToGrammar.h:31
ContainerType< ResType > transform(const ContainerType< InType, Ts ... > &in, Callback transform)
In container tranformation of all elements according to the tranform.
Definition: algorithm.hpp:150