我正在研究一个包含这些数据类型定义的haskell程序:
data Term t (deriving Eq) where
Con :: a -> Term a
And :: Term Bool -> Term Bool -> Term Bool
Or :: Term Bool -> Term Bool -> Term Bool
Smaller :: Term Int -> Term Int -> Term Bool
Plus :: Term Int -> Term Int -> Term Int
数据公式ts在哪里
data Formula ts where
Body :: Term Bool -> Formula ()
Forall :: Show a
=> [a] -> (Term a -> Formula as) -> Formula (a, as)
还有一个eval函数,它将每个Term t评估为:
eval :: Term t -> t
eval (Con i) =i
eval (And p q)=eval p && eval q
eval (Or p q)=eval p || eval q
eval(Smaller n m)=eval n < eval m
eval (Plus n m) = eval n + eval m
以下检查公式的函数可以满足任何可能的值替换:
satisfiable :: Formula ts -> Bool
satisfiable (Body( sth ))=eval sth
satisfiable (Forall xs f) = any (satisfiable . f . Con) xs
现在,我被要求编写解决给定公式的解决方案函数:
solutions :: Formula ts -> [ts]
另外,我有以下公式作为测试示例,我希望我的解决方案的行为如下:
ex1 :: Formula ()
ex1 = Body (Con True)
ex2 :: Formula (Int, ())
ex2 = Forall [1..10] $ \n ->
Body $ n `Smaller` (n `Plus` Con 1)
ex3 :: Formula (Bool, (Int, ()))
ex3 = Forall [False, True] $ \p ->
Forall [0..2] $ \n ->
Body $ p `Or` (Con 0 `Smaller` n)
解决方案函数应返回:
*Solver>solutions ex1
[()]
*Solver> solutions ex2
[(1,()),(2,()),(3,()),(4,()),(5,()),(6,()),(7,()),(8,()),(9,()),(10,())]
*Solver> solutions ex3
[(False,(1,())),(False,(2,())),(True,(0,())),(True,(1,())),(True,(2,()))]
到目前为止,我的此功能代码是:
solutions :: Formula ts -> [ts]
solutions(Body(sth))|satisfiable (Body( sth ))=[()]
|otherwise=[]
solutions(Forall [a] f)|(satisfiable (Forall [a] f))=[(a,(helper $(f.Con) a) )]
|otherwise=[]
solutions(Forall (a:as) f)=solutions(Forall [a] f)++ solutions(Forall as f)
并且辅助函数是:
helper :: Formula ts -> ts
helper (Body(sth))|satisfiable (Body( sth ))=()
helper (Forall [a] f)|(satisfiable (Forall [a] f))=(a,((helper.f.Con) a) )
最后,这是我的问题:使用这个解决方案功能,我可以解决ex1和ex2之类的公式没有任何问题,但问题是我无法解决ex3。意思是我的函数不能用于公式其中包括嵌套的“Forall”。任何帮助我如何做到这一点,将不胜感激,提前谢谢。
答案 0 :(得分:2)
solutions
必须是递归的,这样才能剥离任意数量的Forall
层:
solutions :: Formula ts -> [ts]
solutions (Body term) = [() | eval term]
solutions (Forall xs formula) = [ (x, ys) | x <- xs, ys <- solutions (formula (Con x)) ]
示例:
λ» solutions ex1
[()]
λ» solutions ex2
[(1,()),(2,()),(3,()),(4,()),(5,()),(6,()),(7,()),(8,()),(9,()),(10,())]
λ» solutions ex3
[(False,(1,())),(False,(2,())),(True,(0,())),(True,(1,())),(True,(2,()))]
(另外,我认为Forall
名称具有误导性,应该重命名为Exists
,因为您的satisfiable
功能(以及我的solutions
功能,保持精神)接受公式,其中有一些变量的选择,以评估True
)