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

https://github.com/caneroj1/csp

Generic constraint satisfaction algorithms
https://github.com/caneroj1/csp

Last synced: about 2 months ago
JSON representation

Generic constraint satisfaction algorithms

Awesome Lists containing this project

README

        

# csp
Generic constraint satisfaction algorithms in haskell. Going through an AI textbook to learn some basic AI principles. This implements
a backtracking solver for constraint satisfaction problems. It uses Node Consistency and Arc Consistency (AC3) for preprocessing steps,
and employs the Minimum Remaining Values, Degree, and Least Constraining heuristics during the backtracking algorithm.