]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/proofEngineHelpers.ml
mk_fresh_name moved to FreshNamesGenerator.
[helm.git] / helm / ocaml / tactics / proofEngineHelpers.ml
1 (* Copyright (C) 2002, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 let new_meta_of_proof ~proof:(_, metasenv, _, _) =
27   CicMkImplicit.new_meta metasenv
28
29 let subst_meta_in_proof proof meta term newmetasenv =
30  let uri,metasenv,bo,ty = proof in
31   let subst_in = CicMetaSubst.apply_subst [meta,term] in
32    let metasenv' =
33     newmetasenv @ (List.filter (function (m,_,_) -> m <> meta) metasenv)
34    in
35     let metasenv'' =
36      List.map
37       (function i,canonical_context,ty ->
38         let canonical_context' =
39          List.map
40           (function
41               Some (n,Cic.Decl s) -> Some (n,Cic.Decl (subst_in s))
42             | Some (n,Cic.Def (s,None)) -> Some (n,Cic.Def ((subst_in s),None))
43             | None -> None
44             | Some (_,Cic.Def (_,Some _)) -> assert false
45           ) canonical_context
46         in
47          i,canonical_context',(subst_in ty)
48       ) metasenv'
49     in
50      let bo' = subst_in bo in
51       let newproof = uri,metasenv'',bo',ty in
52        (newproof, metasenv'')
53
54 (*CSC: commento vecchio *)
55 (* refine_meta_with_brand_new_metasenv meta term subst_in newmetasenv     *)
56 (* This (heavy) function must be called when a tactic can instantiate old *)
57 (* metavariables (i.e. existential variables). It substitues the metasenv *)
58 (* of the proof with the result of removing [meta] from the domain of     *)
59 (* [newmetasenv]. Then it replaces Cic.Meta [meta] with [term] everywhere *)
60 (* in the current proof. Finally it applies [apply_subst_replacing] to    *)
61 (*  current proof.                                                        *)
62 (*CSC: A questo punto perche' passare un bo' gia' istantiato, se tanto poi *)
63 (*CSC: ci ripasso sopra apply_subst!!!                                     *)
64 (*CSC: Attenzione! Ora questa funzione applica anche [subst_in] a *)
65 (*CSC: [newmetasenv].                                             *)
66 let subst_meta_and_metasenv_in_proof proof meta subst_in newmetasenv =
67  let (uri,_,bo,ty) = proof in
68   let bo' = subst_in bo in
69   let metasenv' =
70    List.fold_right
71     (fun metasenv_entry i ->
72       match metasenv_entry with
73          (m,canonical_context,ty) when m <> meta ->
74            let canonical_context' =
75             List.map
76              (function
77                  None -> None
78                | Some (i,Cic.Decl t) -> Some (i,Cic.Decl (subst_in t))
79                | Some (i,Cic.Def (t,None))  ->
80                   Some (i,Cic.Def ((subst_in t),None))
81                | Some (_,Cic.Def (_,Some _))  -> assert false
82              ) canonical_context
83            in
84             (m,canonical_context',subst_in ty)::i
85        | _ -> i
86     ) newmetasenv []
87   in
88    let newproof = uri,metasenv',bo',ty in
89     (newproof, metasenv')
90