我在 Taylor Wood 的这篇博客文章 中描述并解决了与我所解决的问题相似的“凑零钱”问题。以下是代码,添加了1个转录
(ns blah
(:require [clojure.core.logic :refer :all :as l]
[clojure.core.logic.fd :as fd]))
(defn productsumo [vars dens sum]
(fresh [vhead vtail dhead dtail product run-sum]
(conde
[(emptyo vars) (== sum 0)]
[(conso vhead vtail vars)
(conso dhead dtail dens)
(project [vhead]
(do (println vhead) succeed)) ;;<--- Just a lame goal that should print out the head..
(fd/* vhead dhead product)
(fd/+ product run-sum sum)
(productsumo vtail dtail run-sum)])))
(defn change [amount denoms]
(let [dens (sort > denoms)
vars (repeatedly (count dens) lvar)]
(run* [q]
;; we want a map from denominations to their quantities
(== q (zipmap dens vars))
;; prune problem space...
;; every var/quantity must be 0 <= n <= amount
(everyg #(fd/in % (fd/interval 0 amount)) vars)
;; the real work
(productsumo vars dens amount))))
user> (change 14 #{1 5 10})
<lvar:81678>
<lvar:81679>
<lvar:81680>
({10 0, 5 0, 1 14} {10 1, 5 0, 1 4} {10 0, 5 1, 1 9} {10 0, 5 2, 1 4})
当运行时,我没有得到预期的 LVar vhead
的投影或当前值,而通常在使用时我在 project
中会看到这样的值,我得到了 Lvar。有想法为什么是这样吗?
我的特定用例是对 productsumo 的修改,其中我需要一个键到重量的映射来代替这里的 coll dens
。我的初始方法 - 看起来是合理的 - 是使用上述 project
统一一个基于 vhead
当前值的成本 LVar,然后在使用产品计算中使用它。目前我总是在得到 LVar 而不是值。
有想法吗?