]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/Basic_2/computation/acp_cr.ma
- slicing relation for the global environment defined (gdrop)
[helm.git] / matita / matita / contribs / lambda_delta / Basic_2 / computation / acp_cr.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/aarity.ma".
16 include "Basic_2/grammar/lenv.ma".
17
18 (* ABSTRACT CANDIDATES OF REDUCIBILITY **************************************)
19
20 (* the abstract candidate of reducibility associated to an atomic arity *)
21 let rec acr (R:lenv→predicate term) (A:aarity) (L:lenv) on A: predicate term ≝
22 λT. match A with
23 [ AAtom     ⇒ R L T
24 | APair B A ⇒ ∀V. acr R B L V → acr R A L (𝕔{Appl} V. T)
25 ].
26
27 interpretation
28    "candidate of reducibility (abstract)"
29    'InEInt R L T A = (acr R A L T).