]> matita.cs.unibo.it Git - helm.git/blob - components/tactics/declarative.ml
elim tactic: it needs two arguments, a term as well as a pattern
[helm.git] / components / tactics / declarative.ml
1 (* Copyright (C) 2006, 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 assume id t =
27   Tacticals.then_
28      ~start:
29        (Tactics.intros ~howmany:1
30         ~mk_fresh_name_callback:(fun _ _ _ ~typ -> Cic.Name id) ())
31      ~continuation:
32        (Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
33          (fun _ metasenv ugraph -> t,metasenv,ugraph))
34 ;;
35
36 let suppose t id ty =
37 (*BUG: check on t missing *)
38  let ty = match ty with None -> t | Some ty -> ty in
39  Tacticals.then_
40    ~start:
41      (Tactics.intros ~howmany:1
42        ~mk_fresh_name_callback:(fun _ _ _ ~typ -> Cic.Name id) ())
43    ~continuation:
44      (Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)  
45       (fun _ metasenv ugraph -> ty,metasenv,ugraph))
46 ;;
47
48 let by_term_we_proved ~dbd ~universe t ty id ty' =
49  let just =
50   match t with
51      None -> Tactics.auto ~dbd ~params:[] ~universe
52    | Some t -> Tactics.apply t
53  in
54   match id with
55      None ->
56       (match ty' with
57           None -> assert false
58         | Some ty' ->
59            Tacticals.then_
60             ~start:(Tactics.change
61               ~pattern:(ProofEngineTypes.conclusion_pattern None)
62               (fun _ metasenv ugraph -> ty,metasenv,ugraph))
63             ~continuation:just
64       )
65    | Some id ->
66        let continuation =
67         match ty' with
68            None -> Tacticals.id_tac
69          | Some ty' ->
70              Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
71               (fun _ metasenv ugraph -> ty',metasenv,ugraph)
72        in
73         Tacticals.thens
74         ~start:
75           (Tactics.cut ty
76             ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
77         ~continuations:[ continuation ; just ]
78 ;;
79
80 let bydone ~dbd ~universe t =
81  let just =
82   match t with
83      None -> Tactics.auto ~dbd ~params:[] ~universe
84    | Some t -> Tactics.apply t
85  in
86   just
87 ;;
88
89 let we_need_to_prove t id ty =
90  match id with
91     None ->
92      (match ty with
93          None -> Tacticals.id_tac (*BUG: check missing here *)
94        | Some ty ->
95           Tactics.change ~pattern:(ProofEngineTypes.conclusion_pattern None)
96            (fun _ metasenv ugraph -> ty,metasenv,ugraph))
97   | Some id ->
98      let aux status =
99       let cont,cutted =
100        match ty with
101           None -> Tacticals.id_tac,t
102         | Some ty ->
103            Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
104              (fun _ metasenv ugraph -> t,metasenv,ugraph), ty in
105       let proof,goals =
106        ProofEngineTypes.apply_tactic
107         (Tacticals.thens
108           ~start:
109            (Tactics.cut cutted
110              ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
111           ~continuations:[cont])
112         status
113       in
114        let goals' =
115         match goals with
116            [fst; snd] -> [snd; fst]
117          | _ -> assert false
118        in
119         proof,goals'
120      in
121       ProofEngineTypes.mk_tactic aux
122 ;;
123
124 let existselim ~dbd ~universe t id1 t1 id2 t2 =
125  let aux (proof, goal) = 
126   let (n,metasenv,bo,ty,attrs) = proof in
127   let metano,context,_ = CicUtil.lookup_meta goal metasenv in
128   let t2, metasenv, _ = t2 (Some (Cic.Name id1, Cic.Decl t1) :: context) metasenv CicUniv.oblivion_ugraph in
129   let proof' = (n,metasenv,bo,ty,attrs) in
130    ProofEngineTypes.apply_tactic (
131    Tacticals.thens
132     ~start:(Tactics.cut (Cic.Appl [Cic.MutInd (UriManager.uri_of_string "cic:/matita/logic/connectives/ex.ind", 0, []); t1 ; Cic.Lambda (Cic.Name id1, t1, t2)]))
133     ~continuations:
134      [ Tactics.elim_intros (Cic.Rel 1)
135         ~mk_fresh_name_callback:
136           (let i = ref 0 in
137             fun _ _ _  ~typ ->
138              incr i;
139              if !i = 1 then Cic.Name id1 else Cic.Name id2) ;
140        (match t with
141           None -> Tactics.auto ~dbd ~params:[] ~universe
142         | Some t -> Tactics.apply t)
143      ]) (proof', goal)
144  in
145   ProofEngineTypes.mk_tactic aux
146 ;;
147
148 let andelim t id1 t1 id2 t2 = 
149  Tactics.elim_intros t
150       ~mk_fresh_name_callback:
151         (let i = ref 0 in
152           fun _ _ _  ~typ ->
153            incr i;
154            if !i = 1 then Cic.Name id1 else Cic.Name id2)
155
156 let rewritingstep ~dbd ~universe lhs rhs just last_step =
157  let aux ((proof,goal) as status) =
158   let (curi,metasenv,proofbo,proofty, attrs) = proof in
159   let _,context,gty = CicUtil.lookup_meta goal metasenv in
160   let eq,trans =
161    match LibraryObjects.eq_URI () with
162       None -> raise (ProofEngineTypes.Fail (lazy "You need to register the default equality first. Please use the \"default\" command"))
163     | Some uri ->
164       Cic.MutInd (uri,0,[]), Cic.Const (LibraryObjects.trans_eq_URI ~eq:uri,[])
165   in
166   let ty,_ =
167    CicTypeChecker.type_of_aux' metasenv context rhs CicUniv.empty_ugraph in
168   let just =
169    match just with
170       `Auto params ->
171         let params =
172          if not (List.exists (fun (k,_) -> k = "paramodulation") params) then
173           ("paramodulation","1")::params
174          else params in
175         let params =
176          if not (List.exists (fun (k,_) -> k = "timeout") params) then
177           ("timeout","3")::params
178          else params
179         in
180          Tactics.auto ~dbd ~params ~universe
181     | `Term just -> Tactics.apply just 
182   in
183    let plhs,prhs,prepare =
184     match lhs with
185        None ->
186         let plhs,prhs =
187          match gty with 
188             Cic.Appl [_;_;plhs;prhs] -> plhs,prhs
189           | _ -> assert false
190         in
191          plhs,prhs,
192           (fun continuation ->
193             ProofEngineTypes.apply_tactic continuation status)
194      | Some (None,lhs) ->
195         let plhs,prhs =
196          match gty with 
197             Cic.Appl [_;_;plhs;prhs] -> plhs,prhs
198           | _ -> assert false
199         in
200          (*CSC: manca check plhs convertibile con lhs *)
201          plhs,prhs,
202           (fun continuation ->
203             ProofEngineTypes.apply_tactic continuation status)
204      | Some (Some name,lhs) ->
205         let newmeta = CicMkImplicit.new_meta metasenv [] in
206         let irl =
207          CicMkImplicit.identity_relocation_list_for_metavariable context in
208         let plhs = lhs in
209         let prhs = Cic.Meta(newmeta,irl) in
210          plhs,prhs,
211           (fun continuation ->
212             let metasenv = (newmeta, context, ty)::metasenv in
213             let mk_fresh_name_callback =
214              fun metasenv context _ ~typ ->
215               FreshNamesGenerator.mk_fresh_name ~subst:[] metasenv context
216                (Cic.Name name) ~typ
217             in
218             let proof = curi,metasenv,proofbo,proofty, attrs in
219             let proof,goals =
220              ProofEngineTypes.apply_tactic
221               (Tacticals.thens
222                 ~start:(Tactics.cut ~mk_fresh_name_callback
223                  (Cic.Appl [eq ; ty ; lhs ; prhs]))
224                 ~continuations:[Tacticals.id_tac ; continuation]) (proof,goal)
225             in
226              let goals =
227               match goals with
228                  [g1;g2] -> [g2;newmeta;g1]
229                | _ -> assert false
230              in
231               proof,goals)
232    in
233     let continuation =
234      if last_step then
235       (*CSC:manca controllo sul fatto che rhs sia convertibile con prhs*)
236       just
237      else
238       Tacticals.thens
239        ~start:(Tactics.apply ~term:(Cic.Appl [trans;ty;plhs;rhs;prhs]))
240        ~continuations:[just ; Tacticals.id_tac]
241     in
242      prepare continuation
243  in
244   ProofEngineTypes.mk_tactic aux
245 ;;
246
247 let we_proceed_by_cases_on t pat =
248  (*BUG here: pat unused *)
249  Tactics.cases_intros t
250 ;;
251
252 let we_proceed_by_induction_on t pat =
253  let pattern = None, [], Some pat in
254  Tactics.elim_intros ~depth:0 ~pattern t
255 ;;
256
257 let case id ~params =
258  (*BUG here: id unused*)
259  (*BUG here: it does not verify that the previous branch is closed *)
260  (*BUG here: the params should be parsed telescopically*)
261  (*BUG here: the tactic_terms should be terms*)
262  let rec aux ~params ((proof,goal) as status) =
263   match params with
264      [] -> proof,[goal]
265    | (id,t)::tl ->
266       match ProofEngineTypes.apply_tactic (assume id t) status with
267          proof,[goal] -> aux tl (proof,goal)
268        | _ -> assert false
269  in
270   ProofEngineTypes.mk_tactic (aux ~params)
271 ;;
272
273 let thesisbecomes t =
274 let ty = None in
275  match ty with
276     None ->
277      Tactics.change ~pattern:(None,[],Some (Cic.Implicit (Some `Hole)))
278       (fun _ metasenv ugraph -> t,metasenv,ugraph)
279   | Some ty ->
280      (*BUG here: missing check on t *)
281      Tactics.change ~pattern:(None,[],Some (Cic.Implicit (Some `Hole)))
282       (fun _ metasenv ugraph -> ty,metasenv,ugraph)
283 ;;
284
285 let byinduction t id  = suppose t id None;;