]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_tactics/nTacStatus.mli
brg: change in the representation of binders
[helm.git] / helm / software / components / ng_tactics / nTacStatus.mli
index 0dd5acdc01cc472f0e04d1f081168552902a01cb..ec9f7738aac7314fad72944c0d43a7cf145aacf7 100644 (file)
@@ -32,7 +32,7 @@ val term_of_cic_term :
 
 val mk_cic_term : NCic.context -> NCic.term -> cic_term
 val disambiguate:
- #pstatus as 'status -> tactic_term -> cic_term option -> NCic.context -> 
+ #pstatus as 'status -> NCic.context -> tactic_term -> cic_term option ->
   'status * cic_term (* * cic_term XXX *)
 
 val analyse_indty: 
@@ -40,6 +40,7 @@ val analyse_indty:
   'status * (NReference.reference * int * NCic.term list * NCic.term list)
 
 val ppterm: #pstatus -> cic_term -> string
+val ppcontext: #pstatus -> NCic.context -> string
 val whd: 
  #pstatus as 'status -> ?delta:int -> NCic.context -> cic_term -> 
   'status * cic_term 
@@ -55,16 +56,18 @@ val refine:
   'status * cic_term * cic_term (* status, term, type *)
 val apply_subst:
  #pstatus as 'status -> NCic.context -> cic_term -> 'status * cic_term
-val fix_sorts: cic_term -> cic_term
+val fix_sorts: #pstatus as 'status -> cic_term -> 'status * cic_term
 val saturate :
- #pstatus as 'status -> cic_term -> 'status * cic_term * cic_term list
+ #pstatus as 'status -> ?delta:int -> cic_term -> 'status * cic_term * cic_term list
+val metas_of_term : #pstatus as 'status -> cic_term -> int list
 
 val get_goalty: #pstatus -> int -> cic_term
 val mk_meta: 
  #pstatus as 'status -> ?attrs:NCic.meta_attrs -> NCic.context ->
-   [ `Decl of cic_term | `Def of cic_term ] ->
+   [ `Decl of cic_term | `Def of cic_term ] -> NCicUntrusted.meta_kind ->
      'status * cic_term
 val instantiate: #pstatus as 'status -> int -> cic_term -> 'status
+val instantiate_with_ast: #pstatus as 'status -> int -> tactic_term -> 'status
 
 val select_term:
  #pstatus as 'status -> 
@@ -107,4 +110,6 @@ with type constant_name = NCicInverseRelIndexable.constant_name
 and type input = NCicInverseRelIndexable.input
 and type data = Ncic_termSet.elt and type dataset = Ncic_termSet.t
 
+val debug : bool ref
+
 (* end *)