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