X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Ftests%2Fapply.ma;h=41bdd3afc63e19fec85e78d8137967dbd36ce871;hb=7bbce6bc163892cfd99cfcda65db42001b86789f;hp=9e86635170f0c5e7e16dd0f23d5b0ff7de144d2f;hpb=ee0b2d8f1807f88af0ae0683908ffbfc78c4f34b;p=helm.git diff --git a/helm/matita/tests/apply.ma b/helm/matita/tests/apply.ma index 9e8663517..41bdd3afc 100644 --- a/helm/matita/tests/apply.ma +++ b/helm/matita/tests/apply.ma @@ -1,4 +1,5 @@ -%% test _with_ the WHD on the apply argument +(* test _with_ the WHD on the apply argument *) +set "baseuri" "cic:/matita/tests/apply/". alias id "not" = "cic:/Coq/Init/Logic/not.con". alias id "False" = "cic:/Coq/Init/Logic/False.ind#xpointer(1/1)". @@ -6,19 +7,19 @@ alias id "False" = "cic:/Coq/Init/Logic/False.ind#xpointer(1/1)". theorem b: \forall x:Prop. (not x) \to x \to False. -intro. +intros. apply H. assumption. qed. -%% test _without_ the WHD on the apply argument +(* test _without_ the WHD on the apply argument *) -alias symbol "eq" (instance 0) = "leibnitz's equality". +alias symbol "eq" (instance 0) = "Coq's leibnitz's equality". theorem a: \forall A:Set. - \forall x,y : A. - not (x=y) \to not (x=y). -intro. + \forall x: A. + not (x=x) \to not (x=x). +intros. apply H. qed.