src/HOL/Tools/Nitpick/nitpick_hol.ML
changeset 54816 10d48c2a3e32
parent 54489 03ff4d1e6784
child 55017 2df6ad1dbd66
--- a/src/HOL/Tools/Nitpick/nitpick_hol.ML	Thu Dec 19 10:15:12 2013 +0100
+++ b/src/HOL/Tools/Nitpick/nitpick_hol.ML	Thu Dec 19 13:43:21 2013 +0100
@@ -29,7 +29,7 @@
      star_linear_preds: bool,
      total_consts: bool option,
      needs: term list option,
-     tac_timeout: Time.time option,
+     tac_timeout: Time.time,
      evals: term list,
      case_names: (string * int) list,
      def_tables: const_table * const_table,
@@ -271,7 +271,7 @@
    star_linear_preds: bool,
    total_consts: bool option,
    needs: term list option,
-   tac_timeout: Time.time option,
+   tac_timeout: Time.time,
    evals: term list,
    case_names: (string * int) list,
    def_tables: const_table * const_table,
@@ -2069,8 +2069,7 @@
        #> the #> Goal.finish ctxt) goal
 
 val max_cached_wfs = 50
-val cached_timeout =
-  Synchronized.var "Nitpick_HOL.cached_timeout" (SOME Time.zeroTime)
+val cached_timeout = Synchronized.var "Nitpick_HOL.cached_timeout" Time.zeroTime
 val cached_wf_props =
   Synchronized.var "Nitpick_HOL.cached_wf_props" ([] : (term * bool) list)