edge alignment

This commit is contained in:
c9s 2014-05-22 20:26:27 +08:00
parent 3cbffb645c
commit 8471f42579

View file

@ -70,13 +70,14 @@ struct _node {
}; };
struct _edge { struct _edge {
char * pattern;
int pattern_len;
/* the child node */ /* the child node */
node * child; node * child;
/* the parent node */ /* the parent node */
node * parent; node * parent;
char * pattern;
int pattern_len;
float score; float score;
bool has_slug:1; bool has_slug:1;
}; };