# HG changeset patch # User cin # Date 2016-02-29 15:41:01 # Node ID b84cdbe82e7f4ff100b9b7feb3bbf935510866b3 # Parent e227e78d72e4f792d507444f0ce56396f5873151 sync diff --git a/Implab/Automaton/AutomatonTransition.cs b/Implab/Automaton/AutomatonTransition.cs --- a/Implab/Automaton/AutomatonTransition.cs +++ b/Implab/Automaton/AutomatonTransition.cs @@ -1,7 +1,7 @@ using System; namespace Implab.Automaton { - struct AutomatonTransition : IEquatable { + public struct AutomatonTransition : IEquatable { public readonly int s1; public readonly int s2; public readonly int edge; diff --git a/Implab/Automaton/IDFATable.cs b/Implab/Automaton/IDFATable.cs --- a/Implab/Automaton/IDFATable.cs +++ b/Implab/Automaton/IDFATable.cs @@ -31,7 +31,7 @@ namespace Implab.Automaton { /// } /// } /// - public interface IDFATable { + public interface IDFATable : IEnumerable { /// /// Таблица переходов состояний автомата ///