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