Click here to Skip to main content
15,889,200 members
Articles / Programming Languages / C#

Glory: A GLR Parser Generator for .NET

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
22 Feb 2020MIT20 min read 6.9K   49   3  
Glory can parse virtually anything, even natural language. Add powerful parsers to your projects. Parse languages like C# or incorporate human language parsing with your AI code.
GLR parsing is the most powerful general parsing algorithm available. It will parse ambiguous grammars and return multiple valid trees. There is no such thing as a conflict in a GLR grammar. Because of this property, it is suitable for processing natural language as well as generally ambiguous computer languages like C#.

Views

Daily Counts

Downloads

Weekly Counts

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
United States United States
Just a shiny lil monster. Casts spells in C++. Mostly harmless.

Comments and Discussions