Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在保留旧版本的同时重写一个假设,并将重写的结果保存在一个新名称下。我该怎么做?
这是我能想到的较短的:
Lemma test T (P : T -> Prop) (x y : T) (heq : x = y) (hp : P x) : False. Proof. pose proof hp; rewrite heq in hp.
然而,YMMV,通常在使用 ssreflect 时,我会以一种不必经常使用这些技巧的方式来管理我的假设。