We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From #371 (comment)
The legacy single-quoted symbols like ('null_coord_rel) are only being parsed with a single letter:
'null_coord_rel
>>> m = simplemrs.decode("[RELS: < [ 'null_coord_rel LBL: h0 ARG0: e2 ] >]") [...] delphin.mrs._exceptions.MRSSyntaxError: line 1, character 13 [RELS: < [ 'null_coord_rel LBL: h0 ARG0: e2 ] >] ^ MRSSyntaxError: expected: a feature >>> m = simplemrs.decode("[RELS: < [ 'n LBL: h0 ARG0: e2 ] >]") >>> m.rels[0].predicate 'n'
The text was updated successfully, but these errors were encountered:
Fix #373 capture single-quoted predicates > 1 char
e9a2a9c
ec01639
No branches or pull requests
From #371 (comment)
The legacy single-quoted symbols like (
'null_coord_rel
) are only being parsed with a single letter:The text was updated successfully, but these errors were encountered: