标签: 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)?
H
c
P(c, a, b)
答案 0 :(得分:1)
答案是:
specialize H with c.