]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/proofEngineTypes.ml
test branch
[helm.git] / helm / ocaml / 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.term * Cic.term
32   (** current goal, integer index *)
33 type goal = int
34 type status = proof * goal
35
36 let initial_status ty metasenv =
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 proof =
47     None, (newmeta_idx, [], ty) :: metasenv, Cic.Meta (newmeta_idx, []), ty
48   in
49   (proof, newmeta_idx)
50
51   (**
52     a tactic: make a transition from one status to another one or, usually,
53     raise a "Fail" (@see Fail) exception in case of failure
54   *)
55   (** an unfinished proof with the optional current goal *)
56 type tactic = status -> proof * goal list
57
58   (** creates an opaque tactic from a status->proof*goal list function *)
59 let mk_tactic t = t
60
61 type reduction = Cic.context -> Cic.term -> Cic.term
62
63 let const_lazy_term t =
64   (fun _ metasenv ugraph -> t, metasenv, ugraph)
65
66 type lazy_reduction =
67   Cic.context -> Cic.metasenv -> CicUniv.universe_graph ->
68     reduction * Cic.metasenv * CicUniv.universe_graph
69
70 let const_lazy_reduction red =
71   (fun _ metasenv ugraph -> red, metasenv, ugraph)
72
73 type ('term, 'lazy_term) pattern =
74   'lazy_term option * (string * 'term) list * 'term option
75
76 type lazy_pattern = (Cic.term, Cic.lazy_term) pattern
77
78 let conclusion_pattern t =
79   let t' = 
80     match t with
81     | None -> None
82     | Some t -> Some (fun _ m u -> t, m, u)
83   in
84   t',[],Some (Cic.Implicit (Some `Hole))
85
86   (** tactic failure *)
87 exception Fail of string Lazy.t
88
89   (** 
90     calls the opaque tactic on the status, restoring the original 
91     universe graph if the tactic Fails
92   *)
93 let apply_tactic t status = 
94   t status
95
96   (** constraint: the returned value will always be constructed by Cic.Name **)
97 type mk_fresh_name_type =
98  Cic.metasenv -> Cic.context -> Cic.name -> typ:Cic.term -> Cic.name
99
100 let goals_of_proof (_,metasenv,_,_) = List.map (fun (g,_,_) -> g) metasenv
101