]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/Basic_2/substitution/lift_vector.ma
91b03c0b9b5a1339cab8c7ecd152e6a9dab4213e
[helm.git] / matita / matita / contribs / lambda_delta / Basic_2 / substitution / lift_vector.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 include "Basic_2/grammar/term_vector.ma".
16 include "Basic_2/substitution/lift.ma".
17
18 (* RELOCATION ***************************************************************)
19
20 inductive liftv (d,e:nat) : relation (list term) ≝
21 | liftv_nil : liftv d e ◊ ◊
22 | liftv_cons: ∀T1s,T2s,T1,T2.
23               ⇑[d, e] T1 ≡ T2 → liftv d e T1s T2s →
24               liftv d e (T1 :: T1s) (T2 :: T2s)
25 .
26
27 interpretation "relocation (vector)" 'RLift d e T1s T2s = (liftv d e T1s T2s).
28