diff options
author | gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2013-05-06 13:40:58 +0000 |
---|---|---|
committer | gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2013-05-06 13:40:58 +0000 |
commit | 9fa14555270fa8f2368a7f4df1510bd2937d25ec (patch) | |
tree | 5ca417f25ef2f0c2425820494f0a097b12f82b50 /tactics | |
parent | 683afb998ceb8302f3d9ec1d69cfe1ee86816c13 (diff) |
States: frozen states can hold closures
States.freeze takes ~marshallable:bool, so that (only) when we want to
marshal data to disk/network we can ask the freeze functions of the
summary to force lazy values. The flag is propagated to Lib and Summary.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16478 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r-- | tactics/auto.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml index 470d2e6cf..5aab5f252 100644 --- a/tactics/auto.ml +++ b/tactics/auto.ml @@ -463,7 +463,7 @@ let add_auto_init f = auto_init := (fun () -> init (); f ()) let init () = searchtable := Hintdbmap.empty; !auto_init () -let freeze () = !searchtable +let freeze _ = !searchtable let unfreeze fs = searchtable := fs let _ = Summary.declare_summary "search" |