]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/library/nat/nat.ma
CProp hierarchy is there!
[helm.git] / helm / software / matita / library / nat / nat.ma
index b600072c61ba97cfa9e862251d04c566b3a0e765..9fce4df76a8b3dfbd7071582202ea648676d884b 100644 (file)
@@ -12,8 +12,6 @@
 (*                                                                        *)
 (**************************************************************************)
 
-set "baseuri" "cic:/matita/nat/nat".
-
 include "higher_order_defs/functions.ma".
 
 inductive nat : Set \def
@@ -26,7 +24,7 @@ definition pred: nat \to nat \def
  | (S p) \Rightarrow p ].
 
 theorem pred_Sn : \forall n:nat.n=(pred (S n)).
- intros. reflexivity.
+ intros. simplify. reflexivity.
 qed.
 
 theorem injective_S : injective nat nat S.