src/Tools/Metis/src/Ordered.sml
author ballarin
Tue, 18 Sep 2007 18:51:07 +0200
changeset 24639 9b73bc9b05a1
parent 23510 4521fead5609
child 39353 7f11d833d65b
permissions -rw-r--r--
Defunctorised transitivity reasoner; locale interpretation requires dynamic instances.

(* ========================================================================= *)
(* ORDERED TYPES                                                             *)
(* Copyright (c) 2004-2006 Joe Hurd, distributed under the BSD License *)
(* ========================================================================= *)

structure IntOrdered =
struct type t = int val compare = Int.compare end;

structure StringOrdered =
struct type t = string val compare = String.compare end;