我在用 LiquidHaskell 证明以下定律时遇到了麻烦:
它被称为(之一)德摩根定律,并且简单地指出or
两个值的否定必须与每个值and
的否定相同。它已经被证明了很长时间,并且是 LiquidHaskell教程中的一个示例。我按照教程进行操作,但未能通过以下代码:
-- Test.hs
module Main where
main :: IO ()
main = return ()
(==>) :: Bool -> Bool -> Bool
False ==> False = True
False ==> True = True
True ==> True = True
True ==> False = False
(<=>) :: Bool -> Bool -> Bool
False <=> False = True
False <=> True = False
True <=> True = True
True <=> False = False
{-@ type TRUE = {v:Bool | Prop v} @-}
{-@ type FALSE = {v:Bool | not (Prop v)} @-}
{-@ deMorgan :: Bool -> Bool -> TRUE @-}
deMorgan :: Bool -> Bool -> Bool
deMorgan a b = not (a || b) <=> (not a && not b)
运行时liquid Test.hs
,我得到以下输出:
LiquidHaskell Copyright 2009-15 Regents of the University of California. All Rights Reserved.
**** DONE: Parsed All Specifications ******************************************
**** DONE: Loaded Targets *****************************************************
**** DONE: Extracted Core using GHC *******************************************
Working 0% [.................................................................]
Done solving.
**** DONE: solve **************************************************************
**** DONE: annotate ***********************************************************
**** RESULT: UNSAFE ************************************************************
Test.hs:23:16-48: Error: Liquid Type Mismatch
23 | deMorgan a b = not (a || b) <=> (not a && not b)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Inferred type
VV : Bool
not a subtype of Required type
VV : {VV : Bool | Prop VV}
In Context
现在我绝不是 LiquidHaskell 专家,但我很确定一定有问题。几年前我已经说服自己该身份成立,但为了确保我用所有可能的输入调用了该函数,并最终运行
λ: :l Test.hs
λ: import Test.QuickCheck
λ: quickCheck deMorgan
>>> +++ OK, passed 100 tests.
所以我在 Haskell 代码中似乎没有错字,错误一定在 LiquidHaskell 规范中。似乎 LiquidHaskell 无法推断出结果Bool
是严格的TRUE
:
Inferred type
VV : Bool
not a subtype of Required type
VV : {VV : Bool | Prop VV}
我的错误是什么?任何帮助表示赞赏!
PS:我正在使用z3
求解器,并运行 GHC 7.10.3。LiquidHaskell 版本是2009-15
.