]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nTacStatus.mli
3963f2500943ad1c6a793b8202398025b6e0af87
[helm.git] / helm / software / components / ng_tactics / nTacStatus.mli
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
13
14 exception Error of string lazy_t
15 val fail: string lazy_t -> 'a
16
17 type lowtac_status = {
18         pstatus : NCic.obj;
19         lstatus : LexiconEngine.status
20 }
21
22 type lowtactic = lowtac_status -> int -> lowtac_status 
23
24 type tac_status = {
25         gstatus : Continuationals.Stack.t; 
26         istatus : lowtac_status;
27
28
29 type tactic = tac_status -> tac_status
30
31 type tactic_term = CicNotationPt.term Disambiguate.disambiguator_input
32 type tactic_pattern = GrafiteAst.npattern Disambiguate.disambiguator_input
33
34 type cic_term 
35 val ctx_of : cic_term -> NCic.context
36 val term_of_cic_term : 
37       lowtac_status -> cic_term -> NCic.context -> lowtac_status * NCic.term
38
39 val mk_cic_term : NCic.context -> NCic.term -> cic_term
40 type ast_term = string * int * CicNotationPt.term
41 val disambiguate:
42   lowtac_status -> ast_term -> cic_term option -> NCic.context -> 
43     lowtac_status * cic_term (* * cic_term XXX *)
44
45 val analyse_indty: 
46   lowtac_status -> cic_term -> 
47     lowtac_status * 
48       (NReference.reference * int * NCic.term list * NCic.term list)
49
50 val whd: 
51       lowtac_status -> ?delta:int -> NCic.context -> cic_term -> 
52         lowtac_status * cic_term 
53 val typeof: 
54       lowtac_status -> NCic.context -> cic_term -> lowtac_status * cic_term
55 val unify: 
56   lowtac_status -> NCic.context -> cic_term -> cic_term -> lowtac_status
57 val refine: 
58   lowtac_status -> NCic.context -> cic_term -> cic_term option -> 
59     lowtac_status * cic_term * cic_term (* status, term, type *)
60
61 val get_goalty: lowtac_status -> int -> cic_term
62 val mk_meta: 
63    lowtac_status -> ?name:string -> NCic.context ->
64    [ `Decl of cic_term | `Def of cic_term ] ->
65      lowtac_status * cic_term
66 val instantiate: lowtac_status -> int -> cic_term -> lowtac_status
67
68 val select_term:
69   lowtac_status -> 
70   found: (lowtac_status -> cic_term -> lowtac_status * cic_term) ->
71   postprocess: (lowtac_status -> cic_term -> lowtac_status * cic_term) ->
72   cic_term -> ast_term option * NCic.term ->
73     lowtac_status * cic_term
74
75 val mk_in_scope: lowtac_status -> cic_term -> lowtac_status * cic_term
76 val mk_out_scope: int -> lowtac_status -> cic_term -> lowtac_status * cic_term
77
78 val pp_tac_status: tac_status -> unit
79
80 (* end *)