]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/tactics/primitiveTactics.mli
Preparing for 0.5.9 release.
[helm.git] / helm / software / components / tactics / primitiveTactics.mli
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 (**** useful only to implement tactics similar to apply ****)
27
28 val generalize_exp_named_subst_with_fresh_metas :
29   Cic.context ->
30   int ->
31   UriManager.uri ->
32   (UriManager.uri * Cic.term) list ->
33   int * Cic.metasenv *
34   Cic.term Cic.explicit_named_substitution *
35   Cic.term Cic.explicit_named_substitution
36
37 val classify_metas :
38   Cic.term ->
39   (Cic.term -> bool) ->
40   (Cic.context -> Cic.term -> Cic.term) ->
41   (Cic.term * Cic.context * Cic.term) list ->
42   (Cic.term * Cic.context * Cic.term) list *
43   (Cic.term * Cic.context * Cic.term) list
44
45 (* Not primitive, but useful for elim *)
46
47 exception AllSelectedTermsMustBeConvertible;;
48
49 val generalize_tac:
50  ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
51  ProofEngineTypes.lazy_pattern ->
52    ProofEngineTypes.tactic
53
54 (* not a real tactic *)
55 val apply_tac_verbose :
56   term:Cic.term ->
57   ProofEngineTypes.proof * int ->
58   (Cic.term -> Cic.term) * (ProofEngineTypes.proof * int list)
59
60 (* the proof status has a subst now, and apply_tac honors it *)
61 val apply_tac:
62   term: Cic.term -> ProofEngineTypes.tactic
63 val applyP_tac: (* apply for procedural reconstruction *)
64   term: Cic.term -> ProofEngineTypes.tactic
65 val exact_tac:
66   term: Cic.term -> ProofEngineTypes.tactic
67 val intros_tac:
68   ?howmany:int ->
69   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> unit ->
70    ProofEngineTypes.tactic
71 val cut_tac:
72   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
73   Cic.term ->
74    ProofEngineTypes.tactic 
75 val letin_tac:
76   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
77   Cic.term ->
78    ProofEngineTypes.tactic 
79
80 val elim_intros_simpl_tac:
81   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
82   ?depth:int -> ?using:Cic.term -> 
83   ?pattern:ProofEngineTypes.lazy_pattern -> Cic.term ->
84   ProofEngineTypes.tactic 
85 val elim_intros_tac:
86   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
87   ?depth:int -> ?using:Cic.term -> 
88   ?pattern:ProofEngineTypes.lazy_pattern -> Cic.term ->
89   ProofEngineTypes.tactic 
90
91 val cases_intros_tac:
92   ?howmany:int ->
93   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
94   ?pattern:ProofEngineTypes.lazy_pattern -> Cic.term ->
95   ProofEngineTypes.tactic 
96
97 (* FG *)
98
99 val mk_predicate_for_elim: 
100  context:Cic.context -> metasenv:Cic.metasenv -> subst:Cic.substitution ->
101  ugraph:CicUniv.universe_graph -> goal:Cic.term -> 
102  arg:Cic.term -> using:Cic.term -> cpattern:Cic.term -> args_no:int -> 
103  Cic.metasenv * Cic.substitution * Cic.term * Cic.term * Cic.term list