Method Concatenate
Concatenate(Automaton, Automaton)
Returns an automaton that accepts the concatenation of the languages of the given automata.
Complexity: linear in number of states.
Declaration
public static Automaton Concatenate(Automaton a1, Automaton a2)
Parameters
Type | Name | Description |
---|---|---|
Automaton | a1 | |
Automaton | a2 |
Returns
Type | Description |
---|---|
Automaton |
Concatenate(IList<Automaton>)
Returns an automaton that accepts the concatenation of the languages of the given automata.
Complexity: linear in total number of states.
Declaration
public static Automaton Concatenate(IList<Automaton> l)
Parameters
Type | Name | Description |
---|---|---|
IList<Automaton> | l |
Returns
Type | Description |
---|---|
Automaton |