下面的代码在 Haskell 中是完全可以的:
dh :: Int -> Int -> (Int, Int)
dh d q = (2^d, q^d)
a = dh 2 (fst b)
b = dh 3 (fst a)
Agda 中的类似代码无法编译(终止检查失败):
infixl 9 _^_
_^_ : ℕ → ℕ → ℕ
x ^ zero = 1
x ^ suc n = x * (x ^ n)
dh : ℕ -> ℕ -> ℕ × ℕ
dh d q = 2 ^ d , q ^ d
mutual
a = dh 2 (proj₁ b)
b = dh 3 (proj₁ a)
a
使用的定义在a
结构上不是更小,因此是循环。似乎终止检查器不会查看dh
.
我试过使用 coduction,设置选项--termination-depth=4
- 没有帮助。{-# NO_TERMINATION_CHECK #-}
在块内插入会有所mutual
帮助,但它看起来像作弊。
有没有一种干净的方法可以让 Agda 编译代码?Agda 的终止检查器是否有一些基本限制?