toy-datalog/CHANGELOG.md
Cale Gibbard c09e07042b Fix parsing of constants (no longer allow empty string or uppercase start).
Add a parser for conjunctive queries.
Add some prettyprinters for the syntax.
2026-01-22 13:36:54 -05:00

8 lines
444 B
Markdown

# Revision history for toy-datalog
## unreleased
* We have a basic parser and a very naive evaluator for datalog programs that can extend a database with all the facts which are immediate
consequences of the rules and the current (initially empty) relations, which can be iterated to a fixed point to produce all consequences.
* Added some prettyprinters and a separate parser for conjunctive queries which we needed for the web frontend.