]> matita.cs.unibo.it Git - helm.git/blob - matita/contribs/LAMBDA-TYPES/Base-1/plist/defs.ma
tagged 0.5.0-rc1
[helm.git] / matita / contribs / LAMBDA-TYPES / Base-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 "Base-1/preamble.ma".
18
19 inductive PList: Set \def
20 | PNil: PList
21 | PCons: nat \to (nat \to (PList \to PList)).
22
23 definition PConsTail:
24  PList \to (nat \to (nat \to PList))
25 \def
26  let rec PConsTail (hds: PList) on hds: (nat \to (nat \to PList)) \def 
27 (\lambda (h0: nat).(\lambda (d0: nat).(match hds with [PNil \Rightarrow 
28 (PCons h0 d0 PNil) | (PCons h d hds0) \Rightarrow (PCons h d (PConsTail hds0 
29 h0 d0))]))) in PConsTail.
30
31 definition Ss:
32  PList \to PList
33 \def
34  let rec Ss (hds: PList) on hds: PList \def (match hds with [PNil \Rightarrow 
35 PNil | (PCons h d hds0) \Rightarrow (PCons h (S d) (Ss hds0))]) in Ss.
36
37 definition papp:
38  PList \to (PList \to PList)
39 \def
40  let rec papp (a: PList) on a: (PList \to PList) \def (\lambda (b: 
41 PList).(match a with [PNil \Rightarrow b | (PCons h d a0) \Rightarrow (PCons 
42 h d (papp a0 b))])) in papp.
43