This works:
p -lang=Ace "John asks Mary and asks Mary ."
This does not work:
p -lang=Ace "John asks Mary and asks Mary and asks Mary ."
The exhaustive test did not find this problem because the AceWiki Codeco testset contains sentences of max length 8 tokens.
$ cat sentences.txt | sed 's/ *$//' | sed "s/ /|/g" | sed "s/[^|]//g" | sort | uniq -c | sort -nr
15254 |||||||
3158 ||||||
740 |||||
223 ||||
46 |||
1 ||
This works:
This does not work:
The exhaustive test did not find this problem because the AceWiki Codeco testset contains sentences of max length 8 tokens.