]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/contribs/RELATIONAL/NLE/props.ma
- bug fix in destruct
[helm.git] / matita / contribs / RELATIONAL / NLE / props.ma
index db1476309eeca1e40e17833d0705519e1e49c6b8..576a079ae3cb6ae70e44aa60b1fdad08f5222423 100644 (file)
@@ -17,15 +17,15 @@ set "baseuri" "cic:/matita/RELATIONAL/NLE/props".
 include "NLE/order.ma".
 
 theorem nle_trans_succ: \forall x,y. x <= y \to x <= succ y.
- intros. elim H; clear H x y; auto.
+ intros. elim H; clear H x y; autobatch.
 qed.
 
 theorem nle_gt_or_le: \forall x, y. y > x \lor y <= x.
  intros 2; elim y; clear y;
- [ auto
+ [ autobatch
  | decompose;
    [ lapply linear nle_inv_succ_1 to H1
    | lapply linear nle_lt_or_eq to H1
-   ]; decompose; subst; auto depth = 4
+   ]; decompose; destruct; autobatch depth = 4
  ].
 qed.