From 6c5632b71c0a21843fb2e5c858e2b0dc5608323c Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 31 May 2015 06:49:52 +0200 Subject: [PATCH] * Roll back proposed change to Break transition while investigate effect --- spacy/syntax/arc_eager.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/syntax/arc_eager.pyx b/spacy/syntax/arc_eager.pyx index ef09023e3..10748408e 100644 --- a/spacy/syntax/arc_eager.pyx +++ b/spacy/syntax/arc_eager.pyx @@ -408,8 +408,8 @@ cdef inline bint _can_break(const State* s) nogil: return False elif at_eol(s): return False - elif NON_MONOTONIC: - return True + #elif NON_MONOTONIC: + # return True else: # In the Break transition paper, they have this constraint that prevents # Break if stack is disconnected. But, if we're doing non-monotonic parsing,