From: Enrico Tassi Date: Thu, 6 Jul 2006 08:18:26 +0000 (+0000) Subject: ... X-Git-Tag: make_still_working~7108 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=366d9ed0126462232d5bca9322c1250792f4f0f9;p=helm.git ... --- diff --git a/helm/software/matita/tests/tinycals.ma b/helm/software/matita/tests/tinycals.ma new file mode 100644 index 000000000..5cd2548a8 --- /dev/null +++ b/helm/software/matita/tests/tinycals.ma @@ -0,0 +1,49 @@ +(**************************************************************************) +(* ___ *) +(* ||M|| *) +(* ||A|| A project by Andrea Asperti *) +(* ||T|| *) +(* ||I|| Developers: *) +(* ||T|| The HELM team. *) +(* ||A|| http://helm.cs.unibo.it *) +(* \ / *) +(* \ / This file is distributed under the terms of the *) +(* v GNU General Public License Version 2 *) +(* *) +(**************************************************************************) + +set "baseuri" "cic:/matita/test/tinycals". + +theorem prova: + \forall A,B:Prop. + \forall H:A \to A \to A \to A \to A \to B.A \to B. +intros. +apply H; + [assumption + |3,5:assumption; + 4:assumption + |*:assumption + ] +qed. + +theorem prova1: + \forall A,B:Prop. + \forall H:A \to A \to A \to A \to A \to B.A \to B. +intros. +apply H; + [*:assumption + ] +qed. + +theorem prova2: + \forall A,B:Prop. + \forall H:A \to A \to A \to A \to A \to B.A \to B. +intros. +apply H; + [2:assumption + |assumption + 3,5:assumption + *:assumption + ] +qed. +