gpt4 book ai didi

functional-programming - Coq 中的相互递归类型为 `decide equality`?

转载 作者:行者123 更新时间:2023-12-02 23:22:07 25 4
gpt4 key购买 nike

有没有办法在 Coq 中对相互递归类型使用决定相等策略?

例如,如果我有这样的东西:

Inductive LTree : Set :=
| LNil
| LNode (x: LTree) (y: RTree)
with RTree : Set :=
| RNil
| RNode (x: Tree) (y: RTree).

Lemma eq_LTree : forall (x y : LTree), {x = y} + {x <> y}.
Proof.
decide equality; auto.

这给我留下了目标:

y0: RTree
y1: RTree
{y0 = y1} + {y0 <> y1}

但在我导出 RTree 的等式之前我无法解决这个问题,这也会有同样的问题。

最佳答案

在这种情况下,如果您同时证明 LTreeRTree 的两个引理,则可以使用决定相等性:

Lemma eq_LTree : forall (x y : LTree), {x = y} + {x <> y}
with eq_RTree : forall (x y : RTree), {x = y} + {x <> y}.
Proof.
decide equality.
decide equality.
Qed.

关于functional-programming - Coq 中的相互递归类型为 `decide equality`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48268929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com