X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Facic_content%2FtermAcicContent.mli;h=91438d248143d1941698b5ea4af8a4e5e928f1d9;hb=987627a48b2a3c2345d1af2c2a6b1ab78aa90b58;hp=214d7f5d2e9f228dc677c50100ca6a3b8aa0fb78;hpb=7815a9150b5581f60e49ad6520f46ac287e073fa;p=helm.git diff --git a/helm/software/components/acic_content/termAcicContent.mli b/helm/software/components/acic_content/termAcicContent.mli index 214d7f5d2..91438d248 100644 --- a/helm/software/components/acic_content/termAcicContent.mli +++ b/helm/software/components/acic_content/termAcicContent.mli @@ -23,7 +23,6 @@ * http://helm.cs.unibo.it/ *) -val hide_coercions: bool ref (** {2 Persistant state handling} *) @@ -55,6 +54,7 @@ val set_active_interpretations: interpretation_id list -> unit (** {2 acic -> content} *) val ast_of_acic: + output_type:[`Pattern|`Term] -> (Cic.id, CicNotationPt.sort_kind) Hashtbl.t -> (* id -> sort *) Cic.annterm -> (* acic *) CicNotationPt.term (* ast *) @@ -65,6 +65,11 @@ val ast_of_acic: (** @param env environment from argument_pattern to cic terms * @param pat cic_appl_pattern *) val instantiate_appl_pattern: - (string * Cic.term) list -> CicNotationPt.cic_appl_pattern -> - Cic.term + mk_appl:('term list -> 'term) -> + mk_implicit:(bool -> 'term) -> + term_of_uri : (UriManager.uri -> 'term) -> + (string * 'term) list -> CicNotationPt.cic_appl_pattern -> + 'term +val push: unit -> unit +val pop: unit -> unit