changeset 166:b84cdbe82e7f ref20160224

sync
author cin
date Mon, 29 Feb 2016 18:41:01 +0300
parents e227e78d72e4
children 96681e9d0cea
files Implab/Automaton/AutomatonTransition.cs Implab/Automaton/IDFATable.cs
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Implab/Automaton/AutomatonTransition.cs	Mon Feb 29 02:02:17 2016 +0300
+++ b/Implab/Automaton/AutomatonTransition.cs	Mon Feb 29 18:41:01 2016 +0300
@@ -1,7 +1,7 @@
 using System;
 
 namespace Implab.Automaton {
-    struct AutomatonTransition : IEquatable<AutomatonTransition> {
+    public struct AutomatonTransition : IEquatable<AutomatonTransition> {
         public readonly int s1;
         public readonly int s2;
         public readonly int edge;
--- a/Implab/Automaton/IDFATable.cs	Mon Feb 29 02:02:17 2016 +0300
+++ b/Implab/Automaton/IDFATable.cs	Mon Feb 29 18:41:01 2016 +0300
@@ -31,7 +31,7 @@
     ///     }
     /// }
     /// </example>
-    public interface IDFATable {
+    public interface IDFATable : IEnumerable<AutomatonTransition> {
         /// <summary>
         /// Таблица переходов состояний автомата
         /// </summary>