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 {
char * pattern;
int pattern_len;
/* the child node */
node * child;
/* the parent node */
node * parent;
char * pattern;
int pattern_len;
float score;
bool has_slug:1;
};