]> matita.cs.unibo.it Git - helm.git/blob - components/tactics/proofEngineTypes.ml
matita 0.5.1 tagged
[helm.git] / components / tactics / proofEngineTypes.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 (* $Id$ *)
27
28   (**
29     current proof (proof uri * metas * (in)complete proof * term to be prooved)
30   *)
31 type proof = UriManager.uri option * Cic.metasenv * Cic.substitution * Cic.term * Cic.term * Cic.attribute list
32   (** current goal, integer index *)
33 type goal = int
34 type status = proof * goal
35
36 let initial_status ty metasenv attrs =
37   let rec aux max = function
38     | [] -> max + 1
39     | (idx, _, _) :: tl ->
40         if idx > max then
41           aux idx tl
42         else
43           aux max tl
44   in
45   let newmeta_idx = aux 0 metasenv in
46   let _subst = [] in
47   let proof =
48     None, (newmeta_idx, [], ty) :: metasenv, _subst, Cic.Meta (newmeta_idx, []), ty, attrs
49   in
50   (proof, newmeta_idx)
51
52   (**
53     a tactic: make a transition from one status to another one or, usually,
54     raise a "Fail" (@see Fail) exception in case of failure
55   *)
56   (** an unfinished proof with the optional current goal *)
57 type tactic = status -> proof * goal list
58
59   (** creates an opaque tactic from a status->proof*goal list function *)
60 let mk_tactic t = t
61
62 type reduction = Cic.context -> Cic.term -> Cic.term
63
64 let const_lazy_term t =
65   (fun _ metasenv ugraph -> t, metasenv, ugraph)
66
67 type lazy_reduction =
68   Cic.context -> Cic.metasenv -> CicUniv.universe_graph ->
69     reduction * Cic.metasenv * CicUniv.universe_graph
70
71 let const_lazy_reduction red =
72   (fun _ metasenv ugraph -> red, metasenv, ugraph)
73
74 type ('term, 'lazy_term) pattern =
75   'lazy_term option * (string * 'term) list * 'term option
76
77 type lazy_pattern = (Cic.term, Cic.lazy_term) pattern
78
79 let hole = Cic.Implicit (Some `Hole)
80
81 let conclusion_pattern t =
82   let t' = 
83     match t with
84     | None -> None
85     | Some t -> Some (const_lazy_term t)
86   in
87   t',[], Some hole
88
89   (** tactic failure *)
90 exception Fail of string Lazy.t
91
92   (** 
93     calls the opaque tactic on the status
94   *)
95 let apply_tactic t status = 
96   let (uri,metasenv,subst,bo,ty, attrs), gl = t status in
97   match 
98     CicRefine.pack_coercion_obj 
99       (Cic.CurrentProof ("",metasenv,Cic.Rel ~-1,ty,[],attrs))
100   with
101   | Cic.CurrentProof (_,metasenv,_,ty,_, attrs) -> 
102       (uri,metasenv,subst,bo,ty, attrs), gl
103   | _ -> assert false
104 ;;
105
106   (** constraint: the returned value will always be constructed by Cic.Name **)
107 type mk_fresh_name_type =
108  Cic.metasenv -> Cic.context -> Cic.name -> typ:Cic.term -> Cic.name
109
110 let goals_of_proof (_,metasenv,_subst,_,_,_) = List.map (fun (g,_,_) -> g) metasenv
111