]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/contribs/RELATIONAL/NLE/defs.ma
auto new => auto new library in those tests that use Coq's library
[helm.git] / matita / contribs / RELATIONAL / NLE / defs.ma
index 19e45c3bcb56eec0ef2bec3a3b2c56008fdb6375..a9b33561db8d542265c989c5fd6898ff11aab35c 100644 (file)
 
 set "baseuri" "cic:/matita/RELATIONAL/NLE/defs".
 
-include "Nat/defs.ma".
+include "NPlus/defs.ma".
 
-inductive NLE: Nat \to Nat \to Prop \def
-   | NLE_zero: \forall q. NLE zero q
-   | NLE_succ: \forall p,q. NLE p q \to NLE (succ p) (succ q).
+definition NLE: Nat \to Nat \to Prop \def
+   \lambda q,r. \exists p. (p + q == r). 
+
+(*CSC: the URI must disappear: there is a bug now *)
+interpretation "natural 'less or equal to'" 'leq x y =
+   (cic:/matita/RELATIONAL/NLE/defs/NLE.con x y).
+
+(*CSC: the URI must disappear: there is a bug now *)
+interpretation "natural 'less than'" 'lt x y = 
+   (cic:/matita/RELATIONAL/NLE/defs/NLE.con 
+      (cic:/matita/RELATIONAL/Nat/defs/Nat.ind#xpointer(1/1/2) x) y).