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 "preamble.ma".
17 (* APPLICATIONS *******************************************************)
19 definition u0_i: ∀T:Type[0]. T → T ≝
22 definition u0_k: ∀T,U:Type[0]. T → U → T ≝
25 definition u0_s: ∀T,U1,U2:Type[0]. (T → U1 → U2) → (T → U1) → (T → U2) ≝
26 λT,U1,U2,f,g,a. f a (g a).