]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/library/nat/nat.ma
update in groud_2 and models
[helm.git] / helm / software / matita / library / nat / nat.ma
index 9fce4df76a8b3dfbd7071582202ea648676d884b..83b489f06eb08a6772e0d7abb00e315032604ad0 100644 (file)
@@ -1,5 +1,5 @@
 (**************************************************************************)
-(*       ___                                                                 *)
+(*       ___                                                             *)
 (*      ||M||                                                             *)
 (*      ||A||       A project by Andrea Asperti                           *)
 (*      ||T||                                                             *)
@@ -18,6 +18,12 @@ inductive nat : Set \def
   | O : nat
   | S : nat \to nat.
 
+interpretation "Natural numbers" 'N = nat.
+
+default "natural numbers" cic:/matita/nat/nat/nat.ind.
+
+alias num (instance 0) = "natural number".
+
 definition pred: nat \to nat \def
  \lambda n:nat. match n with
  [ O \Rightarrow  O