【发布时间】:2018-02-02 12:17:12
【问题描述】:
我想用符号来表示谓词test如下:
Variable A B : Type.
Inductive test : A -> B -> A -> B -> Prop :=
| test1 : forall a1 a2 b1 b2,
a1 \ b1 || a2 \ b2
where "c1 '\' st '||' c2 '\' st'" := (test c1 st c2 st')
.
为什么 Coq 不能接受这种表示法?
【问题讨论】:
标签: coq