1 17 18 package SOFA.SOFAnode.Util.DFSRChecker.state; 19 20 import java.util.LinkedList ; 21 22 26 27 public class TransitionPairs { 28 29 32 static public class IntPair { 33 public IntPair() { 34 } 35 36 public IntPair(int first, int second) { 37 this.first = first; 38 this.second = second; 39 } 40 41 public int first; 42 public int second; 43 } 44 45 49 public TransitionPairs(TransitionPair[] trans) { 50 this.transitions = trans; 51 this.deps = null; 52 } 53 54 59 public TransitionPairs(TransitionPair[] trans, LinkedList deps) { 60 this.transitions = trans; 61 this.deps = deps; 62 } 63 64 67 public TransitionPair[] transitions; 68 69 72 public LinkedList deps; 73 74 } 75 | Popular Tags |