comparison Implab/Automaton/AutomatonTransition.cs @ 233:d6fe09f5592c v2

Improved AsyncQueue Removed ImplabFx
author cin
date Wed, 04 Oct 2017 15:44:47 +0300
parents 8200ab154c8a
children
comparison
equal deleted inserted replaced
229:5f7a3e1d32b9 233:d6fe09f5592c
1 using System; 1 using System;
2 2
3 namespace Implab.Automaton { 3 namespace Implab.Automaton {
4 public struct AutomatonTransition : IEquatable<AutomatonTransition> { 4 public class 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) {