评论由:reiddraper发表的
好的,让我们将其翻译为使用{{gen/bind}}。就像嵌套属性一样,{{bind}}允许您创建依赖于另一个生成器值的生成器。例如,您的{{gen-random-path}}依赖于先前生成的{{matrix}}变量。因此,让我们编写一个返回{{matrix}}和{{random-path}}的生成器。
`
(def matrix-and-path
"返回一个二元组[matrix random-path]"
(gen/bind (gen-matrix 6)
(fn [matrix]
(gen/tuple (gen/return matrix) (gen-random-path matrix)))))
(prop/for-all [[matrix random-path] matrix-and-path]
(<= (cost (tsp matrix)) (cost random-path))
`