]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/ground_1/plist/defs.ma
- we generate the terms in anticipated form (the are easier to debug)
[helm.git] / matita / matita / contribs / lambdadelta / ground_1 / plist / defs.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 (* This file was automatically generated: do not edit *********************)
16
17 include "ground_1/preamble.ma".
18
19 inductive PList: Type[0] \def
20 | PNil: PList
21 | PCons: nat \to (nat \to (PList \to PList)).
22
23 let rec PConsTail (hds: PList) on hds: nat \to (nat \to PList) \def \lambda 
24 (h0: nat).(\lambda (d0: nat).(match hds with [PNil \Rightarrow (PCons h0 d0 
25 PNil) | (PCons h d hds0) \Rightarrow (let TMP_855 \def (PConsTail hds0 h0 d0) 
26 in (PCons h d TMP_855))])).
27
28 let rec Ss (hds: PList) on hds: PList \def match hds with [PNil \Rightarrow 
29 PNil | (PCons h d hds0) \Rightarrow (let TMP_857 \def (S d) in (let TMP_856 
30 \def (Ss hds0) in (PCons h TMP_857 TMP_856)))].
31
32 let rec papp (a: PList) on a: PList \to PList \def \lambda (b: PList).(match 
33 a with [PNil \Rightarrow b | (PCons h d a0) \Rightarrow (let TMP_858 \def 
34 (papp a0 b) in (PCons h d TMP_858))]).
35