igordejanovic / parglare

A pure Python LR/GLR parser - http://www.igordejanovic.net/parglare/
MIT License
136 stars 32 forks source link

Add flag to disable lexical disambiguation #41

Closed brunocuervo closed 5 years ago

brunocuervo commented 6 years ago

As discussed in #40, it would be useful to have a flag to disable lexical disambiguation (and maybe the scanning optimization for building the actions table here), for example to obtain all posible parses in NLP tasks with the GLR parser.

igordejanovic commented 5 years ago

Implemented via #86