SlideShare a Scribd company logo
Relational Logic Programming for Clojure
CORE.LOGIC
http://www.slideshare.net/normanrichards/corelogic-introduction
git clone https://github.com/orb/logicdemo.git
Why core.logic?
http://xkcd.com/292/
core.logic in the real world
ThreatGRID uses core.logic to
process observations of malware
execution looking for behavioral
indicators of compromise.
Observations are simple factual statements that map into
core.logic relations and SQL tables. The mapping allows
the same data model to be used for core.logic programs in
memory, as well as persistance in a database and later
analysis and querying via SQL.
A persistent core.logic database. pldb provides an in-
memory persistent fact database making it easier to use
core.logic in multi-threaded environments like web
applications.
github.com/threatgrid/observations
github.com/threatgrid/pldb
run*
core.logic
(run* [q])
This is the simplest possible
core.logic program. q is the
query. run* says “give me all the
results”.
run* returns a seq of all possible
results. The symbol _0
represents a fresh (unbound)
logic variable.
(_0)
unification
core.logic
(run* [q]
(== q :hello-world))
The most fundamental operation
on a logic variable is to unify it.
unification is ==.
There is only one value of q that
satisfies the relation. (:hello-world)
unification
core.logic
(run* [q]
(== q [:hello :world]))
Logic variables can also be
unified over sequences.
There is still only one value of q
that satisfies the relation.
([:hello :world])
unification
core.logic
(run* [q]
(== q [:hello :world])
(== q [:hello :world]))
A logic variable can be unified
with the same value multiple
times.
([:hello :world])
unification
core.logic
(run* [q]
(== q :hello)
(== q :world))
A logic variable cannot unify with
two different values at the same
time.
There are no values of q that
satisfy the relation. ()
conde
core.logic
(run* [q]
(conde
[(== q :hello)]
[(== q :world)]))
You can introduce alternative
values with conde. Every conde
line that succeeds produces
possible alternative values.
There are 2 values of q that
satisfy the relation. (:hello :world)
Disunification
core.logic
(run* [q]
(conde
[(== q :hello)]
[(== q :world)])
(!= q :hello))
!= introduces a constraint that
two values never unify.
There are 2 values of q that
satisfy the conde goal, but !=
eliminates one of them. (:world)
FRESH
core.logic
(run* [q]
(fresh [x y]
(== x :something)
(== y :something-else)))
fresh introduces new logic
variables.
x and y are bound, but the query
remains unbound.
(_0)
FRESH
core.logic
(run* [q]
(fresh [x y]
(== x :something)
(== x :something-else)))
The query fails since no value of
q can make x unify with two
different values.
()
FRESH
core.logic
(run* [q]
(fresh [x y]
(== q [x :and y])
(== x :something)
(== :something-else y)))
Order does not matter for
unification.
([:something :and :something-else])
membero
core.logiccore.logic
(run* [q]
(fresh [smurf]
(membero smurf
[:papa :brainy :lazy :handy])
(== q [smurf smurf])))
membero is relation that
succeeds when the first
argument is a member of the
second argument. It can
succeed multiple times.
q produces each success ([:papa :papa]
[:brainy :brainy]
[:lazy :lazy]
[:handy :handy])
membero
core.logiccore.logic
(run* [q]
(fresh [smurf1 smurf2]
(membero smurf1
[:papa :brainy :lazy :handy])
(membero smurf2
[:papa :brainy :lazy :handy])
(== q [smurf1 smurf2])))
Both membero relations succeed
multiple times. q is unified with
each pair.
([:papa :papa]
[:papa :brainy]
[:brainy :papa]
...
[:handy :lazy]
[:handy :handy])
distincto
core.logiccore.logic
(run* [q]
(fresh [smurf1 smurf2 smurf3]
(membero smurf1
[:papa :brainy :lazy :handy])
(membero smurf2
[:papa :brainy :lazy :handy])
(membero smurf3
[:papa :brainy :lazy :handy])
(distincto [smurf1 smurf2 smurf3])
(== q [smurf1 smurf2 smurf3])))
distincto ensures that no two
items in the relation unify with
each other. smurf1 will never
unify with smurf2, and neither will
unify with smurf3.
([:papa :brainy :lazy]
[:papa :brainy :handy]
[:brainy :papa :lazy]
[:brainy :papa :handy]
...
[:handy :lazy :brainy])
everyg
core.logiccore.logic
(run* [q]
(fresh [smurf1 smurf2 smurf3]
(== q [smurf1 smurf2 smurf3])
(everyg #(membero % [:papa :brainy :lazy :handy])
q)
(distincto q)))
everyg ensures that every
element in a collection satisfies a
goal. It is not a proper relation, in
that it requires the collection to
already be a seq.
([:papa :brainy :lazy]
[:papa :brainy :handy]
[:brainy :papa :lazy]
[:brainy :papa :handy]
...
[:handy :lazy :brainy])
lvar
core.logiccore.logic
(run* [q]
(== q [(lvar) (lvar) (lvar)])
(everyg #(membero % [:papa :brainy :lazy :handy])
q)
(distincto q))
lvar creates a new a logic
variable. Since we don’t need to
refer to the items individually, we
can just say that the
([:papa :brainy :lazy]
[:papa :brainy :handy]
[:brainy :papa :lazy]
[:brainy :papa :handy]
...
[:handy :lazy :brainy])
Map coloring
core.logiccore.logic
http://pragprog.com/book/btlang/seven-languages-in-seven-weeks
(run 1 [q]
(fresh [tn ms al ga fl]
(everyg #(membero % [:red :blue :green])
[tn ms al ga fl])
(!= ms tn) (!= ms al) (!= al tn)
(!= al ga) (!= al fl) (!= ga fl) (!= ga tn)
 
(== q {:tennesse tn
:mississipi ms
:alabama al
:georgia ga
:florida fl})))
({:tennesse :blue,
:mississipi :red,
:alabama :green,
:georgia :red,
:florida :blue})
rock paper scissors
core.logiccore.logic
(defn beatso [player1 player2]
(conde
[(== player1 :rock) (== player2 :scissors)]
[(== player1 :scissors) (== player2 :paper)]
[(== player1 :paper) (== player2 :rock)]))
beatso is a custom relation
between two terms. It succeeds
when the first players move
beats the second players move
rock paper scissors
core.logiccore.logic
(run* [q]
(beatso :rock :paper))
beatso fails because :rock does
not beat paper. No value of q
makes this succeed.
()
rock paper scissors
core.logiccore.logic
(run* [q]
(beatso :paper :rock))
beatso succeeds because :paper
beats rock. q remains fresh
because no questions were
asked of it.
(_0)
rock paper scissors
core.logiccore.logic
(run* [q]
(beatso :rock q))
beatso can answer in either
direction.
(:scissors)
(run* [q]
(beatso q :scissors))
(:rock)
rock paper scissors
core.logiccore.logic
(run* [q]
(fresh [x y]
(beatso x y)
(== q [x y])))
This query asks for all the pairs
where x beats y.
([:rock :scissors]
[:scissors :paper]
[:paper :rock])
FACTS and RELATIONS
core.logiccore.logic
rpsls is a relation of one term.
Five facts are asserted about the
relation.
(defrel rpsls gesture)
(fact rpsls :rock)
(fact rpsls :paper)
(fact rpsls :scissors)
(fact rpsls :lizard)
(fact rpsls :spock)
FACTS and RELATIONS
core.logiccore.logic
(run* [q]
(rpsls q))
defrel relations answer queries in
the same way as the other
relations we’ve seen.
(:rock :paper :scissors :lizard :spock)
FACTS and RELATIONS
core.logiccore.logic
beats is a relation of two terms,
indicating the first gesture beats
the second one.
(defrel beats gesture1 gesture2)
(fact beats :scissors :paper)
(fact beats :paper :rock)
(fact beats :rock :lizard)
(fact beats :lizard :spock)
(fact beats :spock :scissors)
(fact beats :scissors :lizard)
(fact beats :lizard :paper)
(fact beats :paper :spock)
(fact beats :spock :rock)
(fact beats :rock :scissors)
FACTS and RELATIONS
core.logiccore.logic
(run* [q]
(fresh [x y]
(beats :spock x)
(beats x y)
(beats y :spock)
(== q [:spock x y :spock])))
We can ask questions like: give
me a 4-chain of dominated
moves starting and ending
with :spock. There are three
solutions.
([:spock :scissors :lizard :spock]
[:spock :scissors :paper :spock]
[:spock :rock :lizard :spock])
FACTS and RELATIONS
core.logiccore.logic
(defn win-chaino [x]
(fresh [a d]
(rpsls a)
(conso a d x)
(conde
[(emptyo d)]
[(fresh [b]
(beats a b)
(firsto d b))
(win-chaino d)])))
A winning chain is a single rpsls
move either by itself or followed
by a winning chain whose first
move is beaten by the original
move.
conso, emptyo and firsto are
relations over cons lists.
FACTS and RELATIONS
core.logiccore.logic
(count
(run* [q]
(== q (concat [:spock]
(repeatedly 10 lvar)
[:lizard]))
(win-chaino q)))
How many winning chains are
there from :spock to :lizard with
10 steps?
385
USEless logic puzzle
core.logiccore.logic
‣ petey pig did not hand out the popcorn
‣ pippin pig does not live in the wood house
‣ the pig that lives in the straw house handed out popcorn
‣ Petunia pig handed out apples
‣ The pig who handed out chocolate does not live in the brick house.
Three little pigs, who each
lived in a different type of
house, handed out treats for
Halloween. Use the clues to
figure out which pig lived in
each house, and what type of
treat each pig handed out.
http://holidays.hobbyloco.com/halloween/logic1.html
USEless logic puzzle
core.logiccore.logic
(defn pigso [q]
(fresh [h1 h2 h3 t1 t2 t3]
(== q [[:petey h1 t1]
[:pippin h2 t2]
[:petunia h3 t3]])
(permuteo [t1 t2 t3]
[:chocolate :popcorn :apple])
(permuteo [h1 h2 h3]
[:wood :straw :brick])
 ... ))
pigso starts by defining the
solution space.
permuteo succeeds when the
first list is permutation of the
second.
USEless logic puzzle
core.logiccore.logic
(fresh [notpopcorn _]
(membero notpopcorn [:chocolate :apple])
(membero [:petey _ notpopcorn] q))
(fresh [notwood _]
(membero notwood [:straw :brick])
(membero [:pippin notwood _] q))
(fresh [_]
(membero [_ :straw :popcorn] q))
(fresh [_]
(membero [:petunia _ :apple] q))
(fresh [notbrick _]
(membero notbrick [:straw :wood])
(membero [_ notbrick :chocolate] q))
The clues translate cleanly to
goals constraining the solution
space.
membero has a solution when
the first item is a member of the
second.
FACTS and RELATIONS
core.logiccore.logic
(run* [q]
(pigso q))
pigso finds the only solution.
([[:petey :wood :chocolate]
[:pippin :straw :popcorn]
[:petunia :brick :apple]])
FINITE DOMAINS
core.logiccore.logic
fd/interval declares a finite
integer interval and fd/in
contrains logic variables to a
domain.
(defn two-plus-two-is-four [q]
(fresh [t w o f u r TWO FOUR]
(fd/in t w o f u r (fd/interval 0 9))
(fd/distinct [t w o f u r])
(fd/in TWO (fd/interval 100 999))
(fd/in FOUR (fd/interval 1000 9999))
 
...
(== q [TWO TWO FOUR])))
T W O
+ T W O
-------
F O U R
http://www.amazon.com/Crypt-arithmetic-Puzzles-in-PROLOG-ebook/dp/B006X9LY8O
FINITE DOMAINS
core.logiccore.logic
fd/eq translates simple math to
constraints over finite domain
logic variables.
(fd/eq (= TWO
(+ (* 100 t)
(* 10 w)
o)))
(fd/eq (= FOUR
(+ (* 1000 f)
(* 100 o)
(* 10 u)
r)))
 
(fd/eq (= (+ TWO TWO) FOUR))
T W O
+ T W O
-------
F O U R
FINITE DOMAINS
core.logiccore.logic
There are 7 unique solutions to
the problem.
(run* [q]
(two-plus-two-is-four q))
T W O
+ T W O
-------
F O U R
([734 734 1468]
[765 765 1530]
[836 836 1672]
[846 846 1692]
[867 867 1734]
[928 928 1856]
[938 938 1876])
sudoku made easier
core.logiccore.logic
After setting up the logic
variables and initializing state,
the solution simply requires every
row, column and square on the
board to have distinct values.
(defn solve [puzzle]
(let [sd-num (fd/domain 1 2 3 4 5 6 7 8 9)
board (repeatedly 81 lvar)
rows (into [] (map vec (partition 9 board)))
cols (apply map vector rows)
squares (for [x (range 0 9 3)
y (range 0 9 3)]
(get-square rows x y))]
 
(run* [q]
(== q board)
(everyg #(fd/in % sd-num) board)
(init-board board puzzle)
(everyg fd/distinct rows)
(everyg fd/distinct cols)
(everyg fd/distinct squares))))
https://gist.github.com/swannodette/3217582
sudoku made easier
core.logiccore.logic
matche is pattern matching
syntax for conde. To unify the
initial logic variables with a
board, we require either the
board have a 0 or that the logic
variable unifies with the value of
the board.
(defn init-board [vars puzzle]
(matche [vars puzzle]
([[] []]
succeed)
([[_ . vs] [0 . ps]]
(init-board vs ps))
([[num . vs] [num . ps]]
(init-board vs ps))))
sudoku
core.logiccore.logic
(def puzzle1
[0 0 0 0 0 9 0 6 0
0 3 8 0 0 5 0 0 4
0 2 0 0 6 0 0 7 0
0 0 0 0 0 0 3 9 0
0 0 0 9 2 6 0 0 0
0 9 7 0 0 0 0 0 0
0 4 0 0 7 0 0 3 0
5 0 0 4 0 0 2 1 0
0 7 0 8 0 0 0 0 0])
(partition 9 (first (solve puzzle1)))
((7 1 4 2 8 9 5 6 3)
(6 3 8 7 1 5 9 2 4)
(9 2 5 3 6 4 1 7 8)
(8 6 1 5 4 7 3 9 2)
(4 5 3 9 2 6 7 8 1)
(2 9 7 1 3 8 4 5 6)
(1 4 9 6 7 2 8 3 5)
(5 8 6 4 9 3 2 1 7)
(3 7 2 8 5 1 6 4 9))
Norman richards
orb@nostacktrace.com
@maximoburrito
core.logic introduction
core.logic introduction
core.logic introduction
core.logic introduction
core.logic introduction

More Related Content

Similar to core.logic introduction (20)

ODP
introduction to Genifer -- Deduction
Yan Yin
 
PPT
A Distributed Tableau Algorithm for Package-based Description Logics
Jie Bao
 
PDF
Harold Boley: RuleML/Grailog: The Rule Metalogic Visualized with Generalized ...
PhiloWeb
 
PDF
Tutorial - Introduction to Rule Technologies and Systems
Adrian Paschke
 
PDF
Sep logic slide
rainoftime
 
PDF
Reasoning with RNA
Chris Mungall
 
PDF
AI Lesson 16
Assistant Professor
 
KEY
Verification with LoLA: 2 The LoLA Input Language
Universität Rostock
 
PPTX
Prolog 7-Languages
Pierre de Lacaze
 
PPT
PredicateLogic or FOL for Computer Science
parvath vigna
 
PPT
Lec8-PredicateLogic knowledge representation.ppt
ratnababum
 
PDF
Why Haskell Matters
romanandreg
 
PDF
16_FirstOrderLogic.p_4_moduleModuleNotespdf
ShylaBg1
 
PDF
Reasoning about laziness
Johan Tibell
 
PDF
first_order_logic.pdf
AhmedNURHUSIEN
 
PPTX
First order logic in artificial Intelligence.pptx
Y21IT051
 
PDF
Linear logic (and Linear Lisp)
Sosuke MORIGUCHI
 
PPTX
weak slot and filler structure
Amey Kerkar
 
PPT
Logical Programming Paradigm for programming Languages.
SwatiAtulJoshi
 
introduction to Genifer -- Deduction
Yan Yin
 
A Distributed Tableau Algorithm for Package-based Description Logics
Jie Bao
 
Harold Boley: RuleML/Grailog: The Rule Metalogic Visualized with Generalized ...
PhiloWeb
 
Tutorial - Introduction to Rule Technologies and Systems
Adrian Paschke
 
Sep logic slide
rainoftime
 
Reasoning with RNA
Chris Mungall
 
AI Lesson 16
Assistant Professor
 
Verification with LoLA: 2 The LoLA Input Language
Universität Rostock
 
Prolog 7-Languages
Pierre de Lacaze
 
PredicateLogic or FOL for Computer Science
parvath vigna
 
Lec8-PredicateLogic knowledge representation.ppt
ratnababum
 
Why Haskell Matters
romanandreg
 
16_FirstOrderLogic.p_4_moduleModuleNotespdf
ShylaBg1
 
Reasoning about laziness
Johan Tibell
 
first_order_logic.pdf
AhmedNURHUSIEN
 
First order logic in artificial Intelligence.pptx
Y21IT051
 
Linear logic (and Linear Lisp)
Sosuke MORIGUCHI
 
weak slot and filler structure
Amey Kerkar
 
Logical Programming Paradigm for programming Languages.
SwatiAtulJoshi
 

More from Norman Richards (6)

PDF
An Adventure in Serverless ClojureScript
Norman Richards
 
PDF
Lisp 1.5 - Running history
Norman Richards
 
PDF
Deconstructing the Functional Web with Clojure
Norman Richards
 
PDF
Immutant
Norman Richards
 
PDF
Vert.X mini-talk
Norman Richards
 
PDF
The Lambda Calculus and The JavaScript
Norman Richards
 
An Adventure in Serverless ClojureScript
Norman Richards
 
Lisp 1.5 - Running history
Norman Richards
 
Deconstructing the Functional Web with Clojure
Norman Richards
 
Immutant
Norman Richards
 
Vert.X mini-talk
Norman Richards
 
The Lambda Calculus and The JavaScript
Norman Richards
 
Ad

Recently uploaded (20)

PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Digital Circuits, important subject in CS
contactparinay1
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Ad

core.logic introduction

  • 1. Relational Logic Programming for Clojure CORE.LOGIC http://www.slideshare.net/normanrichards/corelogic-introduction git clone https://github.com/orb/logicdemo.git
  • 3. core.logic in the real world ThreatGRID uses core.logic to process observations of malware execution looking for behavioral indicators of compromise. Observations are simple factual statements that map into core.logic relations and SQL tables. The mapping allows the same data model to be used for core.logic programs in memory, as well as persistance in a database and later analysis and querying via SQL. A persistent core.logic database. pldb provides an in- memory persistent fact database making it easier to use core.logic in multi-threaded environments like web applications. github.com/threatgrid/observations github.com/threatgrid/pldb
  • 4. run* core.logic (run* [q]) This is the simplest possible core.logic program. q is the query. run* says “give me all the results”. run* returns a seq of all possible results. The symbol _0 represents a fresh (unbound) logic variable. (_0)
  • 5. unification core.logic (run* [q] (== q :hello-world)) The most fundamental operation on a logic variable is to unify it. unification is ==. There is only one value of q that satisfies the relation. (:hello-world)
  • 6. unification core.logic (run* [q] (== q [:hello :world])) Logic variables can also be unified over sequences. There is still only one value of q that satisfies the relation. ([:hello :world])
  • 7. unification core.logic (run* [q] (== q [:hello :world]) (== q [:hello :world])) A logic variable can be unified with the same value multiple times. ([:hello :world])
  • 8. unification core.logic (run* [q] (== q :hello) (== q :world)) A logic variable cannot unify with two different values at the same time. There are no values of q that satisfy the relation. ()
  • 9. conde core.logic (run* [q] (conde [(== q :hello)] [(== q :world)])) You can introduce alternative values with conde. Every conde line that succeeds produces possible alternative values. There are 2 values of q that satisfy the relation. (:hello :world)
  • 10. Disunification core.logic (run* [q] (conde [(== q :hello)] [(== q :world)]) (!= q :hello)) != introduces a constraint that two values never unify. There are 2 values of q that satisfy the conde goal, but != eliminates one of them. (:world)
  • 11. FRESH core.logic (run* [q] (fresh [x y] (== x :something) (== y :something-else))) fresh introduces new logic variables. x and y are bound, but the query remains unbound. (_0)
  • 12. FRESH core.logic (run* [q] (fresh [x y] (== x :something) (== x :something-else))) The query fails since no value of q can make x unify with two different values. ()
  • 13. FRESH core.logic (run* [q] (fresh [x y] (== q [x :and y]) (== x :something) (== :something-else y))) Order does not matter for unification. ([:something :and :something-else])
  • 14. membero core.logiccore.logic (run* [q] (fresh [smurf] (membero smurf [:papa :brainy :lazy :handy]) (== q [smurf smurf]))) membero is relation that succeeds when the first argument is a member of the second argument. It can succeed multiple times. q produces each success ([:papa :papa] [:brainy :brainy] [:lazy :lazy] [:handy :handy])
  • 15. membero core.logiccore.logic (run* [q] (fresh [smurf1 smurf2] (membero smurf1 [:papa :brainy :lazy :handy]) (membero smurf2 [:papa :brainy :lazy :handy]) (== q [smurf1 smurf2]))) Both membero relations succeed multiple times. q is unified with each pair. ([:papa :papa] [:papa :brainy] [:brainy :papa] ... [:handy :lazy] [:handy :handy])
  • 16. distincto core.logiccore.logic (run* [q] (fresh [smurf1 smurf2 smurf3] (membero smurf1 [:papa :brainy :lazy :handy]) (membero smurf2 [:papa :brainy :lazy :handy]) (membero smurf3 [:papa :brainy :lazy :handy]) (distincto [smurf1 smurf2 smurf3]) (== q [smurf1 smurf2 smurf3]))) distincto ensures that no two items in the relation unify with each other. smurf1 will never unify with smurf2, and neither will unify with smurf3. ([:papa :brainy :lazy] [:papa :brainy :handy] [:brainy :papa :lazy] [:brainy :papa :handy] ... [:handy :lazy :brainy])
  • 17. everyg core.logiccore.logic (run* [q] (fresh [smurf1 smurf2 smurf3] (== q [smurf1 smurf2 smurf3]) (everyg #(membero % [:papa :brainy :lazy :handy]) q) (distincto q))) everyg ensures that every element in a collection satisfies a goal. It is not a proper relation, in that it requires the collection to already be a seq. ([:papa :brainy :lazy] [:papa :brainy :handy] [:brainy :papa :lazy] [:brainy :papa :handy] ... [:handy :lazy :brainy])
  • 18. lvar core.logiccore.logic (run* [q] (== q [(lvar) (lvar) (lvar)]) (everyg #(membero % [:papa :brainy :lazy :handy]) q) (distincto q)) lvar creates a new a logic variable. Since we don’t need to refer to the items individually, we can just say that the ([:papa :brainy :lazy] [:papa :brainy :handy] [:brainy :papa :lazy] [:brainy :papa :handy] ... [:handy :lazy :brainy])
  • 19. Map coloring core.logiccore.logic http://pragprog.com/book/btlang/seven-languages-in-seven-weeks (run 1 [q] (fresh [tn ms al ga fl] (everyg #(membero % [:red :blue :green]) [tn ms al ga fl]) (!= ms tn) (!= ms al) (!= al tn) (!= al ga) (!= al fl) (!= ga fl) (!= ga tn)   (== q {:tennesse tn :mississipi ms :alabama al :georgia ga :florida fl}))) ({:tennesse :blue, :mississipi :red, :alabama :green, :georgia :red, :florida :blue})
  • 20. rock paper scissors core.logiccore.logic (defn beatso [player1 player2] (conde [(== player1 :rock) (== player2 :scissors)] [(== player1 :scissors) (== player2 :paper)] [(== player1 :paper) (== player2 :rock)])) beatso is a custom relation between two terms. It succeeds when the first players move beats the second players move
  • 21. rock paper scissors core.logiccore.logic (run* [q] (beatso :rock :paper)) beatso fails because :rock does not beat paper. No value of q makes this succeed. ()
  • 22. rock paper scissors core.logiccore.logic (run* [q] (beatso :paper :rock)) beatso succeeds because :paper beats rock. q remains fresh because no questions were asked of it. (_0)
  • 23. rock paper scissors core.logiccore.logic (run* [q] (beatso :rock q)) beatso can answer in either direction. (:scissors) (run* [q] (beatso q :scissors)) (:rock)
  • 24. rock paper scissors core.logiccore.logic (run* [q] (fresh [x y] (beatso x y) (== q [x y]))) This query asks for all the pairs where x beats y. ([:rock :scissors] [:scissors :paper] [:paper :rock])
  • 25. FACTS and RELATIONS core.logiccore.logic rpsls is a relation of one term. Five facts are asserted about the relation. (defrel rpsls gesture) (fact rpsls :rock) (fact rpsls :paper) (fact rpsls :scissors) (fact rpsls :lizard) (fact rpsls :spock)
  • 26. FACTS and RELATIONS core.logiccore.logic (run* [q] (rpsls q)) defrel relations answer queries in the same way as the other relations we’ve seen. (:rock :paper :scissors :lizard :spock)
  • 27. FACTS and RELATIONS core.logiccore.logic beats is a relation of two terms, indicating the first gesture beats the second one. (defrel beats gesture1 gesture2) (fact beats :scissors :paper) (fact beats :paper :rock) (fact beats :rock :lizard) (fact beats :lizard :spock) (fact beats :spock :scissors) (fact beats :scissors :lizard) (fact beats :lizard :paper) (fact beats :paper :spock) (fact beats :spock :rock) (fact beats :rock :scissors)
  • 28. FACTS and RELATIONS core.logiccore.logic (run* [q] (fresh [x y] (beats :spock x) (beats x y) (beats y :spock) (== q [:spock x y :spock]))) We can ask questions like: give me a 4-chain of dominated moves starting and ending with :spock. There are three solutions. ([:spock :scissors :lizard :spock] [:spock :scissors :paper :spock] [:spock :rock :lizard :spock])
  • 29. FACTS and RELATIONS core.logiccore.logic (defn win-chaino [x] (fresh [a d] (rpsls a) (conso a d x) (conde [(emptyo d)] [(fresh [b] (beats a b) (firsto d b)) (win-chaino d)]))) A winning chain is a single rpsls move either by itself or followed by a winning chain whose first move is beaten by the original move. conso, emptyo and firsto are relations over cons lists.
  • 30. FACTS and RELATIONS core.logiccore.logic (count (run* [q] (== q (concat [:spock] (repeatedly 10 lvar) [:lizard])) (win-chaino q))) How many winning chains are there from :spock to :lizard with 10 steps? 385
  • 31. USEless logic puzzle core.logiccore.logic ‣ petey pig did not hand out the popcorn ‣ pippin pig does not live in the wood house ‣ the pig that lives in the straw house handed out popcorn ‣ Petunia pig handed out apples ‣ The pig who handed out chocolate does not live in the brick house. Three little pigs, who each lived in a different type of house, handed out treats for Halloween. Use the clues to figure out which pig lived in each house, and what type of treat each pig handed out. http://holidays.hobbyloco.com/halloween/logic1.html
  • 32. USEless logic puzzle core.logiccore.logic (defn pigso [q] (fresh [h1 h2 h3 t1 t2 t3] (== q [[:petey h1 t1] [:pippin h2 t2] [:petunia h3 t3]]) (permuteo [t1 t2 t3] [:chocolate :popcorn :apple]) (permuteo [h1 h2 h3] [:wood :straw :brick])  ... )) pigso starts by defining the solution space. permuteo succeeds when the first list is permutation of the second.
  • 33. USEless logic puzzle core.logiccore.logic (fresh [notpopcorn _] (membero notpopcorn [:chocolate :apple]) (membero [:petey _ notpopcorn] q)) (fresh [notwood _] (membero notwood [:straw :brick]) (membero [:pippin notwood _] q)) (fresh [_] (membero [_ :straw :popcorn] q)) (fresh [_] (membero [:petunia _ :apple] q)) (fresh [notbrick _] (membero notbrick [:straw :wood]) (membero [_ notbrick :chocolate] q)) The clues translate cleanly to goals constraining the solution space. membero has a solution when the first item is a member of the second.
  • 34. FACTS and RELATIONS core.logiccore.logic (run* [q] (pigso q)) pigso finds the only solution. ([[:petey :wood :chocolate] [:pippin :straw :popcorn] [:petunia :brick :apple]])
  • 35. FINITE DOMAINS core.logiccore.logic fd/interval declares a finite integer interval and fd/in contrains logic variables to a domain. (defn two-plus-two-is-four [q] (fresh [t w o f u r TWO FOUR] (fd/in t w o f u r (fd/interval 0 9)) (fd/distinct [t w o f u r]) (fd/in TWO (fd/interval 100 999)) (fd/in FOUR (fd/interval 1000 9999))   ... (== q [TWO TWO FOUR]))) T W O + T W O ------- F O U R http://www.amazon.com/Crypt-arithmetic-Puzzles-in-PROLOG-ebook/dp/B006X9LY8O
  • 36. FINITE DOMAINS core.logiccore.logic fd/eq translates simple math to constraints over finite domain logic variables. (fd/eq (= TWO (+ (* 100 t) (* 10 w) o))) (fd/eq (= FOUR (+ (* 1000 f) (* 100 o) (* 10 u) r)))   (fd/eq (= (+ TWO TWO) FOUR)) T W O + T W O ------- F O U R
  • 37. FINITE DOMAINS core.logiccore.logic There are 7 unique solutions to the problem. (run* [q] (two-plus-two-is-four q)) T W O + T W O ------- F O U R ([734 734 1468] [765 765 1530] [836 836 1672] [846 846 1692] [867 867 1734] [928 928 1856] [938 938 1876])
  • 38. sudoku made easier core.logiccore.logic After setting up the logic variables and initializing state, the solution simply requires every row, column and square on the board to have distinct values. (defn solve [puzzle] (let [sd-num (fd/domain 1 2 3 4 5 6 7 8 9) board (repeatedly 81 lvar) rows (into [] (map vec (partition 9 board))) cols (apply map vector rows) squares (for [x (range 0 9 3) y (range 0 9 3)] (get-square rows x y))]   (run* [q] (== q board) (everyg #(fd/in % sd-num) board) (init-board board puzzle) (everyg fd/distinct rows) (everyg fd/distinct cols) (everyg fd/distinct squares)))) https://gist.github.com/swannodette/3217582
  • 39. sudoku made easier core.logiccore.logic matche is pattern matching syntax for conde. To unify the initial logic variables with a board, we require either the board have a 0 or that the logic variable unifies with the value of the board. (defn init-board [vars puzzle] (matche [vars puzzle] ([[] []] succeed) ([[_ . vs] [0 . ps]] (init-board vs ps)) ([[num . vs] [num . ps]] (init-board vs ps))))
  • 40. sudoku core.logiccore.logic (def puzzle1 [0 0 0 0 0 9 0 6 0 0 3 8 0 0 5 0 0 4 0 2 0 0 6 0 0 7 0 0 0 0 0 0 0 3 9 0 0 0 0 9 2 6 0 0 0 0 9 7 0 0 0 0 0 0 0 4 0 0 7 0 0 3 0 5 0 0 4 0 0 2 1 0 0 7 0 8 0 0 0 0 0]) (partition 9 (first (solve puzzle1))) ((7 1 4 2 8 9 5 6 3) (6 3 8 7 1 5 9 2 4) (9 2 5 3 6 4 1 7 8) (8 6 1 5 4 7 3 9 2) (4 5 3 9 2 6 7 8 1) (2 9 7 1 3 8 4 5 6) (1 4 9 6 7 2 8 3 5) (5 8 6 4 9 3 2 1 7) (3 7 2 8 5 1 6 4 9))