Synthesize smallest map satisfying featurec constraints in core.logic?

119 Views Asked by At

In core.logic, is there a way to translate the outputs of a program like

(run 2 [q]
  (fresh [a]
    (featurec q {:foo a})
    (membero a '(5))
    (conde 
      ((featurec q {:bar 2}))
      ((featurec q {:baz 2})))))

into the smallest maps that satisfy each solution's constraints, in this case {:foo 5, :bar 2} and {:foo 5, :baz 2}?

1

There are 1 best solutions below

1
On

You could try this, which is a bit complicated, but it does the job.

(->> (run 1 [q]
              (fresh [l1 l2 a]
                     (membero a '(5))
                     (emptyo l1)
                     (conso [:foo a] l1 l2)
                     (conso [:bar 2] l2 q)))
         (first)
         (into {}))

or

(run 1 [q]
         (fresh [a B]
                (membero a '(5))
                (== B 2)
                (== q {:foo a :bar B})))

I am sure that William Byrd can do better.