X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_proof_checking%2FcicEnvironment.ml;h=6ad00d7643d948e2d8144a8b05b339893caa8729;hb=0aaed6f96b856d1181a3cd1f2ef3ea4a91990771;hp=5c1daa1373be26c35df429e23e6789847db69f5d;hpb=de36c6322dde3866f3da822f1795cc518233c79f;p=helm.git diff --git a/helm/ocaml/cic_proof_checking/cicEnvironment.ml b/helm/ocaml/cic_proof_checking/cicEnvironment.ml index 5c1daa137..6ad00d764 100644 --- a/helm/ocaml/cic_proof_checking/cicEnvironment.ml +++ b/helm/ocaml/cic_proof_checking/cicEnvironment.ml @@ -292,14 +292,14 @@ module Cache : *) empty (); HT.iter - (fun k v -> + (fun k (v,u) -> callback (UriManager.string_of_uri k); HT.add cacheOfCookedObjects (UriManager.uri_of_string (UriManager.string_of_uri k)) (*********************************************** TSSI: FIXME add channel stuff for universes ************************************************) - ((restore_uris v),CicUniv.empty_ugraph)) + (restore_uris v,u)) restored ;; @@ -320,7 +320,7 @@ module Cache : (******************************************************************* TASSI: invariant we need, in the universe generation phase, to traverse objects - that are not jet committed, so we search them in the frozen list. + that are not yet committed, so we search them in the frozen list. Only uncommitted objects without a universe file (see the assertion) can be searched with method *******************************************************************) @@ -453,7 +453,7 @@ module Cache : * something. this means check and frozen must be empty. *) let remove uri = - if (!unchecked_list <> []) || (!frozen_list <> []) then + if !frozen_list <> [] then failwith "CicEnvironment.remove while type checking" else HT.remove cacheOfCookedObjects uri @@ -556,23 +556,29 @@ let find_or_add_to_unchecked uri = (* the replacement ugraph must be the one returned by the *) (* typechecker, restricted with the CicUnivUtils.clean_and_fill *) let set_type_checking_info ?(replace_ugraph=None) uri = - if Cache.can_be_cooked uri && replace_ugraph <> None then - invalid_arg ( +(* + if not (Cache.can_be_cooked uri) && replace_ugraph <> None then begin + prerr_endline ( "?replace_ugraph must be None if you are not committing an "^ "object that has a universe graph associated "^ "(can happen only in the fase of universes graphs generation)."); - if not (Cache.can_be_cooked uri) && replace_ugraph = None then - invalid_arg ( - "?replace_ugraph must be (Some ugraph) when committing an object that "^ - "has no associated universe graph. If this is in make_univ phase you "^ - "should drop this exception and let univ_make commit thi object with "^ - "proper arguments"); - begin - match replace_ugraph with - None -> () - | Some g -> Cache.hack_univ uri g - end; - Cache.frozen_to_cooked uri + assert false + else +*) + match Cache.can_be_cooked uri, replace_ugraph with + | true, Some _ + | false, None -> + prerr_endline ( + "?replace_ugraph must be (Some ugraph) when committing an object that "^ + "has no associated universe graph. If this is in make_univ phase you "^ + "should drop this exception and let univ_make commit thi object with "^ + "proper arguments"); + assert false + | _ -> + (match replace_ugraph with + | None -> () + | Some g -> Cache.hack_univ uri g); + Cache.frozen_to_cooked uri ;; (* fetch, unfreeze and commit an uri to the cacheOfCookedObjects and @@ -632,6 +638,7 @@ let is_type_checked ?(trust=true) base_univ uri = CheckedObj ( o, CicUniv.merge_ugraphs u base_univ ) else let o,u = find_or_add_to_unchecked uri in + Cache.unchecked_to_frozen uri; UncheckedObj o ;; @@ -645,12 +652,8 @@ let get_obj base_univ uri = o,(CicUniv.merge_ugraphs base_univ u) with Not_found -> (* this should be an error case, but if we trust the uri... *) - if trust_obj uri then - (* trusting we add it to the unchecked list *) let o,u = find_or_add_to_unchecked uri in o,(CicUniv.merge_ugraphs base_univ u) - else - raise Not_found ;; exception OnlyPutOfInductiveDefinitionsIsAllowed @@ -679,7 +682,7 @@ let in_library uri = true with Http_getter_types.Key_not_found _ -> false) -let remove_term = Cache.remove +let remove_obj = Cache.remove let list_uri () = Cache.list_all_cooked_uris ()