aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/Definitions.v
blob: defb12897a0c63a7df4b3d10091729ce227a5ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(*i $Id $ i*)

(*s 
  Axiomatisation of a numerical set 
  It will be instantiated by Z and R later on
  We choose to introduce many operation to allow flexibility in definition 
  ([S] is primitive in the definition of [nat] while [add] and [one] 
   are primitive in the definition 
*)

Parameter N:Type.
Parameter zero:N.
Parameter one:N.
Parameter add:N->N->N.
Parameter S:N->N.

(*s Relations *)
Parameter eq,lt,le,gt,ge:N->N->Prop.    
Definition neq [x,y:N] := (eq x y)->False.