From: Enrico Tassi Date: Fri, 17 Feb 2006 14:53:33 +0000 (+0000) Subject: tentative speedup not coercion-packing the proof after every step X-Git-Tag: 0.4.95@7852~1659 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=1f66c2507fecd1efa7701af30a9cb3f441abc2d7;p=helm.git tentative speedup not coercion-packing the proof after every step --- diff --git a/components/tactics/proofEngineTypes.ml b/components/tactics/proofEngineTypes.ml index 4eb043ca8..56b4155ae 100644 --- a/components/tactics/proofEngineTypes.ml +++ b/components/tactics/proofEngineTypes.ml @@ -93,9 +93,9 @@ let apply_tactic t status = let (uri,metasenv,bo,ty), gl = t status in match CicRefine.pack_coercion_obj - (Cic.CurrentProof ("",metasenv,bo,ty,[],[])) + (Cic.CurrentProof ("",metasenv,Cic.Rel ~-1,ty,[],[])) with - | Cic.CurrentProof (_,metasenv,bo,ty,_,_) -> + | Cic.CurrentProof (_,metasenv,_,ty,_,_) -> (uri,metasenv,bo,ty), gl | _ -> assert false ;;