| @@ -1,7 +1,7 | |||||
| 1 | using System; |  | 1 | using System; | |
| 2 |  | 2 | |||
| 3 | namespace Implab.Automaton { |  | 3 | namespace Implab.Automaton { | |
| 4 | struct AutomatonTransition : IEquatable<AutomatonTransition> { |  | 4 | public struct AutomatonTransition : IEquatable<AutomatonTransition> { | |
| 5 | public readonly int s1; |  | 5 | public readonly int s1; | |
| 6 | public readonly int s2; |  | 6 | public readonly int s2; | |
| 7 | public readonly int edge; |  | 7 | public readonly int edge; | |
| @@ -31,7 +31,7 namespace Implab.Automaton { | |||||
| 31 | /// } |  | 31 | /// } | |
| 32 | /// } |  | 32 | /// } | |
| 33 | /// </example> |  | 33 | /// </example> | |
| 34 | public interface IDFATable { |  | 34 | public interface IDFATable : IEnumerable<AutomatonTransition> { | |
| 35 | /// <summary> |  | 35 | /// <summary> | |
| 36 | /// Таблица переходов состояний автомата |  | 36 | /// Таблица переходов состояний автомата | |
| 37 | /// </summary> |  | 37 | /// </summary> | |
        
        General Comments 0
    
    
  
  
                      You need to be logged in to leave comments.
                      Login now
                    
                