From ea0af44f848993cc26834ab1f3dd6162bec906d0 Mon Sep 17 00:00:00 2001 From: Enrico Tassi Date: Tue, 3 Jun 2008 08:12:38 +0000 Subject: [PATCH] xxx --- helm/software/matita/tests/diabolic_fix.ma | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 helm/software/matita/tests/diabolic_fix.ma 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 -- 2.39.2