]> matita.cs.unibo.it Git - helm.git/blob - matita/contribs/LOGIC/WLT/defs.ma
tagged 0.5.0-rc1
[helm.git] / matita / contribs / LOGIC / WLT / 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
16
17 (* ORDER RELATION BETWEEN PROOFS IN CONTEXT
18 *)
19
20 include "Weight/defs.ma".
21
22 inductive WLT (Q1:Context) (p1:Proof) (Q2:Context) (p2:Proof): Prop \def
23    | wlt_intro: \forall m,m1. Weight m Q1 p1 m1 \to
24                 \forall m2. Weight m Q2 p2 m2 \to
25                 m1 < m2 \to WLT Q1 p1 Q2 p2               
26 .
27
28 interpretation "order relation between proofs in context" 
29    'lt2 x1 y1 x2 y2 = 
30       (cic:/matita/LOGIC/WLT/defs/WLT.ind#xpointer(1/1) x1 y1 x2 y2).
31
32 notation "hvbox([a1, b1] break \lt [a2, b2])" 
33   non associative with precedence 45
34 for @{ 'lt2 $a1 $b1 $a2 $b2 }.