给出一个谓词“p”,它表明解决方案是否足够好。成本函数“f”表示可能的解决方案有多好,以及在一系列可能的解决方案中搜索“最佳”(即最低成本)解决方案的函数。取消评估的惯用方法如何 - 如果谓词确保当前解决方案“足够好” - 看起来像。
即。类似的东西:
let search p f solutionSpace =
solutionSpace |> Seq.map (fun x -> f x, x)
|> Seq.ignoreAllFollowingElementsWhenPredicateIsTrue (fun (c, s) -> p c)
|> Seq.minBy (fun (c, _) -> c)
答案 0 :(得分:5)
这在F#中称为Seq.takeWhile
(当谓词返回false时,停止序列)。
使用示例:
let search p f solutionSpace =
solutionSpace |> Seq.map (fun x -> f x, x)
|> Seq.takeWhile (fun (c, s) -> not (p c))
|> Seq.minBy (fun (c, _) -> c)