src/Pure/ML-Systems/time_limit.ML
author chaieb
Sat, 20 Oct 2007 12:09:30 +0200
changeset 25111 d52a58b51f1f
parent 24688 a5754ca5c510
child 29564 f8b933a62151
permissions -rw-r--r--
neq0_conv removed from [iff] -- causes problems by simple goals with blast, auto etc...

(*  Title:      Pure/ML-Systems/time_limit.ML
    ID:         $Id$
    Author:     Makarius

Dummy implementation of NJ's TimeLimit structure.
*)

signature TIME_LIMIT =
sig
  exception TimeOut
  val timeLimit : Time.time -> ('a -> 'b) -> 'a -> 'b
end;

structure TimeLimit: TIME_LIMIT =
struct

exception TimeOut;
fun timeLimit _ f x = f x;

end;