【发布时间】:2015-07-28 21:07:28
【问题描述】:
我想在 agda 中编写给定的 coq 代码。
Definition included (D1 D2:R -> Prop) : Prop := forall x:R, D1 x -> D2 x.
这种方式我试过了..
data included (D1 D2 : R -> Set) : Set where
forall x : R D1 x -> D2 x
我知道问题出在第二行,但如何解决。我们需要定义构造函数吗?我将如何做到这一点?
请帮忙。
【问题讨论】: