views:

148

answers:

2

I've started learning about Constraint programming and I feel it is something that would work well with Haskell (also I enjoy using Haskell).

Are there any mature constraint frameworks for Haskell?

+1  A: 

You can do pure logic programing with LogicT.

There's also plenty of interfaces to SAT/SMT solvers. I wrote yices-easy in order to learn more about SMT-based constraint programming.

keegan
+1  A: 

The Monadic Constraint Programming Framework

There's a Hackage package, a paper and presentation slides.

Duncan Coutts