From c9917c210da30521673e843b626359f4a1051e74 Mon Sep 17 00:00:00 2001 From: letouzey Date: Mon, 22 Apr 2013 14:39:07 +0000 Subject: code simplifications concerning Summary - Most of the time, the table registered via Summary.declare_summary is just a single reference. A new function Summary.ref now allows to both declare this ref and register it to summary in one shot. - Clarifications concerning the role of [init_function]. For statically registered tables that don't need a special initializer, just do nothing there (see the new Summary.nop function). Beware: now that Summary exports a function named "ref", any code that do an "open Summary" will probably fail to compile. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16441 85f007b7-540e-0410-9357-904b9bb8a0f7 --- library/dischargedhypsmap.ml | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'library/dischargedhypsmap.ml') diff --git a/library/dischargedhypsmap.ml b/library/dischargedhypsmap.ml index c26f652df..64267db01 100644 --- a/library/dischargedhypsmap.ml +++ b/library/dischargedhypsmap.ml @@ -10,28 +10,10 @@ open Libnames type discharged_hyps = full_path list -let discharged_hyps_map = ref Spmap.empty +let discharged_hyps_map = Summary.ref Spmap.empty ~name:"discharged_hypothesis" let set_discharged_hyps sp hyps = discharged_hyps_map := Spmap.add sp hyps !discharged_hyps_map let get_discharged_hyps sp = - try - Spmap.find sp !discharged_hyps_map - with Not_found -> - [] - -(*s Registration as global tables and rollback. *) - -let init () = - discharged_hyps_map := Spmap.empty - -let freeze () = !discharged_hyps_map - -let unfreeze dhm = discharged_hyps_map := dhm - -let _ = - Summary.declare_summary "discharged_hypothesis" - { Summary.freeze_function = freeze; - Summary.unfreeze_function = unfreeze; - Summary.init_function = init } + try Spmap.find sp !discharged_hyps_map with Not_found -> [] -- cgit v1.2.3