2 ||M|| This file is part of HELM, an Hypertextual, Electronic
3 ||A|| Library of Mathematics, developed at the Computer Science
4 ||T|| Department, University of Bologna, Italy.
6 ||T|| HELM is free software; you can redistribute it and/or
7 ||A|| modify it under the terms of the GNU General Public License
8 \ / version 2 or (at your option) any later version.
9 \ / This software is distributed as is, NO WARRANTY.
10 V_______________________________________________________________ *)
12 (* $Id: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
14 let debug = ref false;;
16 if !debug then prerr_endline (Lazy.force x) else ()
19 type automation_cache = NDiscriminationTree.DiscriminationTree.t
20 type unit_eq_cache = NCicParamod.state
22 exception Error of string lazy_t * exn option
23 let fail ?exn msg = raise (Error (msg,exn))
25 module NRef = NReference
30 | MultiPassDisambiguator.DisambiguationError _
31 | NCicRefiner.RefineFailure _
32 | NCicUnification.UnificationFailure _
33 | NCicTypeChecker.TypeCheckerFailure _
34 | NCicMetaSubst.MetaSubstFailure _ as exn -> fail ~exn (lazy fname)
37 class type g_eq_status =
39 method eq_cache : unit_eq_cache
44 val eq_cache = NCicParamod.empty_state
45 method eq_cache = eq_cache
46 method set_eq_cache v = {< eq_cache = v >}
48 : 'status. #g_eq_status as 'status -> 'self
49 = fun o -> self#set_eq_cache o#eq_cache
52 class type g_auto_status =
54 method auto_cache : automation_cache
59 val auto_cache = NDiscriminationTree.DiscriminationTree.empty
60 method auto_cache = auto_cache
61 method set_auto_cache v = {< auto_cache = v >}
62 method set_auto_status
63 : 'status. #g_auto_status as 'status -> 'self
64 = fun o -> self#set_auto_cache o#auto_cache
67 class type g_pstatus =
69 inherit GrafiteDisambiguate.g_status
75 class virtual pstatus =
78 inherit GrafiteDisambiguate.status
83 method set_obj o = {< obj = o >}
84 method set_pstatus : 'status. #g_pstatus as 'status -> 'self
86 (((self#set_disambiguate_status o)#set_obj o#obj)#set_auto_status o)#set_eq_status o
89 type tactic_term = NotationPt.term Disambiguate.disambiguator_input
90 type tactic_pattern = GrafiteAst.npattern Disambiguate.disambiguator_input
92 type cic_term = NCic.context * NCic.term
93 let ctx_of (c,_) = c ;;
94 let mk_cic_term c t = c,t ;;
96 let ppterm (status:#pstatus) t =
97 let uri,height,metasenv,subst,obj = status#obj in
99 status#ppterm ~metasenv ~subst ~context t
102 let ppcontext (status: #pstatus) c =
103 let uri,height,metasenv,subst,obj = status#obj in
104 status#ppcontext ~metasenv ~subst c
107 let ppterm_and_context (status: #pstatus) t =
108 let uri,height,metasenv,subst,obj = status#obj in
110 status#ppcontext ~metasenv ~subst context ^ "\n ⊢ "^
111 status#ppterm ~metasenv ~subst ~context t
114 let relocate status destination (source,t as orig) =
115 pp(lazy("relocate:\n" ^ ppterm_and_context status orig));
116 pp(lazy("relocate in:\n" ^ ppcontext status destination));
118 if source == destination then status, orig else
119 let _, _, metasenv, subst, _ = status#obj in
120 let rec compute_ops ctx = function (* destination, source *)
121 | (n1, NCic.Decl t1 as e)::cl1 as ex, (n2, NCic.Decl t2)::cl2 ->
123 NCicReduction.are_convertible status ctx ~subst ~metasenv t1 t2 then
124 compute_ops (e::ctx) (cl1,cl2)
126 [ `Delift ctx; `Lift (List.rev ex) ]
127 | (n1, NCic.Def (b1,t1) as e)::cl1 as ex, (n2, NCic.Def (b2,t2))::cl2 ->
129 NCicReduction.are_convertible status ctx ~subst ~metasenv t1 t2 &&
130 NCicReduction.are_convertible status ctx ~subst ~metasenv b1 b2 then
131 compute_ops (e::ctx) (cl1,cl2)
133 [ `Delift ctx; `Lift (List.rev ex) ]
134 | (n1, NCic.Def (b1,t1) as e)::cl1 as ex, (n2, NCic.Decl t2)::cl2 ->
136 NCicReduction.are_convertible status ctx ~subst ~metasenv t1 t2 then
137 compute_ops (e::ctx) (cl1,cl2)
139 [ `Delift ctx; `Lift (List.rev ex) ]
140 | (n1, NCic.Decl _)::cl1 as ex, (n2, NCic.Def _)::cl2 ->
141 [ `Delift ctx; `Lift (List.rev ex) ]
142 | _::_ as ex, [] -> [ `Lift (List.rev ex) ]
143 | [], _::_ -> [ `Delift ctx ]
146 let ops = compute_ops [] (List.rev destination, List.rev source) in
147 let rec mk_irl i j = if i > j then [] else NCic.Rel i :: mk_irl (i+1) j in
149 (fun (status, (source,t)) -> function
151 let len = List.length extra_ctx in
152 status, (extra_ctx@source, NCicSubstitution.lift status len t)
154 let len_ctx = List.length ctx in
155 let irl = mk_irl 1 (List.length ctx) in
156 let lc = List.length source - len_ctx, NCic.Ctx irl in
157 let u, d, metasenv, subst, o = status#obj in
158 pp(lazy("delifting as " ^
159 status#ppterm ~metasenv ~subst ~context:source
160 (NCic.Meta (-1,lc))));
161 let (metasenv, subst), t =
162 NCicMetaSubst.delift status
163 ~unify:(fun m s c t1 t2 ->
164 try Some (NCicUnification.unify status m s c t1 t2)
166 | NCicUnification.UnificationFailure _
167 | NCicUnification.Uncertain _ -> None)
168 metasenv subst source (-1) lc t
170 let status = status#set_obj (u, d, metasenv, subst, o) in
174 pp(lazy("relocated: " ^ ppterm (fst rc) (snd rc)));
177 let relocate a b c = wrap "relocate" (relocate a b) c;;
179 let term_of_cic_term s t c =
180 let s, (_,t) = relocate s c t in
184 let disambiguate status context t ty =
187 | None -> status, None
189 let status, (_,x) = relocate status context ty in status, Some x
191 let uri,height,metasenv,subst,obj = status#obj in
192 let metasenv, subst, status, t =
193 GrafiteDisambiguate.disambiguate_nterm status expty context metasenv subst t
195 let new_pstatus = uri,height,metasenv,subst,obj in
196 status#set_obj new_pstatus, (context, t)
198 let disambiguate a b c d = wrap "disambiguate" (disambiguate a b c) d;;
200 let typeof status ctx t =
201 let status, (_,t) = relocate status ctx t in
202 let _,_,metasenv,subst,_ = status#obj in
203 let ty = NCicTypeChecker.typeof status ~subst ~metasenv ctx t in
206 let typeof a b c = wrap "typeof" (typeof a b) c;;
208 let saturate status ?delta (ctx,t) =
209 let n,h,metasenv,subst,k = status#obj in
210 let t,metasenv,args = NCicMetaSubst.saturate status ?delta metasenv subst ctx t 0 in
211 let status = status#set_obj (n,h,metasenv,subst,k) in
212 status, (ctx,t), List.map (fun x -> ctx,x) args
214 let saturate a ?delta b = wrap "saturate" (saturate a ?delta) b;;
216 let whd status ?delta ctx t =
217 let status, (_,t) = relocate status ctx t in
218 let _,_,_,subst,_ = status#obj in
219 let t = NCicReduction.whd status ~subst ?delta ctx t in
223 let normalize status ?delta ctx t =
224 let status, (_,t) = relocate status ctx t in
225 let _,_,_,subst,_ = status#obj in
226 let t = NCicTacReduction.normalize status ~subst ?delta ctx t in
230 let unify status ctx a b =
231 let status, (_,a) = relocate status ctx a in
232 let status, (_,b) = relocate status ctx b in
233 let n,h,metasenv,subst,o = status#obj in
234 let metasenv, subst = NCicUnification.unify status metasenv subst ctx a b in
235 status#set_obj (n,h,metasenv,subst,o)
237 let unify a b c d = wrap "unify" (unify a b c) d;;
239 let fix_sorts status (ctx,t) =
241 let name,height,metasenv,subst,obj = status#obj in
243 NCicUnification.fix_sorts status metasenv subst t in
244 let status = status#set_obj (name,height,metasenv,subst,obj) in
247 wrap "fix_sorts" f ()
250 let refine status ctx term expty =
251 let status, (_,term) = relocate status ctx term in
256 let status, (_, e) = relocate status ctx e in status, Some e
258 let name,height,metasenv,subst,obj = status#obj in
259 let metasenv,subst,t,ty =
260 NCicRefiner.typeof status metasenv subst ctx term expty
262 status#set_obj (name,height,metasenv,subst,obj), (ctx,t), (ctx,ty)
264 let refine a b c d = wrap "refine" (refine a b c) d;;
266 let get_goalty status g =
267 let _,_,metasenv,_,_ = status#obj in
269 let _, ctx, ty = NCicUtils.lookup_meta g metasenv in
271 with NCicUtils.Meta_not_found _ as exn -> fail ~exn (lazy "get_goalty")
274 let get_subst status =
275 let _,_,_,subst,_ = status#obj in subst
278 let to_subst status i entry =
279 let name,height,metasenv,subst,obj = status#obj in
280 let metasenv = List.filter (fun j,_ -> j <> i) metasenv in
281 let subst = (i, entry) :: subst in
282 status#set_obj (name,height,metasenv,subst,obj)
285 let instantiate status ?refine:(dorefine=true) i t =
286 let _,_,metasenv,_,_ = status#obj in
287 let gname, context, gty = List.assoc i metasenv in
289 let status, (_,t), (_,ty) = refine status context t (Some (context,gty)) in
290 to_subst status i (gname,context,t,ty)
292 let status,(_,ty) = typeof status context t in
293 to_subst status i (gname,context,snd t,ty)
296 let instantiate_with_ast status i t =
297 let _,_,metasenv,_,_ = status#obj in
298 let gname, context, gty = List.assoc i metasenv in
299 let ggty = mk_cic_term context gty in
300 let status, (_,t) = disambiguate status context t (Some ggty) in
301 to_subst status i (gname,context,t,gty)
304 let mk_meta status ?(attrs=[]) ctx bo_or_ty kind =
307 let status, (_,ty) = relocate status ctx ty in
308 let n,h,metasenv,subst,o = status#obj in
309 let metasenv, _, instance, _ =
310 NCicMetaSubst.mk_meta ~attrs metasenv ctx ~with_type:ty kind
312 let status = status#set_obj (n,h,metasenv,subst,o) in
313 status, (ctx,instance)
315 let status, (_,bo_ as bo) = relocate status ctx bo in
316 let status, (_,ty) = typeof status ctx bo in
317 let n,h,metasenv,subst,o = status#obj in
318 let metasenv, metano, instance, _ =
319 NCicMetaSubst.mk_meta ~attrs metasenv ctx ~with_type:ty kind in
320 let attrs,_,_ = NCicUtils.lookup_meta metano metasenv in
321 let metasenv = List.filter (fun j,_ -> j <> metano) metasenv in
322 let subst = (metano, (attrs, ctx, bo_, ty)) :: subst in
323 let status = status#set_obj (n,h,metasenv,subst,o) in
324 status, (ctx,instance)
327 let mk_in_scope status t =
328 mk_meta status ~attrs:[`InScope] (ctx_of t) (`Def t) `IsTerm
331 let mk_out_scope n status t =
332 mk_meta status ~attrs:[`OutScope n] (ctx_of t) (`Def t) `IsTerm
335 (* the following unification problem will be driven by
336 * select s ~found:mk_in_scope ~postprocess:(mk_out_scope argsno) t pattern
340 * where argsn = length args and the pattern matches t
342 * found is called on every selected term to map them
343 * postprocess is called on the entire term after selection
346 low_status ~found ~postprocess (context,term) (wanted,path)
348 let is_found status ctx t wanted =
349 (* we could lift wanted step-by-step *)
350 pp(lazy("is_found: "^ppterm status (ctx,t)));
351 try true, unify status ctx (ctx, t) wanted
353 | Error (_, Some (NCicUnification.UnificationFailure _))
354 | Error (_, Some (NCicUnification.Uncertain _)) -> false, status
356 let match_term status ctx (wanted : cic_term) t =
357 let rec aux ctx (status,already_found) t =
358 let b, status = is_found status ctx t wanted in
360 let status , (_,t) = found status (ctx, t) in
363 let _,_,_,subst,_ = status#obj in
365 | NCic.Meta (i,lc) when List.mem_assoc i subst ->
366 let _,_,t,_ = NCicUtils.lookup_subst i subst in
367 aux ctx (status,already_found) t
368 | NCic.Meta _ -> (status,already_found),t
370 NCicUntrusted.map_term_fold_a status (fun e c -> e::c) ctx aux
371 (status,already_found) t
373 aux ctx (status,false) t
375 let _,_,_,subst,_ = low_status#obj in
376 let rec select status ctx pat cic =
378 | _, NCic.Meta (i,lc) when List.mem_assoc i subst ->
380 let _,_,t,_ = NCicUtils.lookup_subst i subst in
381 NCicSubstitution.subst_meta status lc t
383 select status ctx pat cic
384 | NCic.LetIn (_,t1,s1,b1), NCic.LetIn (n,t2,s2,b2) ->
385 let status, t = select status ctx t1 t2 in
386 let status, s = select status ctx s1 s2 in
387 let ctx = (n, NCic.Def (s2,t2)) :: ctx in
388 let status, b = select status ctx b1 b2 in
389 status, NCic.LetIn (n,t,s,b)
390 | NCic.Lambda (_,s1,t1), NCic.Lambda (n,s2,t2) ->
391 let status, s = select status ctx s1 s2 in
392 let ctx = (n, NCic.Decl s2) :: ctx in
393 let status, t = select status ctx t1 t2 in
394 status, NCic.Lambda (n,s,t)
395 | NCic.Prod (_,s1,t1), NCic.Prod (n,s2,t2) ->
396 let status, s = select status ctx s1 s2 in
397 let ctx = (n, NCic.Decl s2) :: ctx in
398 let status, t = select status ctx t1 t2 in
399 status, NCic.Prod (n,s,t)
400 | NCic.Appl l1, NCic.Appl l2 ->
403 (fun (status,l) x y ->
404 let status, x = select status ctx x y in
408 status, NCic.Appl (List.rev l)
409 | NCic.Match (_,ot1,t1,pl1), NCic.Match (u,ot2,t2,pl2) ->
410 let status, t = select status ctx t1 t2 in
411 let status, ot = select status ctx ot1 ot2 in
414 (fun (status,l) x y ->
415 let status, x = select status ctx x y in
419 status, NCic.Match (u,ot,t,List.rev pl)
420 | NCic.Implicit `Hole, t ->
423 let status', wanted = disambiguate status ctx wanted None in
424 pp(lazy("wanted: "^ppterm status' wanted));
425 let (status',found), t' = match_term status' ctx wanted t in
426 if found then status',t' else status,t
428 let (status,_),t = match_term status ctx (ctx,t) t in
430 | NCic.Implicit _, t -> status, t
432 fail (lazy ("malformed pattern: " ^ status#ppterm ~metasenv:[]
433 ~context:[] ~subst:[] pat ^ " against " ^
434 status#ppterm ~metasenv:[] ~subst:[] ~context:[] t))
436 pp(lazy ("select in: "^ppterm low_status (context,term)));
437 let status, term = select low_status context path term in
438 let term = (context, term) in
439 pp(lazy ("postprocess: "^ppterm low_status term));
440 postprocess status term
443 let analyse_indty status ty =
444 let status, reduct = whd status (ctx_of ty) ty in
447 | _,NCic.Const ref -> ref, []
448 | _,NCic.Appl (NCic.Const (NRef.Ref (_,(NRef.Ind _)) as ref) :: args) ->
450 | _,_ -> fail (lazy ("not an inductive type: " ^ ppterm status ty)) in
451 let _,lno,tl,_,i = NCicEnvironment.get_checked_indtys status ref in
452 let _,_,_,cl = List.nth tl i in
453 let consno = List.length cl in
454 let left, right = HExtlib.split_nth lno args in
455 status, (ref, consno, left, right)
458 let apply_subst status ctx t =
459 let status, (_,t) = relocate status ctx t in
460 let _,_,_,subst,_ = status#obj in
461 status, (ctx, NCicUntrusted.apply_subst status subst ctx t)
464 let apply_subst_context status ~fix_projections ctx =
465 let _,_,_,subst,_ = status#obj in
466 NCicUntrusted.apply_subst_context status ~fix_projections subst ctx
469 let metas_of_term status (context,t) =
470 let _,_,_,subst,_ = status#obj in
471 NCicUntrusted.metas_of_term status subst context t
474 (* ============= move this elsewhere ====================*)
476 class type ['stack] g_status =
482 class virtual ['stack] status =
483 fun (o: NCic.obj) (s: 'stack) ->
488 method set_stack s = {< stack = s >}
489 method set_status : 'status. 'stack #g_status as 'status -> 'self
490 = fun o -> (self#set_pstatus o)#set_stack o#stack
493 class type virtual lowtac_status = [unit] status
495 type 'status lowtactic = #lowtac_status as 'status -> int -> 'status
497 class type virtual tac_status = [Continuationals.Stack.t] status
499 type 'status tactic = #tac_status as 'status -> 'status
501 let pp_tac_status (status: #tac_status) =
502 prerr_endline (status#ppobj status#obj);
503 prerr_endline ("STACK:\n" ^ Continuationals.Stack.pp status#stack)
506 module NCicInverseRelIndexable : Discrimination_tree.Indexable
507 with type input = cic_term and type constant_name = NUri.uri = struct
509 open Discrimination_tree
511 type input = cic_term
512 type constant_name = NUri.uri
514 let ppelem = function
515 | Constant (uri,arity) ->
516 "("^NUri.name_of_uri uri ^ "," ^ string_of_int arity^")"
518 "("^string_of_int i ^ "," ^ string_of_int arity^")"
520 | Proposition -> "Prop"
525 let string_of_path l = String.concat "." (List.map ppelem l) ;;
527 let path_string_of (ctx,t) =
528 let len_ctx = List.length ctx in
529 let rec aux arity = function
530 | NCic.Appl ((NCic.Meta _|NCic.Implicit _)::_) -> [Variable]
531 | NCic.Appl (NCic.Lambda _ :: _) -> [Variable] (* maybe we should b-reduce *)
532 | NCic.Appl [] -> assert false
533 | NCic.Appl (hd::tl) ->
534 aux (List.length tl) hd @ List.flatten (List.map (aux 0) tl)
535 | NCic.Lambda _ | NCic.Prod _ -> [Variable]
536 (* I think we should CicSubstitution.subst Implicit t *)
537 | NCic.LetIn _ -> [Variable] (* z-reduce? *)
538 | NCic.Meta _ | NCic.Implicit _ -> assert (arity = 0); [Variable]
539 | NCic.Rel i -> [Bound (len_ctx - i, arity)]
540 | NCic.Sort (NCic.Prop) -> assert (arity=0); [Proposition]
541 | NCic.Sort _ -> assert (arity=0); [Datatype]
542 | NCic.Const (NReference.Ref (u,_)) -> [Constant (u, arity)]
543 | NCic.Match _ -> [Dead]
545 let path = aux 0 t in
546 (* prerr_endline (string_of_path path); *)
552 | Constant (u1,a1),Constant (u2,a2) ->
553 let x = NUri.compare u1 u2 in
554 if x = 0 then Pervasives.compare a1 a2 else x
555 | e1,e2 -> Pervasives.compare e1 e2
561 module Ncic_termOT : Set.OrderedType with type t = cic_term =
564 let compare = Pervasives.compare
567 module Ncic_termSet : Set.S with type elt = cic_term = Set.Make(Ncic_termOT)
569 module InvRelDiscriminationTree =
570 Discrimination_tree.Make(NCicInverseRelIndexable)(Ncic_termSet)