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.
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_______________________________________________________________ *)
12 (* $Id: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
14 exception Error of string lazy_t * exn option
15 val fail: ?exn:exn -> string lazy_t -> 'a
17 type automation_cache = NDiscriminationTree.DiscriminationTree.t
18 type unit_eq_cache = NCicParamod.state
20 class type g_eq_status =
22 method eq_cache : unit_eq_cache
28 method set_eq_cache: unit_eq_cache -> 'self
29 method set_eq_status: #g_eq_status -> 'self
32 class type g_auto_status =
34 method auto_cache : automation_cache
40 method set_auto_cache: automation_cache -> 'self
41 method set_auto_status: #g_auto_status -> 'self
44 class type g_pstatus =
46 inherit GrafiteDisambiguate.g_status
52 class virtual pstatus :
53 string option -> NCic.obj ->
56 inherit GrafiteDisambiguate.status
59 method set_obj: NCic.obj -> 'self
60 method set_pstatus: #g_pstatus -> 'self
63 type tactic_term = NotationPt.term Disambiguate.disambiguator_input
64 type tactic_pattern = GrafiteAst.npattern Disambiguate.disambiguator_input
67 val ctx_of : cic_term -> NCic.context
68 val term_of_cic_term :
69 #pstatus as 'status -> cic_term -> NCic.context -> 'status * NCic.term
71 val mk_cic_term : NCic.context -> NCic.term -> cic_term
73 #pstatus as 'status -> NCic.context -> tactic_term -> cic_term option ->
74 'status * cic_term (* * cic_term XXX *)
77 #pstatus as 'status -> cic_term ->
78 'status * (NReference.reference * int * NCic.term list * NCic.term list)
80 val ppterm: #pstatus -> cic_term -> string
81 val ppcontext: #pstatus -> NCic.context -> string
83 #pstatus as 'status -> ?delta:int -> NCic.context -> cic_term ->
86 #pstatus as 'status -> ?delta:int -> NCic.context -> cic_term ->
89 #pstatus as 'status -> NCic.context -> cic_term -> 'status * cic_term
91 #pstatus as 'status -> NCic.context -> cic_term -> cic_term -> 'status
93 #pstatus as 'status -> NCic.context -> cic_term -> cic_term option ->
94 'status * cic_term * cic_term (* status, term, type *)
96 #pstatus as 'status -> NCic.context -> cic_term -> 'status * cic_term
97 val apply_subst_context :
98 #pstatus -> fix_projections:bool -> NCic.context -> NCic.context
99 val fix_sorts: #pstatus as 'status -> cic_term -> 'status * cic_term
101 #pstatus as 'status -> ?delta:int -> cic_term -> 'status * cic_term * cic_term list
102 val metas_of_term : #pstatus as 'status -> cic_term -> int list
104 val get_goalty: #pstatus -> int -> cic_term
105 val get_subst: #pstatus -> NCic.substitution
107 #pstatus as 'status -> ?attrs:NCic.meta_attrs -> NCic.context ->
108 [ `Decl of cic_term | `Def of cic_term ] -> NCicUntrusted.meta_kind ->
110 val instantiate: #pstatus as 'status -> ?refine:bool -> int -> cic_term -> 'status
111 val instantiate_with_ast: #pstatus as 'status -> int -> tactic_term -> 'status
114 #pstatus as 'status ->
115 found: ('status -> cic_term -> 'status * cic_term) ->
116 postprocess: ('status -> cic_term -> 'status * cic_term) ->
117 cic_term -> tactic_term option * NCic.term ->
120 val mk_in_scope: #pstatus as 'status -> cic_term -> 'status * cic_term
122 int -> (#pstatus as 'status) -> cic_term -> 'status * cic_term
124 class type ['stack] g_status =
130 class virtual ['stack] status :
131 string option -> NCic.obj -> 'stack ->
133 inherit ['stack] g_status
135 method set_stack: 'stack -> 'self
136 method set_status: 'stack #g_status -> 'self
139 class type virtual lowtac_status = [unit] status
141 type 'status lowtactic = #lowtac_status as 'status -> int -> 'status
143 class type virtual tac_status = [Continuationals.Stack.t] status
145 val pp_tac_status: #tac_status -> unit
147 type 'status tactic = #tac_status as 'status -> 'status
149 (* indexing facilities over cic_term based on inverse De Bruijn indexes *)
151 module NCicInverseRelIndexable : Discrimination_tree.Indexable
152 with type input = cic_term and type constant_name = NUri.uri
154 module Ncic_termSet : Set.S with type elt = cic_term
156 module InvRelDiscriminationTree : Discrimination_tree.DiscriminationTree
157 with type constant_name = NCicInverseRelIndexable.constant_name
158 and type input = NCicInverseRelIndexable.input
159 and type data = Ncic_termSet.elt and type dataset = Ncic_termSet.t