Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,29 @@ Download Button

Notes & Tips
------------
- Grammars should be close to CNF for CYK: binary non-terminal productions or single terminal productions.
- For natural language examples, use quoted terminals to represent words.
- If a valid sentence is rejected, verify that rules are truly CNF-compatible and tokens match your terminals.
- Grammars should follow Chomsky Normal Form (CNF):
either:

A -> BC (two non-terminals), or

A -> a (single terminal)

- When using natural language, use quoted terminals for words.
- If a valid sentence is rejected, check:
- Grammar rules follow CNF
- Tokens match your terminal symbols

Contributors
-------------

Shashikant Kumar
Saloni Kumari
Divyanshi Singh
Ketan

License
-------
For educational/demo use. Replace or extend as needed for your project.