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 "delayed_updating/syntax/path.ma".
16 include "delayed_updating/notation/functions/class_b_0.ma".
18 (* BALANCE CONDITION FOR PATH ***********************************************)
20 (* This condition applies to a structural path *)
21 inductive pbc: predicate path ≝
23 | pbc_redex: ∀b. pbc b → pbc (𝗔◗b◖𝗟)
24 | pbc_after: ∀b1,b2. pbc b1 → pbc b2 → pbc (b1●b2)
28 "balance condition (path)"