X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Flib%2Finconsistent.ma;fp=matita%2Fmatita%2Flib%2Finconsistent.ma;h=efac1e02cacca3cf548256435a194d038c606a0d;hb=5832735b721c0bd8567c8f0be761a9136363a2a6;hp=0000000000000000000000000000000000000000;hpb=064980eacc2efe70ffee96134d75dfa37506fc36;p=helm.git diff --git a/matita/matita/lib/inconsistent.ma b/matita/matita/lib/inconsistent.ma new file mode 100644 index 000000000..efac1e02c --- /dev/null +++ b/matita/matita/lib/inconsistent.ma @@ -0,0 +1,25 @@ +(**************************************************************************) +(* ___ *) +(* ||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 *) +(* *) +(**************************************************************************) + +include "basics/logic.ma". + +axiom boh: (False → False) = True. + +definition J: False → False ≝ λf. match f in False with [ ]. + +definition I2: True ≝ match boh with [ refl ⇒ J ]. + +let rec err (u: True): False ≝ match u with [ I ⇒ err I2 ]. + +lemma oops: False ≝ err I.