From 1884a7a0bed80cbc210c0e2d78e5d5eb67b60bb1 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 28 Jan 2015 03:18:43 +1100 Subject: [PATCH] * Attach comment with paper --- spacy/syntax/arc_eager.pyx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spacy/syntax/arc_eager.pyx b/spacy/syntax/arc_eager.pyx index 55c20eb33..78c26d22a 100644 --- a/spacy/syntax/arc_eager.pyx +++ b/spacy/syntax/arc_eager.pyx @@ -22,6 +22,9 @@ cdef enum: BREAK_RIGHT N_MOVES +# Break transition from here +# http://www.aclweb.org/anthology/P13-1074 + cdef inline bint _can_shift(const State* s) nogil: return not at_eol(s)