Exemplo n.º 1
0
        private void CreateDfa()
        {
            var dfa = new RegularToDfaAlgorithm(regularTree);

            this.simulation    = new DfaSimulation(dfa.Data);
            this.serialization = new DfaSerialization(dfa.Data);

            // DEBUG: Console.WriteLine(dfa);
        }
Exemplo n.º 2
0
 public ScannerGenerator(IDfaSerialization dfa)
 {
     this.dfa = dfa;
 }
        private void CreateDfa()
        {
            var dfa = new RegularToDfaAlgorithm(regularTree);
            this.simulation = new DfaSimulation(dfa.Data);
            this.serialization = new DfaSerialization(dfa.Data);

            // DEBUG: Console.WriteLine(dfa);
        }
Exemplo n.º 4
0
 public ScannerGenerator(IDfaSerialization dfa)
 {
     this.dfa = dfa;
 }