forked from orangeduck/mpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51faac5
commit 0e8d286
Showing
3 changed files
with
72 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
** Just Some Ideas: | ||
** | ||
** - Predictive Optimisation. Check all first character of all possible roots. If no conflict then predictive. | ||
** - Or Optimisation. Check if any terminal parses are _ored_ together. If so condence into single large range. | ||
** - Not Optimisation. Similar to the above. Convert _nots_ into positive cases by inverting full range of characters. | ||
** - Also Optimisation. Two Character parsers together can be condensed to a single string parser. | ||
** - Lookup Optimisation. Finite State Machine Parser. | ||
** - | ||
** | ||
*/ |