【发布时间】:2021-04-24 22:36:28
【问题描述】:
是否可以在 Isabelle/HOL 中编写递归 lambda 表达式?如果有,怎么做?
例如(一个愚蠢的):
fun thing :: "nat ⇒ nat" where
"thing x = (λx. if x=0 then x else …) x"
所以不是……我想编写应用于 x-1 的 λ 函数。
我该怎么做?提前致谢。
【问题讨论】:
标签: lambda isabelle lambda-calculus hol