From: Enrico Tassi Date: Tue, 3 Jun 2008 08:12:38 +0000 (+0000) Subject: xxx X-Git-Tag: make_still_working~5092 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=ea0af44f848993cc26834ab1f3dd6162bec906d0;p=helm.git xxx --- diff --git a/helm/software/matita/tests/diabolic_fix.ma b/helm/software/matita/tests/diabolic_fix.ma new file mode 100644 index 000000000..0b0583ee5 --- /dev/null +++ b/helm/software/matita/tests/diabolic_fix.ma @@ -0,0 +1,30 @@ +(**************************************************************************) +(* ___ *) +(* ||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 "nat/nat.ma". + +definition f := + λs1,s2:nat. + let rec aux (s3:nat → nat) (x:nat) on x := + match x with + [ O ⇒ s3 (S x) + | S m ⇒ aux2 s3 m] + and aux2 (s3:nat → nat) (x:nat) on x := + match x with + [ O ⇒ s3 x + | S m ⇒ aux s3 m] + in aux. + +definition g := + λw. \ No newline at end of file