Mercurial > pub > ImplabNet
comparison Implab/Parsing/DFADefinition.cs @ 159:5558e43c79bb v2
minor fix
author | cin |
---|---|
date | Thu, 18 Feb 2016 16:06:14 +0300 |
parents | 130781364799 |
children | 5802131432e4 |
comparison
equal
deleted
inserted
replaced
158:130781364799 | 159:5558e43c79bb |
---|---|
254 Console.WriteLine("S{0} -{1}-> S{2}{3}", i, String.Join(",", reverseMap[c]), s.transitions[c], m_states[s.transitions[c]].final ? "$" : ""); | 254 Console.WriteLine("S{0} -{1}-> S{2}{3}", i, String.Join(",", reverseMap[c]), s.transitions[c], m_states[s.transitions[c]].final ? "$" : ""); |
255 } | 255 } |
256 } | 256 } |
257 | 257 |
258 public int AlphabetSize { | 258 public int AlphabetSize { |
259 get; | 259 get { |
260 return m_alpabetSize; | |
261 } | |
260 } | 262 } |
261 } | 263 } |
262 } | 264 } |