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: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *)
14 type eq_sig_type = Eq | EqInd_l | EqInd_r | Refl
16 let eqsig = ref (fun _ -> assert false);;
17 let set_sig f = eqsig:= f;;
18 let get_sig = fun x -> !eqsig x;;
20 let default_sig = function
22 let uri = NUri.uri_of_string "cic:/matita/basics/logic/eq.ind" in
23 let ref = NReference.reference_of_spec uri (NReference.Ind(true,0,2)) in
26 let uri = NUri.uri_of_string "cic:/matita/basics/logic/rewrite_l.con" in
27 let ref = NReference.reference_of_spec uri (NReference.Def(1)) in
30 let uri = NUri.uri_of_string "cic:/matita/basics/logic/rewrite_r.con" in
31 let ref = NReference.reference_of_spec uri (NReference.Def(3)) in
34 let uri = NUri.uri_of_string "cic:/matita/basics/logic/eq.ind" in
35 let ref = NReference.reference_of_spec uri (NReference.Con(0,1,2)) in
38 let set_default_sig () =
39 (*prerr_endline "setting default sig";*)
42 (* let debug c r = prerr_endline r; c *)
45 let eqP() = debug (!eqsig Eq) "eq" ;;
46 let eq_ind() = debug (!eqsig EqInd_l) "eq_ind" ;;
47 let eq_ind_r() = debug (!eqsig EqInd_r) "eq_ind_r";;
48 let eq_refl() = debug (!eqsig Refl) "refl";;
51 let extract status lift vl t =
52 let rec pos i = function
53 | [] -> raise Not_found
54 | j :: tl when j <> i -> 1+ pos i tl
57 let vl_len = List.length vl in
58 let rec extract = function
59 | Terms.Leaf x -> NCicSubstitution.lift status (vl_len+lift) x
61 (try NCic.Rel (pos j vl) with Not_found -> NCic.Implicit `Term)
62 | Terms.Node l -> NCic.Appl (List.map extract l)
68 let mk_predicate status hole_type amount ft p1 vl =
76 let module NCicBlob = NCicBlob.NCicBlob(
78 let metasenv = [] let subst = [] let context = []
81 let module Pp = Pp.Pp(NCicBlob) in
82 prerr_endline ("term: " ^ Pp.pp_foterm ft);
83 prerr_endline ("path: " ^ String.concat ","
84 (List.map string_of_int p1));
85 prerr_endline ("leading to: " ^ Pp.pp_foterm t);
91 if i = n then aux t tl
92 else extract status amount (0::vl) t)
97 NCic.Lambda("x", hole_type, aux ft (List.rev p1))
101 let uri = NUri.uri_of_string "cic:/matita/ng/sets/setoids/prop1.con" in
102 let ref = NReference.reference_of_spec uri (NReference.Fix(0,2,4)) in
108 let uri = NUri.uri_of_string "cic:/matita/ng/sets/setoids/eq.con" in
109 let ref = NReference.reference_of_spec uri (NReference.Fix(0,0,2)) in
115 let u= NUri.uri_of_string "cic:/matita/ng/properties/relations/sym.con" in
116 let u = NReference.reference_of_spec u (NReference.Fix(0,1,3)) in
117 NCic.Appl[NCic.Const u; NCic.Implicit `Type; NCic.Implicit `Term;
118 NCic.Implicit `Term; NCic.Implicit `Term; eq];
121 let eq_morphism1 eq =
122 let u= NUri.uri_of_string "cic:/matita/ng/sets/setoids/eq_is_morphism1.con" in
123 let u = NReference.reference_of_spec u (NReference.Def 4) in
124 NCic.Appl[NCic.Const u; NCic.Implicit `Term; NCic.Implicit `Term;
125 NCic.Implicit `Term; NCic.Implicit `Term; eq];
128 let eq_morphism2 eq =
129 let u= NUri.uri_of_string "cic:/matita/ng/sets/setoids/eq_is_morphism2.con" in
130 let u = NReference.reference_of_spec u (NReference.Def 4) in
131 NCic.Appl[NCic.Const u; NCic.Implicit `Term; NCic.Implicit `Term;
132 NCic.Implicit `Term; eq; NCic.Implicit `Term];
136 let u= NUri.uri_of_string "cic:/matita/ng/properties/relations/trans.con" in
137 let u = NReference.reference_of_spec u (NReference.Fix(0,1,3)) in
138 NCic.Appl[NCic.Const u; NCic.Implicit `Type; NCic.Implicit `Term;
139 NCic.Implicit `Term; NCic.Implicit `Term; NCic.Implicit `Term; eq]
143 let uri = NUri.uri_of_string "cic:/matita/ng/logic/connectives/if.con" in
144 let ref = NReference.reference_of_spec uri (NReference.Fix(0,2,1)) in
145 NCic.Appl[NCic.Const ref; NCic.Implicit `Type; NCic.Implicit `Type;
150 let mk_refl = function
151 | NCic.Appl [_; _; x; _] ->
152 let uri= NUri.uri_of_string "cic:/matita/ng/properties/relations/refl.con" in
153 let ref = NReference.reference_of_spec uri (NReference.Fix(0,1,3)) in
154 NCic.Appl[NCic.Const ref; NCic.Implicit `Type; NCic.Implicit `Term;
155 NCic.Implicit `Term(*x*)]
159 let mk_refl = function
160 | NCic.Appl [_; ty; l; _]
161 -> NCic.Appl [eq_refl();ty;l]
165 let mk_morphism status eq amount ft pl vl =
170 prerr_endline (string_of_int n);
173 | Terms.Var _ -> assert false
174 | Terms.Node [] -> assert false
175 | Terms.Node [ Terms.Leaf eqt ; _; l; r ]
176 when (eqP ()) = eqt ->
177 if n=2 then eq_morphism1 (aux l tl)
178 else eq_morphism2 (aux r tl)
179 | Terms.Node (f::l) ->
184 let f = extract status amount vl f in
186 let imp = NCic.Implicit `Term in
187 NCic.Appl (dag::imp::imp::imp(* f *)::imp::imp::
190 NCicUntrusted.mk_appl acc [extract status amount vl t]
191 ) (1,extract status amount vl f) l)
192 in aux ft (List.rev pl)
195 let mk_proof status ?(demod=false) (bag : NCic.term Terms.bag) mp subst steps=
196 let module NCicBlob =
199 let metasenv = [] let subst = [] let context = []
202 let module Pp = Pp.Pp(NCicBlob)
204 let module Subst = FoSubst in
206 let rec aux = function
208 | (j,_) :: tl when i = j -> 1
209 | _ :: tl -> 1 + aux tl
213 let vars_of i l = fst (List.assoc i l) in
214 let ty_of i l = snd (List.assoc i l) in
215 let close_with_lambdas vl t =
218 NCic.Lambda ("x"^string_of_int i, NCic.Implicit `Type, t))
221 let close_with_forall vl t =
224 NCic.Prod ("x"^string_of_int i, NCic.Implicit `Type, t))
228 let (_, lit, vl, proof),_,_ = Terms.get_from_bag id bag in
229 let lit =match lit with
230 | Terms.Predicate t -> t (* assert false *)
231 | Terms.Equation (l,r,ty,_) ->
232 Terms.Node [ Terms.Leaf eqP(); ty; l; r]
237 let lit,_,_ = get_literal mp in
238 let lit = Subst.apply_subst subst lit in
239 extract status 0 [] lit in
240 (* composition of all subst acting on goal *)
242 let rec rsaux ongoal acc =
244 | [] -> acc (* is the final subst for refl *)
245 | id::tl when ongoal ->
246 let lit,vl,proof = get_literal id in
248 | Terms.Exact _ -> rsaux ongoal acc tl
249 | Terms.Step (_, _, _, _, _, s) ->
250 rsaux ongoal (s@acc) tl)
252 (* subst is the the substitution for refl *)
253 rsaux (id=mp) subst tl
255 let r = rsaux false [] steps in
256 (* prerr_endline ("res substitution: " ^ Pp.pp_substitution r);
257 prerr_endline ("\n" ^ "subst: " ^ Pp.pp_substitution subst); *)
260 let rec aux ongoal seen = function
263 let amount = List.length seen in
264 let lit,vl,proof = get_literal id in
265 if not ongoal && id = mp then
266 let lit = Subst.apply_subst subst lit in
267 let eq_ty = extract status amount [] lit in
269 if demod then NCic.Implicit `Term
270 else mk_refl eq_ty in
271 (* prerr_endline ("Reached m point, id=" ^ (string_of_int id));
272 (NCic.LetIn ("clause_" ^ string_of_int id, eq_ty, refl,
273 aux true ((id,([],lit))::seen) (id::tl))) *)
274 NCicSubstitution.subst status
275 ~avoid_beta_redexes:true ~no_implicit:false refl
276 (aux true ((id,([],lit))::seen) (id::tl))
279 | Terms.Exact _ when tl=[] ->
280 (* prerr_endline ("Exact (tl=[]) for " ^ (string_of_int id));*)
282 | Terms.Step _ when tl=[] -> assert false
285 prerr_endline ("Exact for " ^ (string_of_int id));
286 NCic.LetIn ("clause_" ^ string_of_int id,
287 close_with_forall vl (extract status amount vl lit),
288 close_with_lambdas vl (extract status amount vl ft),
290 ((id,(List.map (fun x -> Terms.Var x) vl,lit))::seen) tl)
292 NCicSubstitution.subst status
293 ~avoid_beta_redexes:true ~no_implicit:false
294 (close_with_lambdas vl (extract status amount vl ft))
296 ((id,(List.map (fun x -> Terms.Var x) vl,lit))::seen) tl)
297 | Terms.Step (_, id1, id2, dir, pos, subst) ->
298 let id, id1,(lit,vl,proof) =
300 let lit,vl,proof = get_literal id1 in
301 id1,id,(Subst.apply_subst res_subst lit,
302 Subst.filter res_subst vl, proof)
303 else id,id1,(lit,vl,proof) in
304 (* free variables remaining in the goal should not
305 be abstracted: we do not want to prove a generalization *)
306 let vl = if ongoal then [] else vl in
308 let vars = List.rev (vars_of id seen) in
309 let args = List.map (Subst.apply_subst subst) vars in
310 let args = List.map (extract status amount vl) args in
311 let rel_for_id = NCic.Rel (List.length vl + position id seen) in
312 if args = [] then rel_for_id
313 else NCic.Appl (rel_for_id::args)
315 let p_id1 = proof_of_id id1 in
316 let p_id2 = proof_of_id id2 in
320 if (ongoal=true) = (dir=Terms.Left2Right) then
323 let id1_ty = ty_of id1 seen in
325 match ty_of id2 seen with
326 | Terms.Node [ _; t; l; r ] ->
327 extract status amount vl (Subst.apply_subst subst t),
328 extract status amount vl (Subst.apply_subst subst l),
329 extract status amount vl (Subst.apply_subst subst r)
332 (*prerr_endline "mk_predicate :";
333 if ongoal then prerr_endline "ongoal=true"
334 else prerr_endline "ongoal=false";
335 prerr_endline ("id=" ^ string_of_int id);
336 prerr_endline ("id1=" ^ string_of_int id1);
337 prerr_endline ("id2=" ^ string_of_int id2);
338 prerr_endline ("Positions :" ^
340 (List.map string_of_int pos)));*)
342 p amount (Subst.apply_subst subst id1_ty) pos vl,
345 let rewrite_step = iff1 morphism p_id1
348 let pred, hole_type, l, r =
349 let id1_ty = ty_of id1 seen in
351 match ty_of id2 seen with
352 | Terms.Node [ _; t; l; r ] ->
353 extract status amount vl (Subst.apply_subst subst t),
354 extract status amount vl (Subst.apply_subst subst l),
355 extract status amount vl (Subst.apply_subst subst r)
359 prerr_endline "mk_predicate :";
360 if ongoal then prerr_endline "ongoal=true"
361 else prerr_endline "ongoal=false";
362 prerr_endline ("id=" ^ string_of_int id);
363 prerr_endline ("id1=" ^ string_of_int id1
364 ^": " ^ Pp.pp_foterm id1_ty);
365 prerr_endline ("id2=" ^ string_of_int id2
366 ^ ": " ^ NCicPp.ppterm [][][] id2_ty);
367 prerr_endline ("Positions :" ^
369 (List.map string_of_int pos)));*)
371 id2_ty amount (Subst.apply_subst subst id1_ty) pos vl,
376 if (ongoal=true) = (dir=Terms.Left2Right) then
378 [eq_ind_r(); hole_type; r; pred; p_id1; l; p_id2]
381 [ eq_ind(); hole_type; l; pred; p_id1; r; p_id2]
383 let body = aux ongoal
384 ((id,(List.map (fun x -> Terms.Var x) vl,lit))::seen) tl
387 NCicUntrusted.count_occurrences status [] 1 body in
389 NCicSubstitution.subst status
390 ~avoid_beta_redexes:true ~no_implicit:false
391 (close_with_lambdas vl rewrite_step) body
393 NCic.LetIn ("clause_" ^ string_of_int id,
394 close_with_forall vl (extract status amount vl lit),
395 (* NCic.Implicit `Type, *)
396 close_with_lambdas vl rewrite_step, body)
398 aux false [] steps, proof_type