(* Check the behaviour of Discriminate *)
(* Check that Discriminate tries Intro until *)
Lemma l1 : 0 = 1 -> False.
discriminate 1.
Qed.
Lemma l2 : forall H : 0 = 1, H = H.
discriminate H.
Qed.
(* Check the variants of discriminate *)
Goal O = S O -> True.
discriminate 1.
Undo.
intros.
discriminate H.
Undo.
Ltac g x := discriminate x.
g H.
Abort.
Goal (forall x y : nat, x = y -> x = S y) -> True.
intros.
try discriminate (H O) || exact I.
Qed.
Goal (forall x y : nat, x = y -> x = S y) -> True.
intros.
ediscriminate (H O).
instantiate (1:=O).
Abort.
(* Check discriminate on identity *)
Goal ~ identity 0 1.
discriminate.
Qed.
(* Check discriminate on types with local definitions *)
Inductive A := B (T := unit) (x y : bool) (z := x).
Goal forall x y, B x true = B y false -> False.
discriminate.
Qed.
¤ Dauer der Verarbeitung: 0.0 Sekunden
(vorverarbeitet)
¤
|
Haftungshinweis
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.
|