summaryrefslogtreecommitdiff
path: root/backend/Coloringaux.ml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Coloringaux.ml')
-rw-r--r--backend/Coloringaux.ml5
1 files changed, 2 insertions, 3 deletions
diff --git a/backend/Coloringaux.ml b/backend/Coloringaux.ml
index 0420972..02081d5 100644
--- a/backend/Coloringaux.ml
+++ b/backend/Coloringaux.ml
@@ -169,13 +169,12 @@ end
module IntSet = Set.Make(struct
type t = int
- let compare x y =
- if x < y then -1 else if x > y then 1 else 0
+ let compare (x:int) (y:int) = compare x y
end)
module IntPairSet = Set.Make(struct
type t = int * int
- let compare (x1, y1) (x2, y2) =
+ let compare ((x1, y1): (int * int)) (x2, y2) =
if x1 < x2 then -1 else
if x1 > x2 then 1 else
if y1 < y2 then -1 else