Fix head-outside-sentence bug. Fixes #3170

This commit is contained in:
Matthew Honnibal 2019-02-25 21:21:44 +01:00
parent f2fae1f186
commit 9ccd6a3062
1 changed files with 2 additions and 2 deletions

View File

@ -1000,8 +1000,8 @@ cdef int set_children_from_heads(TokenC* tokens, int length) except -1:
tokens[i].r_kids = 0
tokens[i].l_edge = i
tokens[i].r_edge = i
# Twice, for non-projectivity
for loop_count in range(2):
# Three times, for non-projectivity
for loop_count in range(3):
# Set left edges
for i in range(length):
child = &tokens[i]