aboutsummaryrefslogtreecommitdiff
path: root/theories/Init
diff options
context:
space:
mode:
authorherbelin2001-08-05 19:04:16 +0000
committerherbelin2001-08-05 19:04:16 +0000
commit83c56744d7e232abeb5f23e6d0f23cd0abc14a9c (patch)
tree6d7d4c2ce3bb159b8f81a4193abde1e3573c28d4 /theories/Init
parentf7351ff222bad0cc906dbee3c06b20babf920100 (diff)
Expérimentation de NewDestruct et parfois NewInduction
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1880 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Init')
-rwxr-xr-xtheories/Init/Logic.v2
-rwxr-xr-xtheories/Init/Specif.v2
-rwxr-xr-xtheories/Init/Wf.v2
3 files changed, 3 insertions, 3 deletions
diff --git a/theories/Init/Logic.v b/theories/Init/Logic.v
index 2c5c0f569d..8c3ade1cd8 100755
--- a/theories/Init/Logic.v
+++ b/theories/Init/Logic.v
@@ -150,7 +150,7 @@ Section Logic_lemmas.
Proof.
Intros.
Cut (identity A x y).
- Destruct 1; Auto.
+ NewDestruct 1; Auto.
Elim H; Auto.
Qed.
diff --git a/theories/Init/Specif.v b/theories/Init/Specif.v
index eb7edad110..4882ea29ca 100755
--- a/theories/Init/Specif.v
+++ b/theories/Init/Specif.v
@@ -189,7 +189,7 @@ Lemma False_rect: (C:Type)False->C.
Proof.
Intros.
Cut Empty_set.
- Destruct 1.
+ NewDestruct 1.
Elim H.
Qed.
diff --git a/theories/Init/Wf.v b/theories/Init/Wf.v
index 214c33117d..bd55dcd1d8 100755
--- a/theories/Init/Wf.v
+++ b/theories/Init/Wf.v
@@ -29,7 +29,7 @@ Chapter Well_founded.
:= Acc_intro : (x:A)((y:A)(R y x)->(Acc y))->(Acc x).
Lemma Acc_inv : (x:A)(Acc x) -> (y:A)(R y x) -> (Acc y).
- Destruct 1; Trivial.
+ NewDestruct 1; Trivial.
Defined.
(* the informative elimination :