]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/rewrite.ma
packaging cleanup: get rid of ancient debhelpers, use dh_install
[helm.git] / helm / matita / tests / rewrite.ma
index 67da01e89c1cab029a85b18392fed4fdcfdb30cd..ebb54f126588f9dd5abb4895a40d6286a155ddc3 100644 (file)
@@ -1,23 +1,49 @@
-set "baseuri" "cic:/matita/tests/".
+(**************************************************************************)
+(*       ___                                                              *)
+(*      ||M||                                                             *)
+(*      ||A||       A project by Andrea Asperti                           *)
+(*      ||T||                                                             *)
+(*      ||I||       Developers:                                           *)
+(*      ||T||         The HELM team.                                      *)
+(*      ||A||         http://helm.cs.unibo.it                             *)
+(*      \   /                                                             *)
+(*       \ /        This file is distributed under the terms of the       *)
+(*        v         GNU General Public License Version 2                  *)
+(*                                                                        *)
+(**************************************************************************)
+
+set "baseuri" "cic:/matita/tests/rewrite/".
+include "coq.ma".
 
 alias id "nat" = "cic:/Coq/Init/Datatypes/nat.ind#xpointer(1/1)".
 alias num (instance 0) = "natural number".
-alias symbol "eq" (instance 0) = "leibnitz's equality". 
-alias symbol "plus" (instance 0) = "natural plus".
-
+alias symbol "eq" (instance 0) = "Coq's leibnitz's equality". 
+alias symbol "plus" (instance 0) = "Coq's natural plus".
+alias id "plus_n_O" = "cic:/Coq/Init/Peano/plus_n_O.con".
 
 theorem a:
   \forall a,b:nat.
   a = b \to b + a + b + a= (\lambda j.((\lambda w.((\lambda x.x + b + w + j) a)) b)) a.
 intros.
-rewrite right H in \vdash (? ? ? ((\lambda j.((\lambda w.%) ?)) ?)).
+rewrite < H in \vdash (? ? ? ((\lambda j.((\lambda w.%) ?)) ?)).
 
-rewrite right H in \vdash (? ? % ?).
+rewrite < H in \vdash (? ? % ?).
 
-simplify in \vdash (? ? ? ((\lambda x.((\lambda y.%) ?)) ?)).
+simplify in \vdash (? ? ? ((\lambda _.((\lambda _.%) ?)) ?)).
 
-rewrite right H in \vdash (? ? ? (% ?)).
+rewrite < H in \vdash (? ? ? (% ?)).
 simplify.
 reflexivity.
 qed.
  
+theorem t: \forall n. 0=0 \to n = n + 0.
+ intros.
+ apply plus_n_O.
+qed.
+
+(* In this test "rewrite < t" should open a new goal 0=0 and put it in *)
+(* the goallist so that the THEN tactical closes it using reflexivity. *)
+theorem foo: \forall n. n = n + 0.
+ intros.
+ rewrite < t; reflexivity.
+qed.