X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcontribs%2FLOGIC%2Fdatatypes%2FProof.ma;fp=matita%2Fcontribs%2FLOGIC%2Fdatatypes%2FProof.ma;h=8643eb826518b7a44ca534c1e2a563f082180005;hb=bfb5017ff7198b55a078c090f9cd23e3cbedaff4;hp=0000000000000000000000000000000000000000;hpb=20f2345a9a641c31a12ee77bf7fcd2e4e439b18e;p=helm.git diff --git a/matita/contribs/LOGIC/datatypes/Proof.ma b/matita/contribs/LOGIC/datatypes/Proof.ma new file mode 100644 index 000000000..8643eb826 --- /dev/null +++ b/matita/contribs/LOGIC/datatypes/Proof.ma @@ -0,0 +1,33 @@ +(**************************************************************************) +(* ___ *) +(* ||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/LOGIC/datatypes/Proof". + +(* PROOFS + - Naming policy: + - proofs: p q r s +*) + +include "preamble.ma". + +inductive Proof: Type \def + | lref: Nat \to Proof + | parx: Nat \to Proof + | impw: Proof \to Proof + | impi: Proof \to Proof + | impe: Proof \to Proof +(* + | impe: Proof \to Proof \to Proof \to Proof +*) +.