]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/proofEngineHelpers.ml
2d576c3d8badf7c3f760041e3aa40d2a808e563b
[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      (* Metavariables can appear also in the *statement* of the theorem
52       * since the parser does not reject as statements terms with
53       * metavariable therein *)
54      let ty' = subst_in ty in
55       let newproof = uri,metasenv'',bo',ty' in
56        (newproof, metasenv'')
57
58 (*CSC: commento vecchio *)
59 (* refine_meta_with_brand_new_metasenv meta term subst_in newmetasenv     *)
60 (* This (heavy) function must be called when a tactic can instantiate old *)
61 (* metavariables (i.e. existential variables). It substitues the metasenv *)
62 (* of the proof with the result of removing [meta] from the domain of     *)
63 (* [newmetasenv]. Then it replaces Cic.Meta [meta] with [term] everywhere *)
64 (* in the current proof. Finally it applies [apply_subst_replacing] to    *)
65 (*  current proof.                                                        *)
66 (*CSC: A questo punto perche' passare un bo' gia' istantiato, se tanto poi *)
67 (*CSC: ci ripasso sopra apply_subst!!!                                     *)
68 (*CSC: Attenzione! Ora questa funzione applica anche [subst_in] a *)
69 (*CSC: [newmetasenv].                                             *)
70 let subst_meta_and_metasenv_in_proof proof meta subst_in newmetasenv =
71  let (uri,_,bo,ty) = proof in
72   let bo' = subst_in bo in
73   (* Metavariables can appear also in the *statement* of the theorem
74    * since the parser does not reject as statements terms with
75    * metavariable therein *)
76   let ty' = subst_in ty in
77   let metasenv' =
78    List.fold_right
79     (fun metasenv_entry i ->
80       match metasenv_entry with
81          (m,canonical_context,ty) when m <> meta ->
82            let canonical_context' =
83             List.map
84              (function
85                  None -> None
86                | Some (i,Cic.Decl t) -> Some (i,Cic.Decl (subst_in t))
87                | Some (i,Cic.Def (t,None))  ->
88                   Some (i,Cic.Def ((subst_in t),None))
89                | Some (_,Cic.Def (_,Some _))  -> assert false
90              ) canonical_context
91            in
92             (m,canonical_context',subst_in ty)::i
93        | _ -> i
94     ) newmetasenv []
95   in
96    let newproof = uri,metasenv',bo',ty' in
97     (newproof, metasenv')
98