diff c/regexParser/subsetConstraction.h @ 140:84a2a5209d3a pairPro

change some variable name
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Wed, 09 Dec 2015 19:57:22 +0900
parents 6c258910cacb
children 71f36a59cf6a
line wrap: on
line diff
--- a/c/regexParser/subsetConstraction.h	Mon Dec 07 02:20:13 2015 +0900
+++ b/c/regexParser/subsetConstraction.h	Wed Dec 09 19:57:22 2015 +0900
@@ -1,13 +1,13 @@
 #include "transition.h"
 
 typedef struct transitionGenerator {
-    TransitionPtr t;
-    StatePtr state;
+    TransitionPtr ts;
+    BitVectorPtr state;
     long stateMax;
 } TransitionGenerator, *TransitionGeneratorPtr;
 
 typedef struct tgValue {
-    TransitionPtr t;
+    TransitionPtr ts;
     bool asterisk;
 } TGValue, *TGValuePtr;