top | item 8395079

MiniKanren – An embedded DSL for logic programming

85 points| michaelsbradley | 11 years ago |minikanren.org

22 comments

order
[+] asolove|11 years ago|reply
After you learn to write miniKanren programs, you'll want to know how it works. The original miniKanren implementation combines the core of the logic processing with some crazy Scheme macrology for building a nice syntax. I spent several days puzzling through the back page of "The Reasoned Schemer" without really getting it.

Luckily, you can now read the microKanren paper (http://webyrd.net/scheme-2013/papers/HemannMuKanren2013.pdf) which breaks apart the "core" portion of the logic processing into a purely-functional bit, separate from the macros for the nice syntax.

That little core can be implemented very easily in almost any language with closures. For some fun, I implemented it in JavaScript using some sweet.js macros on top. It took about an hour to get something working, and a day or two to fix more bugs, and now I understand how kanren works. Plus I added some tracing in so I can see how different steps in the program cause the logic variables to get bound: http://adamsolove.com/microScopeKanren/

Definitely worth the time if you're interested in relational programming.

[+] jgalt212|11 years ago|reply
What's the best use case for these sort of languages? My guess is rule-based expert systems, but I'd love to hear what the crowd suggests as well.
[+] sklogic|11 years ago|reply
This kind of languages is extremely useful, since many problems maps nicely to a logical or relational model.

I'm using a PAIP-style embedded Prolog and an optimised Datalog for fast prototyping compiler passes - things like alias analysis, implementing type systems (e.g., Hindley-Milner maps to Prolog naturally), constant folding, DCE, Array-SSA, and many more.

Harlan is using cKanren for region inference and some other passes.

A nice motivational paper (on Datalog): http://www.cs.cmu.edu/~aldrich/courses/654/tools/bierhoff-bd...

[+] MisterMashable|11 years ago|reply
Minikanren is featured in a follow up to 'Seven Programming Languages in 7 Weeks' by Manning Pubs. 'Seven More Programming Languages in Seven Weeks'. I think Elixir and Julia are also going to be included in the book. Anyway, if anyone here is into Manning books there's a MiniKanren chapter to look forward to. Disclaimer?!: I do not work for Manning. Just a reader.
[+] daveloyall|11 years ago|reply
I'd never considered the possibility of DSLs being implemented in more than one host language.

And now, I'm glad I have.

[+] e12e|11 years ago|reply
Integer math and regular expressions come to mind... ;)
[+] Quequau|11 years ago|reply
Why do they call it "Mini"?
[+] whitten|11 years ago|reply
Is there a standard syntax for Kanren or is it a standard set of Kanren specific functionality ?
[+] yepguy|11 years ago|reply
There's no standard syntax. It's supposed to be embeddable into existing programming languages, using the normal syntax for that language.