实际上,尝试在trustMe
其上进行不评估的模式匹配会refl
导致术语卡住。看到(部分)定义后面的原始操作的代码,也许是有启发性trustMe
的primTrustMe
:
(u', v') <- normalise (u, v)
if (u' == v') then redReturn (refl $ unArg u) else
return (NoReduction $ map notReduced [a, t, u, v])
在这里,u
和分别v
代表术语x
和y
。其余代码可以在模块中找到Agda.TypeChecking.Primitive
。
所以是的,如果x
和y
在定义上不相等,那么primTrustMe
(并且通过扩展trustMe
)在评估只是卡住的意义上表现为一个假设。然而,在将 Agda 编译为 Haskell 时,有一个关键的区别。看一下模块Agda.Compiler.MAlonzo.Primitives
,我们发现这段代码:
("primTrustMe" , Right <$> do
refl <- primRefl
flip runReaderT 0 $
term $ lam "a" (lam "A" (lam "x" (lam "y" refl))))
这看起来很可疑:refl
无论如何x
它总是会返回y
。让我们有一个测试模块:
module DontTrustMe where
open import Data.Nat
open import Data.String
open import Function
open import IO
open import Relation.Binary.PropositionalEquality
open import Relation.Binary.PropositionalEquality.TrustMe
postulate
trustMe′ : ∀ {a} {A : Set a} {x y : A} → x ≡ y
transport : ℕ → String
transport = subst id (trustMe {x = ℕ} {y = String})
main = run ∘ putStrLn $ transport 42
使用trustMe
inside transport
,编译模块 ( C-c C-x C-c
) 并运行生成的可执行文件,我们得到......你猜对了 - 一个段错误。
如果我们改为使用假设,我们最终会得到:
DontTrustMe.exe: MAlonzo Runtime Error:
postulate evaluated: DontTrustMe.trustMe′
如果您不打算编译您的程序(至少使用 MAlonzo),那么您唯一需要担心的是不一致(另一方面,如果您只对程序进行类型检查,那么不一致通常是个大问题)。
目前我可以想到两个用例,第一个是(如您所说)用于实现原语。标准库trustMe
在三个地方使用:在实现Name
s(Reflection
模块)、String
s(Data.String
模块)和Char
s(Data.Char
模块)的可判定相等性中。
第二个很像第一个,除了你自己提供数据类型和等式函数,然后使用trustMe
它跳过证明,只使用等式函数来定义一个可判定的等式。就像是:
open import Data.Bool
open import Relation.Binary
open import Relation.Binary.PropositionalEquality
open import Relation.Nullary
data X : Set where
a b : X
eq : X → X → Bool
eq a a = true
eq b b = true
eq _ _ = false
dec-eq : Decidable {A = X} _≡_
dec-eq x y with eq x y
... | true = yes trustMe
... | false = no whatever
where postulate whatever : _
但是,如果你搞砸了eq
,编译器也救不了你。