Exemplo n.º 1
0
 public Emission(States states, Alphabet alphabet)
 {
     _states   = new States(states);
     _alphabet = new Alphabet(alphabet);
 }
Exemplo n.º 2
0
 public void ParseAlphabet(string line)
 {
     _alphabet = new Alphabet(line);
 }
Exemplo n.º 3
0
 public Alphabet(Alphabet other)
 {
     AddRange(other);
 }