X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_tactics%2FnTacStatus.ml;h=a2847a410061089440699f1612b412555f652b50;hb=833b0c94d93d3fe66cecbf0b0f9edf1287669b75;hp=86487e20d5cc575dc054ef92b4fad67482e865d1;hpb=174d3dbd5779c2ad602f905d7f4321dc68a53786;p=helm.git diff --git a/helm/software/components/ng_tactics/nTacStatus.ml b/helm/software/components/ng_tactics/nTacStatus.ml index 86487e20d..a2847a410 100644 --- a/helm/software/components/ng_tactics/nTacStatus.ml +++ b/helm/software/components/ng_tactics/nTacStatus.ml @@ -99,6 +99,12 @@ let term_of_cic_term s t c = s, t ;; +let ppterm status t = + let uri,height,metasenv,subst,obj = status.pstatus in + let _,context,t = t in + NCicPp.ppterm ~metasenv ~subst ~context t +;; + let disambiguate status t ty context = let status, expty = match ty with @@ -129,6 +135,13 @@ let whd status ?delta ctx t = status, (name, ctx, t) ;; +let normalize status ?delta ctx t = + let status, (name,_,t) = relocate status ctx t in + let _,_,_,subst,_ = status.pstatus in + let t = NCicTacReduction.normalize ~subst ?delta ctx t in + status, (name, ctx, t) +;; + let unify status ctx a b = let status, (_,_,a) = relocate status ctx a in let status, (_,_,b) = relocate status ctx b in @@ -225,22 +238,23 @@ let select_term | NCicUnification.Uncertain _ -> false, status in let match_term status ctx (wanted : cic_term) t = - let rec aux ctx status t = + let rec aux ctx (status,already_found) t = let b, status = is_found status ctx t wanted in if b then let status , (_,_,t) = found status (None, ctx, t) in - status, t + (status,true),t else let _,_,_,subst,_ = status.pstatus in match t with | NCic.Meta (i,lc) when List.mem_assoc i subst -> let _,_,t,_ = NCicUtils.lookup_subst i subst in - aux ctx status t - | NCic.Meta _ -> status, t - | _ -> - NCicUntrusted.map_term_fold_a (fun e c -> e::c) ctx aux status t + aux ctx (status,already_found) t + | NCic.Meta _ -> (status,already_found),t + | _ -> + NCicUntrusted.map_term_fold_a (fun e c -> e::c) ctx aux + (status,already_found) t in - aux ctx status t + aux ctx (status,false) t in let _,_,_,subst,_ = low_status.pstatus in let rec select status ctx pat cic = @@ -290,9 +304,12 @@ let select_term | NCic.Implicit `Hole, t -> (match wanted with | Some wanted -> - let status, wanted = disambiguate status wanted None ctx in - match_term status ctx wanted t - | None -> match_term status ctx (None,ctx,t) t) + let status', wanted = disambiguate status wanted None ctx in + let (status',found), t' = match_term status' ctx wanted t in + if found then status',t' else status,t + | None -> + let (status,_),t = match_term status ctx (None,ctx,t) t in + status,t) | NCic.Implicit _, t -> status, t | _,t -> fail (lazy ("malformed pattern: " ^ NCicPp.ppterm ~metasenv:[] @@ -319,3 +336,9 @@ let analyse_indty status ty = ;; let mk_cic_term c t = None,c,t ;; + +let apply_subst status ctx t = + let status, (name,_,t) = relocate status ctx t in + let _,_,_,subst,_ = status.pstatus in + status, (name, ctx, NCicUntrusted.apply_subst subst ctx t) +;;