aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/evar.ml
blob: d7e32626f51b5e0451cd804f918bbd76bc46370a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

type t = int

let repr x = x
let unsafe_of_int x = x
let compare = Int.compare
let equal = Int.equal

module Self =
struct
  type _t = t
  type t = _t
  let compare = compare
end

module Set = Set.Make(Self)
module Map = CMap.Make(Self)