1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "pts_dummy/convertibility.ma".
16 include "pts_dummy/types.ma".
18 (* PURE TYPE SYSTEMS OF THE λ-CUBE ********************************************)
20 inductive Cube_Ax: nat → nat → Prop ≝
21 | star_box: Cube_Ax 0 1
24 (* The λPω pure type system (a.k.a. λC or CC) *********************************)
26 inductive CC_Re: nat → nat → nat → Prop ≝
27 | star_star: CC_Re 0 0 0
28 | box_star : CC_Re 1 0 0
29 | box_box : CC_Re 1 1 1
30 | star_box : CC_Re 0 1 1
33 definition CC: pts ≝ mk_pts Cube_Ax CC_Re conv.
35 (* The λω pure type system (a.k.a. Fω) ****************************************)
37 inductive FO_Re: nat → nat → nat → Prop ≝
38 | star_star: FO_Re 0 0 0
39 | box_star : FO_Re 1 0 0
40 | box_box : FO_Re 1 1 1
43 definition FO: pts ≝ mk_pts Cube_Ax FO_Re conv.