comparison regexParser/transition.h @ 187:ef798db705e9 pairPro

remove some warnings and errors(not working)
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Thu, 24 Dec 2015 22:38:50 +0900
parents 1da1b2eacb84
children 3e8e5780ad4a
comparison
equal deleted inserted replaced
186:3e8aae8beba9 187:ef798db705e9
1 #include "bitVector.h" 1 #include "bitVector.h"
2 2 node::StatePtr createState(BitVector bi);
3 StatePtr createState(BitVector bi); 3 node::StatePtr appendState(node::StatePtr x,node::StatePtr y);
4 StatePtr appendState(StatePtr x,StatePtr y);
5 /* 4 /*
6 正規表現木を辿って transition のList をつくる 5 正規表現木を辿って transition のList をつくる
7 CharClass のかさなりを判定して重なりのない新しいCharClassをつくる 6 CharClass のかさなりを判定して重なりのない新しいCharClassをつくる
8 重なっている状態はbitvectorのorをとる 7 重なっている状態はbitvectorのorをとる
9 重なっている状態はそれぞれの状態について木をたどる 8 重なっている状態はそれぞれの状態について木をたどる