]> matita.cs.unibo.it Git - helm.git/commitdiff
(Part of previous commit)
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Wed, 29 Aug 2012 12:09:20 +0000 (12:09 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Wed, 29 Aug 2012 12:09:20 +0000 (12:09 +0000)
matita/components/ng_library/nCicLibrary.ml
matita/components/ng_library/nCicLibrary.mli

index b509ce813fd8997c713426ffba6301311328573d..d8901e7cf3123091990fbe24ddd0b8058b23770b 100644 (file)
@@ -146,11 +146,10 @@ let init = load_db;;
 
 class virtual status =
  object
-  inherit NCicExtraction.status
+  inherit NCic.status
   val timestamp = (time0 : timestamp)
   method timestamp = timestamp
   method set_timestamp v = {< timestamp = v >}
-  (*CSC: bug here, we are not copying the NCicExtraction part of the status *)
  end
 
 let time_travel0 (sto,ali) =
@@ -357,14 +356,7 @@ let add_obj status ((u,_,_,_,_) as orig_obj) =
          ) il)
   in
   local_aliases := references @ !local_aliases;
-  let status = status#set_timestamp (!storage,!local_aliases) in
-  (* To test extraction *)
-  try
-   ignore (Helm_registry.get "extract_haskell");
-   let status,msg = NCicExtraction.haskell_of_obj status orig_obj in
-    prerr_endline msg; status
-  with
-   Helm_registry.Key_not_found _ -> status
+  status#set_timestamp (!storage,!local_aliases)
 ;;
 
 let add_constraint status u1 u2 = 
index 3781a47e2dfa757c095d1c5cdca1ede6b5138b89..b3275b8283095399fcfcc97947b82b75d5e36a5f 100644 (file)
@@ -18,7 +18,7 @@ type timestamp
 
 class virtual status :
  object ('self)
-  inherit NCicExtraction.status
+  inherit NCic.status
   method timestamp: timestamp
   method set_timestamp: timestamp -> 'self
   (*CSC: bug here, we are not copying the NCicExtraction part of the status *)