X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Ftests%2Finversion2.ma;h=8261b33f07355eefe305b50c3e406de595116972;hb=e085135177f7b3b74b410d47a4f3bca1784b60b1;hp=65dc75d4082f1ddecd21bd866d5de31e705f2d69;hpb=55b82bd235d82ff7f0a40d980effe1efde1f5073;p=helm.git diff --git a/helm/software/matita/tests/inversion2.ma b/helm/software/matita/tests/inversion2.ma index 65dc75d40..8261b33f0 100644 --- a/helm/software/matita/tests/inversion2.ma +++ b/helm/software/matita/tests/inversion2.ma @@ -12,8 +12,8 @@ (* *) (**************************************************************************) -set "baseuri" "cic:/matita/tests/inversion/". -include "legacy/coq.ma". + +include "coq.ma". inductive nat : Set \def O : nat @@ -24,7 +24,7 @@ inductive le (n:nat) : nat \to Prop \def leO : le n n | leS : \forall m. le n m \to le n (S m). -theorem le_inv: +theorem le_inv2: \forall n,m. \forall P: nat -> nat -> Prop. ? -> ? -> le n m -> P n m. @@ -59,5 +59,5 @@ theorem test_inversion: \forall n. le n O \to n=O. (* elim H. BUG DI UNSHARING *) (*apply (ledx_ind (\lambda x.\lambda y. n=x \to O=y \to x=y) ? ? ? ? H).*) simplify. intros. reflexivity. - simplify. intros. discriminate H3. + simplify. intros. destruct H3. qed.