]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/variousTactics.ml
First implementation of the Auto tactic.
[helm.git] / helm / ocaml / tactics / variousTactics.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 search_theorems_in_context ~status:((proof,goal) as status) =
27   let module C = Cic in
28   let module R = CicReduction in
29   let module S = CicSubstitution in
30   prerr_endline "Entro in search_context";
31   let _,metasenv,_,_ = proof in
32   let _,context,ty = CicUtil.lookup_meta goal metasenv in
33   let rec find n = function 
34       [] -> []
35     | hd::tl ->
36         let res =
37           try 
38             Some (PrimitiveTactics.apply_tac ~status ~term:(C.Rel n)) 
39           with 
40             ProofEngineTypes.Fail _ -> None in
41         (match res with
42           Some res -> res::(find (n+1) tl)
43         | None -> find (n+1) tl)
44   in
45   try 
46     let res = find 1 context in
47     prerr_endline "Ho finito context";
48     res 
49   with Failure s -> 
50     prerr_endline ("SIAM QUI = " ^ s); []
51 ;;     
52
53
54 exception NotApplicableTheorem;;
55 exception MaxDepth;;
56
57 let depth = 5;;
58
59 let rec auto_tac mqi_handle level proof goal = 
60 prerr_endline "Entro in Auto_rec";
61 if level = 0 then
62   (* (proof, [goal]) *)
63   (prerr_endline ("NON ci credo");
64    raise MaxDepth)
65 else 
66   (* choices is a list of pairs proof and goallist *)
67   let choices  =
68     (search_theorems_in_context ~status:(proof,goal))@ 
69     (TacticChaser.searchTheorems mqi_handle ~status:(proof,goal)) 
70   in
71   let rec try_choices = function
72     [] -> raise NotApplicableTheorem
73   | (proof,goallist)::tl ->
74 prerr_endline ("GOALLIST = " ^ string_of_int (List.length goallist));
75        (try 
76           List.fold_left 
77             (fun (proof,opengoals) goal ->
78               let newproof, newgoals = auto_tac mqi_handle (level-1) proof goal in
79               (newproof, newgoals@opengoals))
80           (proof,[]) goallist
81         with 
82         | MaxDepth
83         | NotApplicableTheorem ->
84             try_choices tl) in
85  try_choices choices;;
86
87 let auto_tac mqi_handle ~status:(proof,goal) = 
88   prerr_endline "Entro in Auto";
89   try 
90     let res = auto_tac mqi_handle depth proof goal in
91 prerr_endline "AUTO_TAC HA FINITO";
92     res
93   with 
94   | MaxDepth -> assert false (* this should happens only if depth is 0 above *)
95   | NotApplicableTheorem -> 
96       prerr_endline("No applicable theorem");
97       raise (ProofEngineTypes.Fail "No Applicable theorem");;
98
99 (* TODO se ce n'e' piu' di una, prende la prima che trova... sarebbe meglio
100 chiedere: find dovrebbe restituire una lista di hyp (?) da passare all'utonto con una
101 funzione di callback che restituisce la (sola) hyp da applicare *)
102
103 let assumption_tac ~status:((proof,goal) as status) =
104   let module C = Cic in
105   let module R = CicReduction in
106   let module S = CicSubstitution in
107    let _,metasenv,_,_ = proof in
108     let _,context,ty = CicUtil.lookup_meta goal metasenv in
109      let rec find n = function 
110         hd::tl -> 
111          (match hd with
112              (Some (_, C.Decl t)) when
113                (R.are_convertible context (S.lift n t) ty) -> n
114            | (Some (_, C.Def (_,Some ty'))) when
115                (R.are_convertible context ty' ty) -> n
116            | (Some (_, C.Def (t,None))) when
117                (R.are_convertible context
118                 (CicTypeChecker.type_of_aux' metasenv context (S.lift n t)) ty) -> n 
119            | _ -> find (n+1) tl
120          )
121       | [] -> raise (ProofEngineTypes.Fail "Assumption: No such assumption")
122      in PrimitiveTactics.apply_tac ~status ~term:(C.Rel (find 1 context))
123 ;;
124
125 (* ANCORA DA DEBUGGARE *)
126
127 exception AllSelectedTermsMustBeConvertible;;
128
129 (* serve una funzione che cerchi nel ty dal basso a partire da term, i lambda
130 e li aggiunga nel context, poi si conta la lunghezza di questo nuovo
131 contesto e si lifta di tot... COSA SIGNIFICA TUTTO CIO'?????? *)
132
133 let generalize_tac
134  ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name)
135  terms ~status:((proof,goal) as status)
136 =
137   let module C = Cic in
138   let module P = PrimitiveTactics in
139   let module T = Tacticals in
140    let _,metasenv,_,_ = proof in
141    let _,context,ty = CicUtil.lookup_meta goal metasenv in
142     let typ =
143      match terms with
144         [] -> assert false
145       | he::tl ->
146          (* We need to check that all the convertibility of all the terms *)
147          List.iter
148           (function t ->
149             if not (CicReduction.are_convertible context he t) then 
150              raise AllSelectedTermsMustBeConvertible
151           ) tl ;
152          (CicTypeChecker.type_of_aux' metasenv context he)
153     in
154      T.thens 
155       ~start:
156         (P.cut_tac 
157          (C.Prod(
158            (mk_fresh_name_callback metasenv context C.Anonymous typ), 
159            typ,
160            (ProofEngineReduction.replace_lifting_csc 1
161              ~equality:(==) 
162              ~what:terms
163              ~with_what:(List.map (function _ -> C.Rel 1) terms)
164              ~where:ty)
165          )))
166       ~continuations: [(P.apply_tac ~term:(C.Rel 1)) ; T.id_tac]
167       ~status
168 ;;
169
170