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