You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the lexer is large, the bitsets will be large. However, the Earley rows are limited (currently to 200 items), so it may make more sense to use a HashSet of lexemes not bitset if the lexer is large.
Second option: put limit on size of lexer.
The text was updated successfully, but these errors were encountered:
If the lexer is large, the bitsets will be large. However, the Earley rows are limited (currently to 200 items), so it may make more sense to use a HashSet of lexemes not bitset if the lexer is large.
Second option: put limit on size of lexer.
The text was updated successfully, but these errors were encountered: