]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nTacStatus.mli
df862f223f436a26b35bf90cc6e569ed71a94ba0
[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 : cic_term -> NCic.context -> NCic.term
37
38 val mk_cic_term : NCic.context -> NCic.term -> cic_term
39 type ast_term = string * int * CicNotationPt.term
40 val disambiguate:
41   lowtac_status -> ast_term -> cic_term option -> NCic.context -> 
42     lowtac_status * cic_term (* * cic_term XXX *)
43
44 val analyse_indty: 
45   lowtac_status -> cic_term -> 
46     NReference.reference * int * NCic.term list * NCic.term list
47
48 val whd: lowtac_status -> ?delta:int -> NCic.context -> cic_term -> cic_term 
49 val typeof: lowtac_status -> NCic.context -> cic_term -> cic_term
50 val unify: 
51   lowtac_status -> NCic.context -> cic_term -> cic_term -> lowtac_status
52 val refine: 
53   lowtac_status -> NCic.context -> cic_term -> cic_term option -> 
54     lowtac_status * cic_term * cic_term (* status, term, type *)
55
56 val get_goalty: lowtac_status -> int -> cic_term
57 val mk_meta: 
58    lowtac_status -> ?name:string -> NCic.context ->
59    [ `Decl of cic_term | `Def of cic_term ] ->
60      lowtac_status * cic_term
61 val instantiate: lowtac_status -> int -> cic_term -> lowtac_status
62
63 val select_term:
64   lowtac_status -> 
65   found: (lowtac_status -> cic_term -> lowtac_status * cic_term) ->
66   postprocess: (lowtac_status -> cic_term -> lowtac_status * cic_term) ->
67   cic_term -> ast_term option * NCic.term ->
68     lowtac_status * cic_term
69
70 val mk_in_scope: lowtac_status -> cic_term -> lowtac_status * cic_term
71 val mk_out_scope: int -> lowtac_status -> cic_term -> lowtac_status * cic_term
72
73 val pp_tac_status: tac_status -> unit
74
75 (* end *)