07 July 2012

I’ve been “hammock-reading” the excellent Reasoned Schemer book the last couple of months, on my quest trying to develop a gut feel for when logic programming, as defined by miniKanren/core.logic, is applicable.

My first attempt is to apply it to a problem where (as it turns out) miniKanren isn’t a good fit, n-queens. What you really need for this, in logical programming world, for this problem is something called contraint logic programming (CLP) which is implemented (for example) in cKanren. The good people over at core.logic are working on integrating CLP and cKanren in core.logic in version 0.8, so I intend to revisit this problem as that work progresses.

Let’s have a crack at this problem anyway shall we? I’ve previously posted a functional implementation on n-queens in Clojure, and it’s both nice to read and fast. What would this look like using core.logic?

Here’s the core function (in Clojure) which determines if 2 queens are threatening each other. The main problem in core.logic is the subtraction operator, which cannot be applied to fresh variables. We need a goal that has all the subtraction algebra “mapped out” as associations, let’s call it subo. If we had that, our safeo function could look like this; With subo (for a (range 2) subtraction) like this; Fortunately this isn’t too bad, since in the classic case we only need to subtract numbers in (range 8). We can write a macro that generates a subo for any range our heart desires.

Next up the associations for queen pieces. We can brute force this as well by writing safeo associations for each queen piece against each other and finally constraining each queen to a unique row. Typing it out for 4-queens would look something like this; Please note that the y variables doesn’t have to be fresh since they can only take one value (each queen is determined by an unique y variable).

Here’s a complete listing to the whole thing, with an example of a 7-queens run; So how does it perform? Well, you guessed it, terribly. My previous functional Clojure implementation finds all 4 solutions for 6-queens in ~7ms. The core.logic one above does it in ~6.5 seconds, 3 orders of magnitude, ouch!

It’s quite possible that this brute force approach is a very inefficient way of solving n-queens using miniKanren. Maybe building / removing queens from solution lists are a better approach? Also, cKanren in core.logic promises much faster and cleaner solutions. Either way, I’ll keep you posted…


Categories

Tags

Share this post


blog comments powered by Disqus