edge alignment
This commit is contained in:
parent
3cbffb645c
commit
8471f42579
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue