X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2FEXPORT%2Fexportprove%2Fprove%2Fprovastruct.v;fp=helm%2FEXPORT%2Fexportprove%2Fprove%2Fprovastruct.v;h=0000000000000000000000000000000000000000;hp=503c7e0ac24019fc916ec2f7fa0a90397a4b95a2;hb=869549224eef6278a48c16ae27dd786376082b38;hpb=89262281b6e83bd2321150f81f1a0583645eb0c8 diff --git a/helm/EXPORT/exportprove/prove/provastruct.v b/helm/EXPORT/exportprove/prove/provastruct.v deleted file mode 100644 index 503c7e0ac..000000000 --- a/helm/EXPORT/exportprove/prove/provastruct.v +++ /dev/null @@ -1,22 +0,0 @@ -Require Export Xml. - -Section a. - Variable A:Prop. - Section b1. - Variable B:Prop. - Axiom axiom: A -> (A -> B) ->B. - Theorem th1: A -> (A -> B) -> A/\B. - Intros A' H. - Split. - Assumption. - Apply axiom; Assumption. - Qed. - End b1. - Section b2. - Variable B:Set. - Axiom axiom': (A:Prop)A->A. - End b2. - Theorem th1': (A:Prop)A->A. - Auto. - Qed. -End a.