Library Mtac2Tests.removetest

Require Import Mtac2.Mtac2.

Example test_remove1 (x y z : nat) : x > y -> x > y.
MProof.
  Fail M.remove x (M.ret id).   Fail M.remove (id z) (M.ret id).   M.remove z (M.ret id). Qed.

Example test_remove2 (z y x : nat) : x > y -> x > y.
MProof.
  M.remove z (M.ret id). Qed.

Example test_remove3 : forall x y z : nat, x > y -> x > y.
MProof.
  (\nu x, \nu y, \nu z : nat,
   r1 <- M.remove z (M.ret id);
   r2 <- M.abs_fun z r1;
   r3 <- M.abs_fun (P:=fun y=>forall z, x > y -> x > y) y r2;
   M.abs_fun (P:=fun x=>forall y, nat -> x > y -> x > y) x r3)%MC.
Qed.

Example test_remove4 : forall z x y : nat, x > y -> x > y.
MProof.
  (\nu z, \nu x, \nu y : nat,
   r1 <- M.remove z (M.ret id);
   r2 <- M.abs_fun y r1;
   r3 <- M.abs_fun (P:= fun x =>forall y : nat, x > y -> x > y) x r2;
   M.abs_fun z r3)%MC.
Qed.

Lemma negb_involutive : forall b b2:bool, negb (negb b) = b.
MProof.
  cintros b {- T.destruct b -};; T.select bool >>= T.clear ;; intros b2.
  - T.reflexivity.
  - T.reflexivity.
Qed.

Lemma negb_involutive' (n:nat) : forall b b2:bool, negb (negb b) = b.
MProof.
  cintros b {- T.destruct b -};; T.select bool >>= T.clear ;; intros b2.
  - T.reflexivity.
  - T.reflexivity.
Qed.

Lemma negb_involutive'' (n1 n2 n3:nat) : forall b b2:bool, negb (negb b) = b.
MProof.
  cintros b {- T.destruct b -};; T.select bool >>= T.clear ;; intros b2.
  - T.reflexivity.
  - T.reflexivity.
Qed.

Goal True -> True.
MProof.
  intro x.
  T.try (T.clear x &> T.raise NotAGoal).
  T.assumption.
Qed.

Goal True -> True -> True.
MProof.
  cintros x y {- T.try (T.clear x &> T.raise NotAGoal) -}.
  T.assumption.
Qed.

Goal True -> True -> True.
MProof.
  cintros x y {- T.try (T.clear y &> T.raise NotAGoal) -}.
  T.assumption.
Qed.