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 include "NLE/order.ma".
19 theorem nle_trans_succ: ∀x,y. x ≤ y → x ≤ succ y.
20 intros; elim H; clear H x y; autobatch.
23 theorem nle_gt_or_le: ∀x, y. y > x ∨ y ≤ x.
24 intros 2; elim y; clear y;
27 [ lapply linear nle_inv_succ_1 to H1
28 | lapply linear nle_lt_or_eq to H1
29 ]; decompose; destruct; autobatch depth = 4