1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 (* This file was automatically generated: do not edit *********************)
17 include "ground_1/preamble.ma".
19 rec definition blt (m: nat) (n: nat) on n: bool \def match n with [O
20 \Rightarrow false | (S n0) \Rightarrow (match m with [O \Rightarrow true | (S
21 m0) \Rightarrow (blt m0 n0)])].