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}
?
You could try this, which is a bit complicated, but it does the job.
or
I am sure that William Byrd can do better.