An open API service indexing awesome lists of open source software.

https://github.com/wadaboa/prolog-utils

Some Prolog examples, exercises and utilities
https://github.com/wadaboa/prolog-utils

clp data-structures logic-programming prolog

Last synced: 3 months ago
JSON representation

Some Prolog examples, exercises and utilities

Awesome Lists containing this project

README

        

# Prolog utilities

## Source files

* Inside `utils.pl` you can find some Prolog examples, exercises and utilities,
regarding data structures like lists, sets, queues and binary trees.
* Inside `nqueens.pl` you can find two implementations of the n-queens problem,
where the first one uses only LP principles, while the second one uses CLP predicates.
* Inside `meta.pl` you can find implementations of meta-interpreters and the use of various meta-predicates.
Also grammar parsers and Definite Clause Grammar parsers have been tested.
* Inside `event.pl` you can find a simple `Event Calculus` implementation.