src/Pure/ML-Systems/time_limit.ML
author wenzelm
Thu, 12 Jun 2008 22:29:51 +0200
changeset 27184 b1483d423512
parent 24688 a5754ca5c510
child 29564 f8b933a62151
permissions -rw-r--r--
export just one setup function; more antiquotations; to_nnf: import open, avoiding internal variables (bounds); ThmCache: added table of seen fact names; reorganized skolem_thm/skolem_fact/saturate_skolem_cache: maintain seen fact names, ensure idempotent operation for Theory.at_end; removed obsolete skolem attribute (NB: official fact name unavailable here);

(*  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;