forked from miniKanren/miniKanren_org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1498 lines (884 loc) · 72.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>miniKanren.org</title>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
<style>
.container-fluid {
margin: 0 auto;
max-width: 960px;
}
</style>
</head>
<body>
<a href="https://github.com/miniKanren"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<div class="container-fluid">
<div class="hero-unit">
<h1><a href="./index.html">miniKanren.org</a></h1>
Twitter: <a href="https://twitter.com/miniKanren" target="_blank">@miniKanren</a> Github: <a href="https://github.com/minikanren" target="_blank">@miniKanren</a> Google Group: <a href="https://groups.google.com/forum/?fromgroups=#!forum/minikanren" target="_blank">miniKanren</a> IRC: irc.freenode.net, #minikanren<br>
<a href="https://twitter.com/miniKanren" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @miniKanren</a><br><br>
<!-- Next Google Hangout on Air: Sunday, August 4, 2013, 4-6pm EDT. (URL to be posted at beginning of hangout)<!-- <a href="https://plus.google.com/hangouts/_/0bad604b57022199331a5a601862971460a57ca3">URL</a>-->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<a href="#workshop">Workshop</a> |
<a href="#trs">Book</a> |
<a href="#onlineCourse">Online Course</a> |
<a href="#implementations">Implementations</a> |
<a href="#projects">Projects</a> |
<a href="#upcomingTalks">Upcoming Talks</a> |
<a href="#talks">Talks</a> |
<a href="#interviews">Interviews</a> |
<a href="#writtenTutorials">Tutorials</a> |
<a href="#theses">Theses</a> |
<a href="#papers">Papers</a> |
<a href="#screencasts">Screencasts</a> |
<a href="#hangouts">Weekly Hangouts</a> |
<a href="#podcasts">Podcasts</a> |
<a href="#blogs">Blogs</a> |
<a href="#contact">Contact</a>
<br /><br />
<h2>What is miniKanren?</h2>
miniKanren is an embedded Domain Specific Language for logic programming.<br /><br />
The core miniKanren language is very simple, with only three logical operators and one interface operator.<br />
The core language, using Scheme as the host language, is described in this <a href="http://io.livecode.ch/learn/webyrd/webmk">short, interactive tutorial</a>.<br /><br />
miniKanren has been implemented in a growing number of <a href="#implementations">host languages</a>, including Scheme, Racket, Clojure,<br /> Haskell, Python, JavaScript, Scala, Ruby, OCaml, and PHP, among many other languages.<br /><br />
miniKanren is designed to be easily modified and extended; extensions include Constraint Logic Programming,<br />
probabilistic logic programming, nominal logic programming, and tabling.<br /><br />
A detailed discussion of the differences between miniKanren and Prolog <a href="minikanren-and-prolog.html">can be found here</a>.<br /><br />
<a name="workshop"></a>
<h2>Second miniKanren and Relational Programming Workshop</h2>
The <a href="https://icfp20.sigplan.org/home/minikanren-2020">Second miniKanren and Relational Programming Workshop</a> will be held <strong>virtually</strong>, (virtually) co-located with the International Conference on Functional Programming (ICFP).<br /><br />
<a href="https://icfp20.sigplan.org/home/minikanren-2020#Call-for-Papers">Call for papers</a><br /><br />
<h4> Older Meetings and Workshops </h4>
<ul>
<li> <a href="https://icfp19.sigplan.org/home/minikanren-2019">First miniKanren workshop</a> at ICFP 2019 <a href="https://icfp19.sigplan.org/home/minikanren-2019#event-overview">(Accepted papers)</a></li>
<li> <a href="#clojure-west">miniKanren confo</a> at Clojure/West 2013</li>
</ul>
<br />
<a name="trs"></a>
<h2>The Book</h2>
<a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a>, <a href="http://webyrd.net">William E. Byrd</a>, <a href="http://okmij.org/ftp/">Oleg Kiselyov</a>, and <a href="http://hemann.pl/">Jason Hemann</a><br />
<a href="https://mitpress.mit.edu/books/reasoned-schemer-second-edition"><i>The Reasoned Schemer, Second Edition</i></a><br />
The MIT Press, Cambridge, MA, 2018<br /><br />
<a href="https://github.com/TheReasonedSchemer2ndEd/CodeFromTheReasonedSchemer2ndEd">Source code from the book</a><br /><br />
<a href="https://mitpress.mit.edu/books/reasoned-schemer-second-edition"><img src="trs2.png" alt="The Reasoned Schemer, Second Edition front cover" width="300"> </a>
<br /><br />
<a name="onlineCourse"></a>
<h2>miniKanren Online Uncourse (via Hangouts on Air)</h2>
<a href="http://webyrd.net">Will Byrd</a> has organized several weekly miniKanren uncourses. Participants show off miniKanren projects, talk about miniKanren implementation, and do live coding/live research. A link to each week's hangout is posted to the <a href="https://groups.google.com/forum/#!forum/minikanren-uncourse">miniKanren uncourse mailing list</a>.<br /><br />
<a href="https://www.youtube.com/playlist?list=PLO4TbomOdn2cks2n5PvifialL8kQwt0aW">Recordings of previous uncourse hangouts.</a>
<br /><br />
<a name="implementations"></a>
<h2>Implementations</h2>
<h3>Scheme</h3>
<a href="https://github.com/webyrd/miniKanren-with-symbolic-constraints">miniKanren-with-symbolic-constraints</a><br />
miniKanren with extensions for symbolic constraint solving. Includes compatibility files for Racket and various Scheme implementations.<br /><br />
<a href="https://github.com/nathanielrb/ftmicroKanren"> microKanren with temporal logic programming</a><br />
Related to <a href="https://github.com/nathanielrb/tmicroKanren"> an earlier, similar implementation</a><br />
<!-- <a href="https://github.com/miniKanren/miniKanren">miniKanren</a><br /><br /> -->
<a href="https://github.com/jasonhemann/microKanren">microKanren</a><br />
A minimal miniKanren implementation, as described in the <a href="#microKanrenPaper">2013 Scheme Workshop paper</a><br /><br />
<a href="https://github.com/cbrooks90/martelli-montanari"> microKanren implementation using Martelli-Montanari unification algorithm</a><br /><br />
<a href="https://github.com/jasonhemann/microKanren-DLS-16">microKanren w/simple complete search</a><br />
A modified/improved microKanren implementation, as described in the <a href="https://dl.acm.org/citation.cfm?doid=2989225.2989230">2016 DLS paper</a>.<br /><br />
<a href="https://github.com/webyrd/alphaKanren">alphaKanren</a><br />
miniKanren extended with nominal logic programming, as described in the <a href="#alphaKanrenPaper">2007 Scheme Workshop paper</a>.<br /><br />
<a href="https://github.com/webyrd/probKanren">probKanren</a><br />
Research prototype of miniKanren with probabilistic inference.<br /><br />
<a href="https://github.com/ThatGeoGuy/chicken-miniKanren">chicken-miniKanren</a><br />
miniKanren implementation for chicken scheme<br /><br />
<a href="https://github.com/orchid-hybrid/microKanren-sagittarius">microKanren-sagittarius</a><br />
miniKanren implementation for R7RS sagittarius scheme 0.6.0 based on (microKanren) with the <code>=/=</code> operation added.<br /><br />
<a href="https://github.com/cgswords/rkanren">rKanren</a><br />
miniKanren with guided search, as described in the <a href="#rKanrenPaper">2013 Scheme Workshop paper</a>.<br /><br />
<a href="http://c-lambda.se/guile-log/minikanren.html#minikanren">miniKanren</a> in <a href="http://c-lambda.se/guile-log/">guile-log</a>, a <a href="https://www.gnu.org/software/guile/">Guile Scheme</a> library.<br /><br />
<a href="https://github.com/donaldsonjw/bkanren">bkanren</a><br />
miniKanren with constraint extensions that runs under <a href="http://www-sop.inria.fr/mimosa/fp/Bigloo/">Bigloo Scheme</a>.<br />
Fork: <a href="https://github.com/kourzanov/bkanren">bkanren</a><br /><br />
<a href="https://github.com/namin/clpsmt-miniKanren">CLP(SMT) miniKanren</a><br /><br />
<a href="https://github.com/namin/staged-miniKanren">staged miniKanren</a><br />
explorations of multi-stage logic programming in miniKanren<br /><br />
<a href="https://github.com/lackhoa/staticKanren">Static Kanren</a><br />
A variant of miniKanren which returns better answers<br /><br />
<a href="https://github.com/zhjhxxxjh/ykanren">ykanren</a><br /><br />
<!--
<a href="https://github.com/calvis/cKanren">cKanren</a><br />
miniKanren extended with Constraint Logic Programming (CLP), as
described in the <a href="#cKanrenPaper">2011 Scheme Workshop paper</a>.<br /><br />
-->
<a href="https://github.com/cbrooks90/semiKanren">semiKanren</a><br />
Logic programming using semiunification for R-ASUP instances<br /><br />
<a href="https://github.com/webyrd/slpKanren">slpKanren</a><br />
Stochastic Logic Programs (SLP) style probabilistic logic programming in miniKanren. (Deprecated--please see <a href="https://github.com/webyrd/probKanren">probKanren</a> instead.)<br /><br />
<a href="http://okmij.org/ftp/Scheme/sokuza-kanren.scm">sokuza-kanren</a><br />
<a href="http://okmij.org/ftp/">Oleg Kiselyov</a>'s minimal implementation of logic programming.
<h3>Racket</h3>
<a href="https://github.com/webyrd/miniKanren-with-symbolic-constraints">miniKanren-with-symbolic-constraints</a><br />
miniKanren with extensions for symbolic constraint solving. Includes compatibility files for Racket and various Scheme implementations.<br /><br />
<a href="https://github.com/calvis/cKanren">cKanren</a><br />
miniKanren extended with Constraint Logic Programming (CLP); an improved version of the
system described in the <a href="#cKanrenPaper">2011 Scheme Workshop paper</a>.<br /><br />
<a href="https://github.com/miniKanren/Racket-miniKanren">Racket-miniKanren</a><br />
vanilla miniKanren Racket port<br /><br />
<a href="https://github.com/niitsuma/Racket-miniKanren/tree/recursive">recursive miniKanren</a><br />
recursive miniKanren implementation in Racket.<br /><br />
<a href="https://github.com/zaoqi/zKanren">zKanren</a><br />
cKanren with fair conjunction<br /><br />
<a href="https://github.com/rntz/minikanren-datalog">Datalog in miniKanren</a><br /><br />
<a href="https://github.com/aqui18/racket-qkanren">racket qkanren</a><br /><br />
<a href="https://github.com/mvcccccc/alphaKanren-revisited">alphaKanren revisited</a><br /><br />
<a href="https://github.com/gregr/dbKanren">dbKanren</a>
<h3>Clojure</h3>
<a href="https://github.com/clojure/core.logic">core.logic</a><br />
(<a href="https://rawgithub.com/dedeibel/clojure-core-logic-cheatsheets/master/out/cheatsheet-use-title-attribute-no-cdocs-summary.html">core.logic cheatsheet</a>, courtesy of <a href="http://myminutes.wordpress.com/2013/07/17/clojure-core-logic-cheatsheets/">Benjamin Peter</a>)<br />
<a href="https://github.com/mullr/micrologic"></a><br />
A literate Clojure implementation of microKanren.<br />
<a href="http://mullr.github.io/micrologic/literate.html">Annotated source code.</a><br /><br />
<a href="https://github.com/halgari/async-mu-kanren">async-mu-kanren</a><br />
Proof-of-concept implementation of muKanren using CSP (core.async)<br /><br />
<a href="https://github.com/azarafrooz/rank-Kanren">rank Kanren</a><br />
rKanren extension of core.logic<br /><br />
<a href="https://web.archive.org/web/20180617160703/https://github.com/fogus/eleusis">Eleusis</a><br /><br />
<a href="https://github.com/blueninj0r/maikurokanren">maikurokanren</a>
<br /><br />
<h3>Assorted Languages</h3>
<a href="https://github.com/bodil/microkanrens">Implementations of microKanren in assorted languages</a>
<h3>C#</h3>
<a href="https://github.com/wallymathieu/csharp_ukanren">csharp_ukanren</a><br /><br />
<a href="https://github.com/VPetukhov/miniKanren">miniKanren</a><br /><br />
<a href="https://github.com/verophyle/cslogic">cslogic</a><br /><br />
<a href="https://github.com/yuretz/kanrenmo/tree/master/kanrenmo">kanrenmo</a><br /><br />
<a href="https://github.com/waf/Logic">Logic</a><br /><br />
<a href="https://github.com/naasking/uKanren.NET">uKanren.NET</a><br />
Described <a href="https://higherlogics.blogspot.com/2015/02/kanrennet-featherweight-relational.html">here</a> in prose.<br /><br />
<a href="https://github.com/sKabYY/NMiniKanren">NMiniKanren</a>
<h3>CoffeeScript</h3>
<a href="https://github.com/fogus/friebyrd">Friebyrd</a>
<h3>Common Lisp</h3>
<a href="https://common-lisp.net/project/cl-kanren-trs/">cl-kanren-trs</a><br /><br />
<a href="https://github.com/blasut/cl-microkanren">cl-microkanrens</a><br /><br />
<a href="https://github.com/guitarvydas/mini-kanren">mini-kanren</a><br /><br />
<a href="https://github.com/daveduthie/mu-kanren">mu-kanren</a><br /><br />
<a href="https://github.com/deliciousrobots/kanren-fset">Kanren-Fset</a> (Fset collection library support for cl-kanren-trs)
<h3>Coq</h3>
<a href="https://github.com/dboulytchev/miniKanren-coq">miniKanren-coq</a>
<h3>Crystal</h3>
<a href="https://github.com/jemc/crystal-kanren">crystal-kanren</a>
<h3>Dart</h3>
<a href="https://github.com/hkoktay/dmicrokanren">dmicrokanren</a><br /><br />
<a href="https://github.com/shd101wyy/logic.dart">logic.dart</a>
<h3>Dylan</h3>
<a href="https://github.com/tca/miniKanren-Dylan">miniKanren-Dylan</a>
<h3>Elixir</h3>
<a href="https://github.com/lyons/ExKanren">ExKanren</a><br /><br />
<a href="https://github.com/xieyuheng/exo">exo</a>
<h3>Elm</h3>
<a href="https://github.com/tapeinosyne/elm-microkanren">elm-microKanren</a><br /><br />
<a href="https://github.com/ndr-qef/elm-microKanren">Another elm-microKanren</a><br /><br />
<a href="https://github.com/dvberkel/microKanren">microKanren</a><br />
<a href="https://dvberkel.github.io/microKanren/">Project homepage</a> for this Elm implementation of the uKanren language.
<h3>Emacs Lisp</h3>
<a href="https://github.com/nickdrozd/reazon">Reazon</a>
<h3>Erlang</h3>
<a href="https://github.com/zkessin/erlKanren">erlKanren</a><br /><br />
<a href="https://github.com/bodil/lolkanren/blob/master/kanren.erl">lolkanren_erlang</a><br /><br />
<a href="https://github.com/voila/mukanren">mukanren</a>
<h3>Extempore</h3>
<a href="https://github.com/jasonhemann/microKanren-extempore">mini-over-micro-extempore</a>
<h3>F#</h3>
<a href="https://github.com/palladin/logic">logic</a><br />
A logic programming library for F#<br /><br />
<a href="https://github.com/kurtschelfthout/MiniKanren">MiniKanren</a><br />
An attempted implementation of MiniKanren in F#.
<h3>Go</h3>
<a href="https://github.com/hiredman/gologic">gologic</a><br /><br />
<a href="https://github.com/awalterschulze/gominikanren">gominikanren</a><br /><br />
<a href="https://github.com/elliotdavies/ukanren-go">ukanren-go</a><br /><br />
<a href="https://github.com/GoLangsam/kanren">kanren</a><br>
<h3>Groovy</h3>
<a href="https://github.com/timyates/groovy-logic">groovy-logic</a>
<h3>Haskell</h3>
<a href="https://github.com/jcoglan/kanrens/tree/master/haskell">kanrens</a><br /><br />
<a href="https://github.com/acfoltzer/Molog">Molog</a><br /><br />
<a href="https://github.com/JaimieMurdock/HK">HaskellKanren (HK)</a><br /><br />
<a href="https://github.com/jvranish/MiniKanrenT">MiniKanrenT</a><br /><br />
<a href="https://github.com/Oregu/featherweight">featherweight</a><br /><br />
<a href="https://github.com/iomeone/hKanren">hKanren</a><br /><br />
<a href="https://github.com/sergv/hkanren">HKanren</a><br /><br />
<a href="https://github.com/justinmimbs/microkanren">Haskell microKanren with miniKanren extensions</a><br /><br />
<a href="https://github.com/kyagrd/houkanren">HOuKanren</a><br />
A twist to uKanren to support Higher-Order Relational Programming.<br /><br />
<a href="https://github.com/pbevin/khanren">Khaaaaaaanren!</a><br /><br />
<a href="https://bitbucket.org/jozefg/ds-kanren">DS-Kanren</a><br />
An <a href="https://github.com/composewell/ds-kanren">alternative version</a> adapted to use Streamly<br />
An <a href="https://github.com/overminder/hs-mini-kanren">adaptation</a> written as a Haskell EDSL<br /><br />
<a href="https://gist.github.com/msullivan/4223fd47991acbe045ec#file-microkanren-hs">MicroKanren.hs</a><br /><br />
<a href="https://github.com/fsestini/mu-kanren">mu-kanren</a><br /><br />
<a href="https://github.com/rntz/ukanren">ukanren</a><br /><br />
<a href="https://github.com/seantalts/hasktrip/blob/master/doc/MicroKanren.md">MicroKanren.lhs</a><br /><br />
<a href="https://github.com/JeffreyBenjaminBrown/micro-kanren/">micro-kanren</a><br /><br />
<a href="https://github.com/sndtkrh/haskanren">hasKanren</a><br /><br />
<a href="https://github.com/dramforever/haskell-stuff/blob/master/negation-kanren.hs">negation kanren</a><br /><br />
<a href="https://github.com/iomeone/hKanren">hKanren</a>
<h3>HOL Light</h3>
<a href="https://github.com/massimo-nocentini/kanren-light">kanren-light</a>
<h3>Hy</h3>
<a href="https://github.com/brandonwillard/hypoKanren">HypoKanren</a><br /><br />
<a href="https://github.com/mudphone/Hywaii">Hywaii</a><br /><br />
<a href="https://github.com/algernon/adderall">Adderall</a>
<h3>Idris</h3>
<a href="https://github.com/joom/idris-microKanren">idris microKanren</a><br /><br />
<a href="https://github.com/mullr/ikanren">ikanren</a><br /><br />
<a href="https://github.com/jmitchell/microKandris">microKandris</a>
<h3>J</h3>
<a href="https://github.com/Rscho314/mk">Microkanren in J</a><br />
Supersedes an <a href="https://github.com/Rscho314/new_kanren">older version</a>.
<h3>Java</h3>
<a href="https://github.com/nd/mk.java">mk.java</a><br />
microKanren in Java.<br /><br />
<a href="https://github.com/free-variation/archelogic"> Archelogic </a><br /><br />
<a href="https://github.com/heidisu/java8kanren">java8kanren</a><br />
miniKanren in Java 8.<br /><br />
<a href="https://github.com/mmaroti/minikanren">Java miniKanren</a>
<h3>JavaScript</h3>
<a href="http://tca.github.io/veneer/editor.html">veneer</a><br />
Browser based miniKanren editor and REPL, with constraints.<br />
<a href="https://github.com/tca/veneer">GitHub repo</a><br /><br />
<a href="https://github.com/asolove/microScopeKanren">microScopeKanren</a><br />
A JavaScript implementation of microKanren with a focus on inspecting programs as they run.<br />
<a href="http://www.adamsolove.com/microScopeKanren/">Example, vizualizing <code>appendo</code></a><br /><br />
<a href="http://functorial.com/mu-kanren/">mu-kanren</a><br />
A step-by-step MicroKanren evaluator.<br />
<a href="https://github.com/functorial/mu-kanren">GitHub repo</a><br /><br />
<a href="https://github.com/jcoglan/kanrens/tree/master/es6">Kanrens</a><br /><br />
<a href="https://github.com/joshcox/microJSKanren">microJSKanren</a><br /><br />
<a href="https://github.com/bodil/lolkanren">lolkanren</a><br /><br />
<a href="https://github.com/stanistan/jolic">jolic</a><br /><br />
<a href="https://github.com/keyz/node-kanren">node-kanren</a><br /><br />
<a href="https://github.com/keyz/microkanren-js">microKanren JS</a><br /><br />
<a href="https://github.com/zaach/ukanren.js">uKanren</a><br /><br />
<a href="https://github.com/willkurt/microKanren.js">microKanren</a><br /><br />
<a href="https://github.com/cduret/mk.js">mk.js</a><br /><br />
<a href="https://github.com/wjlewis/ramo">ramo</a><br /><br />
<a href="https://github.com/ramda/ramda-logic">ramda-logic</a><br /><br />
<a href="https://github.com/RyanGough/reason.js">reason.js</a><br /><br />
<a href="https://github.com/shd101wyy/logic.js">logic.js</a><br /><br />
<a href="https://github.com/buzzdecafe/rlg">rlg</a><br /><br />
<a href="https://github.com/sebug/SebuKanren">SebuKanren</a>
<h3>Julia</h3>
<a href="https://github.com/latticetower/MuKanren.jl">MuKanren.jl</a><br /><br />
<a href="https://github.com/habemus-papadum/LilKanren.jl">Lil Kanren</a><br /><br />
<a href="https://github.com/RAbraham/MiniKanren">MiniKanren</a>
<h3>Kotlin</h3>
<a href="https://github.com/neilgall/KotlinKanren">KotlinKanren</a><br /><br />
<a href="https://github.com/veyndan/kanren">kanren</a>
<h3>Lisp Flavored Erlang</h3>
<a href="https://github.com/pzel/mkr">mkr</a>
<h3>Lua</h3>
<a href="https://github.com/silentbicycle/lua-ukanren">lua-ukanren</a><br /><br />
<a href="https://github.com/handsomecheung/miniKanren.lua">miniKanren.lua</a>
<h3>Mímir experimental rules engine</h3>
<a href="https://github.com/hraberg/mimir/blob/master/src/mimir/mk.clj">mímirKanren</a>
<h3>miniKanren</h3>
<a href="https://github.com/jasonhemann/micro-in-mini">micro-in-mini</a><br /><br />
<a href="https://github.com/jpt4/muko">muko</a>
<h3>ML</h3>
<a href="https://github.com/eupp/LatticeKanren">LatticeKanren</a><br /><br />
<a href="https://github.com/chrisamaphone/ml-mukanren">ml-mukanren</a><br /><br />
<a href="https://github.com/KoviRobi/microKanren-SML">microKanren-SML</a><br /><br />
<a href="https://github.com/jozefg/sml-kanren">sml-kanren</a>
<h3>Moxie</h3>
<a href="https://github.com/rntz/moxy/blob/master/kanren.mox">kanren.mox</a>
<h3>Nu</h3>
<a href="https://github.com/finnsson/minikanren-nu">minikanren-nu</a>
<h3>OCaml</h3>
<a href="https://github.com/dboulytchev/OCanren">OCanren</a><br />
Statically typed embedding of miniKanren into Objective Caml.<br /><br />
<a href="https://github.com/lightyang/minikanren-ocaml">minikanren-ocaml</a><br /><br />
<a href="https://github.com/StrykerKKD/Logical">Logical</a>
<h3>Perl</h3>
<a href="https://github.com/alinbsp/Perl-miniKanren">Perl-miniKanren</a>
<h3>PHP</h3>
<a href="https://github.com/igorw/reasoned-php">reasoned-php</a><br /><br />
<a href="https://github.com/mudge/php-microkanren">php-microKanren</a>
<h3>Pony</h3>
<a href="https://github.com/jtfmumm/pony-logic">pony-logic</a><br />
Related to an earlier project <a href="https://github.com/jtfmumm/microkanren-pony">microKanren-pony</a><br /><br />
<a href="https://github.com/kulibali/pony-kanren">pony-kanren</a>
<h3>Prolog</h3>
<a href="https://github.com/mndrix/microkanren-prolog">microkanren-prolog</a><br />
A Prolog implementation of microKanren.
<h3>Python</h3>
<a href="https://github.com/jcoglan/kanrens/tree/master/python">kanrens</a><br /><br />
<a href="https://github.com/jtauber/pykanren">pykanren</a><br /><br />
<a href="https://github.com/darius/pythological">pythological</a><br /><br />
<a href="https://github.com/logpy/logpy">LogPy</a><br /><br />
<a href="https://github.com/massimo-nocentini/microkanrenpy">microkanrenpy</a><br /><br />
<a href="https://github.com/zaxtax/microKanren">microKanren</a><br /><br />
<a href="https://github.com/ethframe/microkanren">Another microkanren</a><br /><br />
<a href="https://gist.github.com/cheery/d89bfb4c8d6c7a3eb908">microkanren.py</a>
<h3>Pure</h3>
<a href="https://github.com/bodil/microkanrens/blob/master/mk.pure">pure</a>
<h3>Reason</h3>
<a href="https://github.com/robotlolita/tinykaren">Tiny Karen</a>
<h3>Ruby</h3>
<a href="https://github.com/spariev/mini_kanren">mini_kanren</a><br /><br />
<a href="https://github.com/jsl/ruby_ukanren">micro_kanren</a><br /><br />
<a href="https://github.com/levthedev/miniKanren">miniKanren</a><br /><br />
<a href="http://scottdial.com/projects/minikanren.rb">MiniKanren</a><br /><br />
<a href="https://github.com/tomstuart/kanren">kanren</a><br />
A Ruby implementation to accompany <a href="http://codon.com/hello-declarative-world">Hello, declarative world</a><br /><br />
<a href="https://github.com/famished-tiger/mini_kraken/">mini_kraken</a>
<h3>Rust</h3>
<a href="https://github.com/wartman4404/rust-kanren">rust-kanren</a><br /><br />
<a href="https://github.com/ethframe/rskanren">rskanren</a><br /><br />
<a href="https://github.com/xieyuheng/cicada-rs/tree/master/kanren">kanren</a><br /><br />
<a href="https://github.com/nystrom/mu-kanren">mu-kanren</a><br /><br />
<a href="https://github.com/psl8/tributary">Tributary</a><br /><br />
<a href="https://github.com/aslpavel/ukanren-rs-example">Very simple uKanren implementation</a><br /><br />
<a href="https://git.witchoflight.com/mukan">mukan</a><br /><br />
<a href="https://github.com/mbillingr/miniKANREN">miniKANREN</a><br /><br />
<a href="https://github.com/tgecho/canrun_rs">Canrun</a><br />
A Rust implementation described in <a href="https://esimmler.com/announcing-canrun/">Announcing Canrun</a>
<h3>Scala</h3>
<a href="https://github.com/namin/scalogno">scalogno</a><br /><br />
<a href="https://github.com/michel-slm/minikanren-scala">minikanren-scala</a><br /><br />
<a href="https://github.com/hircus/minikanren-scala">minikanren-scala</a><br /><br />
<a href="https://github.com/jsyeo/mukanren">mukanren</a><br /><br />
<a href="https://github.com/clayrat/kanren">kanren (Sokuza-kanren in Scala)</a>
<h3>Shen</h3>
<a href="https://github.com/jasonhemann/microKanren-shen">microKanren-shen</a><br /><br />
<a href="https://github.com/mthom/shen-minikanren">shen-minikanren</a>
<h3>Smalltalk</h3>
<a href="https://github.com/adolfopa/microkanren-pharo">microkanren-pharo</a><br />
<a href="http://smalltalkhub.com/#!/~adolfopa/MicroKanren">Smalltalk Hub link</a> to microkanren-pharo<br /><br />
<a href="https://github.com/massimo-nocentini/microkanrenst">microkanrenst</a><br /><br />
<a href="https://github.com/emdonahue/SmallKanren">SmallKanren</a><br /><br />
<a href="https://github.com/SquareBracketAssociates/Booklet-microKanren">How to implement microKraren in Pharo</a>
<h3>Swift</h3>
<a href="https://github.com/mdiep/Logician">Logician</a><br /><br />
<a href="https://github.com/kyouko-taiga/SwiftKanren">SwiftKanren<a><br /><br />
<a href="https://github.com/neilgall/SwiftyKanren">SwiftyKanren</a><br /><br />
<a href="https://gist.github.com/davidbalbert/dd03c945752c78f7f0a5fbac45a17c03">miniKanren.swift</a>
<h3>Typescript</h3>
<a href="https://github.com/mwjaworski/microkanren">Typescript MicroKanren</a><br /><br />
<a href="https://github.com/gamburgm/microKanren.ts">microKanren.ts</a>
<br /><br />
<a name="projects"></a>
<h2>Projects using miniKanren or core.logic</h2>
<h3>miniKanren</h3>
<a href="https://github.com/webyrd/Barliman">Barliman</a><br />
Barliman is a prototype "smart editor" that performs real-time program synthesis to try to make the programmer's life a little easier.<br /><br />
<a href="https://github.com/orchid-hybrid/minimips">minimips</a>, a minikanren mips assembler/disassembler.<br /><br />
<a href="https://github.com/brandonwillard/mk-rewrite-completion">rewrite-rule completion in miniKanren</a><br /><br />
Luke McCulloch's <a href="https://github.com/LukeMcCulloch/feasible-form-parameter-design">Interval constraint programming dissertation work</a><br /><br />
<a href="https://github.com/jpt4/skio">A relational SKI combinator calculus</a><br /><br />
<a href="https://github.com/pymc-devs/symbolic-pymc"> Symbolic manipulation of PyMC models, graphs </a><br /><br />
<a href="https://github.com/bboskin/Mkanren">Mkanren: Relational/Kanren Automata theory</a><br />
<h3>core.logic</h3>
<a href="https://github.com/owickstrom/smug">SMUG</a><br />
The Sheet Music Generator.<br />
<a href="https://wickstrom.tech/programming/2016/08/07/generating-sight-reading-exercises-using-constraint-logic-programming-in-clojure-part-1.html">blog post</a><br /><br />
<a href="https://github.com/clojure-numerics/expresso">expresso</a><br />
A clojure library for symbolic manipulation of Algebraic Expressions.<br />
<a href="https://github.com/mschuene/expresso-tutorial">tutorial</a><br />
<a href="http://kimavcrp.blogspot.com/2013/09/finished-gsoc-project-expresso.html">blog post</a><br /><br />
<a href="https://github.com/semperos/webdriver-logic">webdriver-logic</a><br />
Logic programming API for testing web applications using clj-webdriver.<br />
<a href="http://www.youtube.com/watch?v=09zlcS49zL0">Clojure/conj 2012 talk</a><br /><br />
<a href="https://github.com/cderoove/damp.ekeko/">damp.ekeko</a><br />
Ekeko enables querying and manipulating an Eclipse workspace using applicative logic programs.<br />
<a href="https://groups.google.com/forum/?fromgroups=#!topic/clojure/xZj3n8zsKdw">anouncement</a><br />
<a href="http://www.youtube.com/watch?v=5wvVFQa1hVU">screencast</a><br /><br />
<a href="https://github.com/ReinoutStevens/damp.qwal">damp.qwal</a><br />
QWAL is a path expression library to allow querying graphlike structures using core.logic in Clojure.<br /><br />
<a href="https://github.com/ReinoutStevens/damp.qwalkeko">damp.qwalkeko</a><br />
Scrape and reason over Java projects stored on git.<br /><br />
<a href="https://github.com/marick/peano">peano</a><br />
Using logic programming (Clojure's core.logic) for test data manipulation and generation.<br /><br />
<a href="https://github.com/jonase/kibit/">kibit</a><br />
kibit is a static code analyzer for Clojure which uses core.logic to
search for patterns of code for which there might exist a more
idiomatic function or macro.<br /><br />
<a href="https://github.com/tgk/parsing-packet-with-logic">parsing-packet-with-logic</a><br />
A small experiment in parsing packets in a style similar to Erlang's <code><<...>></code> using core.logic.<br /><br />
<a href="https://github.com/bloat/maze.logic">maze.logic</a><br />
Solving mazes using core.logic.<br /><br />
<a href="https://github.com/gga/janus">Janus: Consumer-driven Contracts and Mocks</a><br />
Consumer-driven contracts using core.logic.<br /><br />
<a href="https://github.com/aredington/monotony">Monotony</a><br />
Monotony is a solution to the problem of how to schedule things in a way that humans find intuitive.<br /><br />
<a href="https://github.com/ReinoutStevens/damp.qwal">QWAL</a><br />
QWAL is a path expression library to allow querying graphlike structures using core.logic in Clojure.<br /><br />
<a href="https://github.com/jgralab/funnyqt">FunnyQT</a><br />
FunnyQT is a model querying and transformation library.<br /><br />
<a href="https://github.com/timowest/symbol">symbol</a><br />
symbol is a compiler of a subset of Clojure syntax to C++.<br /><br />
<a href="https://github.com/dgrnbrg/guzheng">guzheng</a><br />
guzheng is a library for doing branch coverage analysis of Clojure code.<br /><br />
<a href="https://github.com/dmikulic/adventure-in-core-logic">Adventure in Clojure core.logic</a><br />
Text adventure game in core.logic.<br /><br />
The core.logic <a href="https://github.com/clojure/core.logic/wiki/Projects-using-core.logic">wiki</a> also has links to projects using core.logic.<br /><br />
<a name="upcomingTalks"></a>
<h2>Upcoming Talks</h2>
<a name="talks"></a>
<h2>Recorded Talks</h2>
<h3>miniKanren</h3>
William Byrd
<a href="https://www.youtube.com/watch?v=OyfBQmvr2Hc">The Most Beautiful Program Ever Written</a><br />
<a href="https://www.mixcloud.com/paperswelove/william-byrd-on-the-most-beautiful-program-ever-written/">audio</a><br />
<a href="https://www.meetup.com/papers-we-love/events/238718664/">Papers We Love NYC, Wednesday, April 12, 2017.</a><br /><br />
William E. Byrd (joint work with Michael Ballantyne, Gregory Rosenblatt, and Matthew Might)<br />
<a href="https://www.youtube.com/watch?v=o3AHnyEf7IE">A Unified Approach to Solving Seven Programming Problems (Functional Pearl)</a>
<a href="http://icfp17.sigplan.org/event/icfp-2017-papers-functional-pearl-a-unified-approach-to-solving-seven-programming-problems">International Conference on Functional Programming (ICFP)</a>, Oxford, England, 4 September 2017.<br />
<a href="http://dl.acm.org/citation.cfm?id=3110252&CFID=976617079">paper</a> |
<a href="http://io.livecode.ch/learn/namin/icfp2017-artifact-auas7pp">interactive paper</a> |
<a href="https://github.com/gregr/icfp2017-artifact-auas7pp">downloadable artifact</a> |
<a href="https://github.com/webyrd/Barliman">Barliman</a><br /><br />
<!-- not recorded, I believe
Jason Hemann and Daniel P. Friedman<br />
<a href="http://andykeep.com/SchemeWorkshop2015/">A Framework for Extending microKanren with Constraints</a><br />
Scheme Workshop, Vancouver, BC, Canada, 5 September 2015.<br /><br />
-->
Tom Stuart<br />
<a href="https://skillsmatter.com/skillscasts/6523-hello-declarative-world#video">
Hello, declarative world</a><br />
LRUG August 2015 Meetup, August 8, 2015.<br /><br />
Dan Friedman and Jason Hemann<br />
<a href="https://www.youtube.com/watch?v=b9C3r3dQnNY">
How to be a good host: miniKanren as a case study</a><br />
Curry On, Prague, Czech Republic, 7 July 2015.<br /><br />
William Byrd<br />
<a href="https://www.youtube.com/watch?v=eQL48qYDwp4">
The Promise of Relational Programming</a><br />
PolyConf 15, Poznań, Poland, 2 July 2015.<br /><br />
Bodil Stokke <br />
<a href="https://www.youtube.com/watch?v=2e8VFSSNORg">
μKanren: Running the Little Things Backwards</a><br />
EuroClojure, Barcelona, Spain, 25 June 2015.<br /><br />
Daniel Brady<br />
<a href="https://www.youtube.com/watch?v=UxeNsjP74jU#t=40s">
Little Logic Languages</a><br />
Scheme Workshop, Washington, D.C., 19 November 2014.<br /><br />
<a href="http://hemann.pl/">Jason Hemann</a> and <a href="http://www.cs.indiana.edu/~dfried/">Dan Friedman</a><br />
<a href="https://www.youtube.com/watch?v=RG9fBbQrVOM">
Write the Other Half of Your Program: From Functional to Logic Programming</a><br />
Strange Loop, St. Louis, September 18, 2014.<br /><br />
<!--
<a href="http://webyrd.net">William E. Byrd</a> and <a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a><br />
<a href="https://thestrangeloop.com/sessions/program-synthesis-using-minikanren">Program Synthesis Using miniKanren</a><br />
Strange Loop, St. Louis, September 17, 2014.<br /><br />
-->
<a href="http://webyrd.net">William E. Byrd</a><br />
Relational Programming in miniKanren, <a href="https://www.youtube.com/watch?v=zHov3fKYqBA">Part 1</a> and <a href="https://www.youtube.com/watch?v=nFE2E91VDAk">Part 2</a><br />
<a href="http://www.meetup.com/Lambda-Lounge-Utah/events/164368252/">Logic Night</a><br />
<a href="http://www.meetup.com/Lambda-Lounge-Utah/">Lambda Lounge Utah</a>, Sandy, UT, May 13, 2014.<br /><br />
<!--
<a href="http://hemann.pl/">Jason Hemann</a> and <a href="http://www.cs.indiana.edu/~dfried/">Dan Friedman</a><br />
<a href="https://a.confui.com/-VWhSYioh">Roll Your Own Relational DSL: A Logic Programming Language in Less than 40 Lines</a><br />
Lambda Jam, Chicago, July 22, 2014.<br /><br />
-->
<!-- video not online yet -->
<!--
<a href="http://webyrd.net">William E. Byrd</a> and <a href="http://namin.github.com/">Nada Amin</a><br />
Meta-Programming in Logic Programming<br />
Code Mesh 2013, London, England, December 5, 2013.<br /><br />
-->
<a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a> and <a href="http://webyrd.net">William E. Byrd</a><br />
<a href="http://www.infoq.com/presentations/chomsky-hierarchy">A Relational Exploration of the Chomsky Hierarchy</a><br />
Strange Loop, St. Louis, September, 2013.<br /><br />
<a href="http://webyrd.net">William E. Byrd</a> and <a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a><br />
<a href="http://vimeo.com/user18356272/review/66548859/4f724d6341">Fun with Relational Interpreters in miniKanren</a><br />
flatmap 2013, Oslo, Norway, May 14, 2013 (keynote).<br /><br />
<a href="http://webyrd.net">William E. Byrd</a> and <a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a><br />
<a href="http://www.youtube.com/watch?v=fHK-uS-Iedc">miniKanren Philosophy</a><br />
Clojure/conj 2012, Raleigh, NC, November 16, 2012.<br />
(Beware the pink tint!)<br /><br />
<a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a> and <a href="http://webyrd.net">William E. Byrd</a><br />
<a href="http://www.infoq.com/presentations/miniKanren">Relational Programming in miniKanren</a><br />
Strange Loop 2012, St. Louis, MO, September 24, 2012<br />
<a href="https://github.com/webyrd/quines">source code</a><br /><br />
<a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a> and <a href="http://webyrd.net">William E. Byrd</a><br />
<a href="https://www.youtube.com/watch?v=5Q9x16uIsKA">miniKanren "untalk"</a><br />
Clojure/conj 2011, Raleigh, NC, November 10, 2011.
<h3>core.logic</h3>
<a href="http://namin.github.com/">Nada Amin</a> and <a href="http://webyrd.net">William E. Byrd</a><br />
<a href="http://www.youtube.com/watch?v=7kPMFkNm2dw">From Greek to Clojure</a><br />
Clojure/conj, Alexandria, VA, November 14, 2013<br />
<a href="https://github.com/namin/grk2clj">source code</a> | <a href="http://lampwww.epfl.ch/%7Eamin/clj/grk.pdf">slides</a><br /><br />
<a href="http://www.red-bean.com/~craig/hacking/">Craig Brozefsky</a><br />
<a href="http://www.infoq.com/presentations/Core-logic-SQL-ORM">Core.logic and SQL Killed my ORM</a><br />
Clojure/West 2013, Portland, OR, March 19th, 2013.<br /><br />
<a href="http://swannodette.github.io">David Nolen</a><br />
<a href="http://skillsmatter.com/podcast/scala/the-refined-clojurist">The Refined Clojurist</a><br />
Clojure Exchange 2012, London, December 6, 2012<br /><br />
<a href="https://github.com/semperos">Daniel Gregoire</a><br />
<a href="https://www.youtube.com/watch?v=09zlcS49zL0">Web Testing with Logic Programming</a><br />
Clojure/conj 2012, Raleigh, NC, November 17, 2012.<br />
<a href="https://github.com/semperos/webdriver-logic">webdriver-logic project</a><br /><br />
<a href="https://github.com/miner">Steve Miner</a><br />
<a href="https://www.youtube.com/watch?v=y6WKr9j76kw">Challenges for Logic Programming</a><br />
Clojure/conj 2012, Raleigh, NC, November 17, 2012.<br /><br />
<a href="https://github.com/ejackson">Edmund Jackson</a><br />
<a href="http://www.infoq.com/presentations/Introduction-Logic-Programming">An Introduction to Logic Programming on the JVM with core.logic (Clojure)</a><br />
FP Days 2012, Cambridge, October 25, 2012<br /><br />
<a href="https://swannodette.github.io">David Nolen</a><br />
<a href="https://www.youtube.com/watch?v=A7de6pC-tnU">core.logic: A tutorial reconstruction ("unsession")</a><br />
Strange Loop 2012, St. Louis, MO, September 24, 2012<br /><br />
<a href="http://boss-level.com">Edmund Jackson</a><br />
<a href="http://vimeo.com/45128721">core.logic.intro</a><br />
EuroClojure 2012, London, May 24, 2012<br />
<a href="https://github.com/ejackson/EuroClojure-2012-Talk">source code</a><br /><br />
<a href="http://objectcommando.com">Ryan Senior</a><br />
<a href="http://www.infoq.com/presentations/core-logic">Practical core.logic</a><br />
Clojure/West 2012, San Jose, March 17, 2012<br /><br />
<a href="https://github.com/frenchy64">Ambrose Bonnaire-Sergeant</a><br />
<a href="https://www.youtube.com/watch?v=irjP8BO1B8Y">Introduction to Logic Programming with Clojure</a><br />
Clojure/conj 2011, Raleigh, NC, November 10, 2011.
<h3>ClojureScript & core.logic</h3>
<a href="https://adamsolove.com/">Adam Solove</a><br />
<a href="https://www.youtube.com/watch?v=72sWgwaAoyk">Constraint programming in the browser</a><br />
(Talk focuses on the Cassowary constraint solver for GUI layout, but also discusses core.logic.)<br />
JSConf US, Amelia Island, FL, May 31, 2013
<a name="clojure-west"></a>
<h3>Clojure/West miniKanren confo, Portland, OR, March 19, 2013 (associated with <a href="http://clojurewest.org/">Clojure/West</a>)</h3>
<a href="https://github.com/werg">Gabriel Pickard</a><br />
<a href="http://lanyrd.com/2013/clojurewest/sccgmz/">Logic programming in the wild</a> (video not posted yet)<br /><br />
<a href="http://objectcommando.com">Ryan Senior</a><br />
<a href="http://www.infoq.com/presentations/CLP-core-logic">Intro to CLP with core.logic</a><br /><br />
<a href="http://www.acfoltzer.net/">Adam Foltzer</a><br />
<a href="http://www.infoq.com/presentations/molog">Molog: Typed Functional Logic Programming in Haskell</a><br />
<a href="https://github.com/acfoltzer/Molog">source code</a><br /><br />
<a href="https://swannodette.github.io">David Nolen</a><br />
<a href="http://www.infoq.com/presentations/architecture-core-logic">The Architecture of core.logic</a><br /><br />
<a href="http://namin.github.com/">Nada Amin</a><br />
<a href="http://lanyrd.com/2013/clojurewest/sccgpf/">core.logic.nominal</a> (video not posted yet)<br />
<a href="https://github.com/namin/minikanren-confo">source code</a><br /><br />
<a href="http://webyrd.net">William E. Byrd</a> and <a href="http://www.cs.indiana.edu/~dfried/">Daniel P. Friedman</a><br />
<a href="http://lanyrd.com/2013/clojurewest/sccgpg/">The Unreasonable Schemers</a> (video not posted yet)<br />
<a href="https://github.com/webyrd/relational-cesk">source code</a>
<a name="interviews"></a>
<h2>Interviews</h2>
<a href="hemann.pl">Jason Hemann</a><br />
<a href="https://purelyfunctional.tv/speaker-interview/jason-hemann-code-mesh-2016-interview/">Jason Hemann miniKanren Interview</a><br />
For Code Mesh 2016<br /><br />
<a href="http://webyrd.net">William E. Byrd</a><br />
<a href="https://www.functionalgeekery.com/episode-9-william-e-byrd/">Episode 9: Will Byrd and miniKanren</a><br />
On the <a href="https://www.functionalgeekery.com/">Functional Geekery</a> podcast<br /><br />
<a href="http://webyrd.net">William E. Byrd</a><br />
<a href="http://www.infoq.com/interviews/byrd-relational-programming-minikanren">William Byrd on Logic and Relational Programming, miniKanren</a><br />
Recorded by <a href="http://www.infoq.com/">InfoQ</a> at Code Mesh 2013, London, England, December, 2013
<a name="writtenTutorials"></a>
<h2>Written Tutorials</h2>
<h3>core.logic</h3>
<a href="https://github.com/frenchy64/Logic-Starter/wiki">Introduction to Logic Programming with Clojure</a><br /><br />
<a href="https://github.com/clojure/core.logic/wiki/A-Core.logic-Primer">A Core.logic Primer</a><br /><br />
<a href="http://www.intensivesystems.net/tutorials/logic_prog.html">Logic Programming for the Social Web</a>
<a name="theses"></a>
<h2>Theses</h2>
<h3>PhD</h3>
Jason Hemann<br />
<a href="https://scholarworks.iu.edu/dspace/bitstream/handle/2022/25183/Constraint_Microkanren_in_the_CLP_Scheme.pdf">Constraint microKanren in the CLP Scheme</a><br />
Indiana University, Bloomington, IN,<br />
December 19, 2019.<br /><br />
Thomas L. McCulloch<br />
<a href="https://scholarworks.uno.edu/cgi/viewcontent.cgi?article=3698&context=td">Feasible form parameter design of complex ship hull form geometry</a><br />
University of New Orleans, New Orleans, LA,<br />
December 20, 2018.<br /><br />
William E. Byrd<br />
<a href="https://search.proquest.com/docview/304903505">Relational Programming in miniKanren: Techniques, Applications, and Implementations</a><br />
Indiana University, Bloomington, IN,<br />
September 30, 2009.<br /><br />
<a href="https://github.com/webyrd/dissertation-single-spaced">Easier to read, single-spaced, re-typeset version of Will's dissertation</a>, released under Creative Commons Attribution 4.0 International (CC BY 4.0) license.<br /><br />
<h3>Masters</h3>
Irina Artemeva<br />
<a href="https://github.com/Pluralia/uKanren_translator/tree/master/thesis">Разработка транслятора из реляционного языка программирования в функциональный</a><br />
(Note: Russian. In English, "Development of a Translator from a Relational Programming Language to a Functional Language")<br />
ITMO University, Saint Petersburg, Russia,<br />
2020.<br /><br />
Lisa Zhang<br />
<a href="http://lisazhang.ca/msc_thesis.pdf">Leveraging Constraint Logic Programming for Neural Network Guided Program Synthesis</a><br />
University of Toronto, Toronto, Canada,<br />
2016.<br /><br />
Kaylen FJ Wheeler<br />
<a href="http://ir.lib.uwo.ca/etd/1279">Representing Game Dialogue as Expressions in First-Order Logic</a><br />
University of Western Ontario, London, Ontario, Canada,<br />
2013.<br /><br />
<h3>Undergraduate</h3>
Khoa Vo<br />
<a href="https://github.com/lackhoa/Thesis/raw/master/Thesis.pdf">Relational Conditionals With Pseudo-Functions</a><br />
South-Eastern Finland University of Applied Sciences, Mikkeli, Finland,<br />
April, 2019. (Bachelor's Thesis)<br /><br />
Emily Fox<br />
<a href="fox_diss.pdf">Automated Canon Composition</a><br />