Mercurial > pub > ImplabNet
comparison Implab/Automaton/AutomatonTransition.cs @ 166:b84cdbe82e7f ref20160224
sync
author | cin |
---|---|
date | Mon, 29 Feb 2016 18:41:01 +0300 |
parents | 0526412bbb26 |
children | 8200ab154c8a |
comparison
equal
deleted
inserted
replaced
165:e227e78d72e4 | 166:b84cdbe82e7f |
---|---|
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; |
8 | 8 |
9 public AutomatonTransition(int s1, int s2, int edge) { | 9 public AutomatonTransition(int s1, int s2, int edge) { |