Esempio n. 1
0
File: RE2.cs Progetto: mjibson/junk
        private SList Startlist()
        {
            var sl = new SList();

            sl.Addstate(Start);
            return(sl);
        }
Esempio n. 2
0
File: RE2.cs Progetto: mjibson/junk
            public SList Step(char c)
            {
                var nl = new SList();

                foreach (var s in States)
                {
                    if (c == s.C)
                    {
                        nl.Addstate(s.Out);
                    }
                }

                return(nl);
            }