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 (**************************************************************************)
17 (* ORDER RELATION BETWEEN PROOFS IN CONTEXT
20 include "Weight/defs.ma".
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
28 interpretation "order relation between proofs in context"
30 (cic:/matita/LOGIC/WLT/defs/WLT.ind#xpointer(1/1) x1 y1 x2 y2).
32 notation "hvbox([a1, b1] break \lt [a2, b2])"
33 non associative with precedence 45
34 for @{ 'lt2 $a1 $b1 $a2 $b2 }.