]> matita.cs.unibo.it Git - helm.git/commitdiff
call get_obj instead of get_cooked_obj ~trust:false
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 7 Apr 2008 15:00:23 +0000 (15:00 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 7 Apr 2008 15:00:23 +0000 (15:00 +0000)
helm/software/components/ng_kernel/nCicEnvironment.ml

index c78508238cfcca6790cf1325e5b4a4267d202090..fcb40832606eb3c6960d9c472728a8be8875d6b5 100644 (file)
@@ -6,7 +6,9 @@ let get_checked_obj u =
   with Not_found ->
     let ouri = NUri.ouri_of_nuri u in
     let o,_ = 
-      CicEnvironment.get_cooked_obj ~trust:false CicUniv.oblivion_ugraph ouri 
+      try 
+        CicEnvironment.get_obj CicUniv.oblivion_ugraph ouri 
+      with exn -> prerr_endline (UriManager.string_of_uri ouri); raise exn
     in
     (* FIX: add all objects to the environment and give back the last one *)
     let l = OCic2NCic.convert_obj ouri o in
@@ -22,7 +24,7 @@ let get_obj u =
     (* in th final implementation should get it from disk *)
     let ouri = NUri.ouri_of_nuri u in
     let o,_ = 
-      CicEnvironment.get_cooked_obj ~trust:true CicUniv.oblivion_ugraph ouri 
+      CicEnvironment.get_obj CicUniv.oblivion_ugraph ouri 
     in
     let l = OCic2NCic.convert_obj ouri o in
     List.iter (fun (u,_,_,_,_ as o) ->