将hypotesis应用于变量

时间:2015-03-28 10:41:18

标签: coq proof predicates

让我说我正处于证据的中间,我有这样的假设:

a : nat
b : nat
c : nat
H : somePred a b

和somePred的定义说:

Definition somePred (p:nat) (q:nat) : Prop := forall (x : nat), P(x, p, q).

如何将H应用于c并获取P(c, a, b)

1 个答案:

答案 0 :(得分:1)

答案是:

specialize H with c.