X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_refiner%2FnCicMetaSubst.mli;h=0cedc5258db577288cc0e1be10173c9229b1dd97;hb=40ebec98f53ac1a9a1e7a462cbf0dd3e3d8d42fd;hp=1ed2fcee3f607c3960ae450d3833a88707cfd094;hpb=d174e54c365ab9df38367de9336c213a03be3c27;p=helm.git diff --git a/helm/software/components/ng_refiner/nCicMetaSubst.mli b/helm/software/components/ng_refiner/nCicMetaSubst.mli index 1ed2fcee3..0cedc5258 100644 --- a/helm/software/components/ng_refiner/nCicMetaSubst.mli +++ b/helm/software/components/ng_refiner/nCicMetaSubst.mli @@ -14,22 +14,12 @@ exception MetaSubstFailure of string Lazy.t exception Uncertain of string Lazy.t -(* -exception AssertFailure of string Lazy.t -exception DeliftingARelWouldCaptureAFreeVariable;; -val apply_subst : Cic.substitution -> Cic.term -> Cic.term -val apply_subst_context : Cic.substitution -> Cic.context -> Cic.context -val apply_subst_metasenv: Cic.substitution -> Cic.metasenv -> Cic.metasenv - -(*** delifting ***) - -val restrict : - Cic.substitution -> (int * int) list -> Cic.metasenv -> - Cic.metasenv * Cic.substitution -*) +(* the index of the last created meta *) +val maxmeta: unit -> int (* the delift function takes in input a metavariable index, a local_context - * and a term t, and substitutes every Rel in t with its position in + * and a term t, and substitutes every subterm t' of t with its position + * (searched up-to unification) in * the local_context (which is the Rel moved to the canonical context). * Typically, the list of optional terms is the explicit * substitution that is applied to a metavariable occurrence and the result of @@ -56,20 +46,19 @@ val restrict: (* bool = true if the type of the new meta is closed *) val mk_meta: - ?name:string -> + ?attrs:NCic.meta_attrs -> NCic.metasenv -> NCic.context -> - [ `WithType of NCic.term | `Term | `Type | `Sort ] -> + ?with_type:NCic.term -> NCicUntrusted.meta_kind -> NCic.metasenv * int * NCic.term * NCic.term (* menv,metano,instance,type *) +(* extend_meta m n: n must be in m *) +val extend_meta: NCic.metasenv -> int -> NCic.metasenv * NCic.term + (* returns the resulting type, the metasenv and the arguments *) val saturate: ?delta:int -> NCic.metasenv -> NCic.substitution -> NCic.context -> NCic.term -> int -> NCic.term * NCic.metasenv * NCic.term list -val flexible: NCic.substitution -> NCic.term list -> bool - -val in_scope_tag : string -val out_scope_tag : int -> string -val is_out_scope_tag : string -> bool -val int_of_out_scope_tag : string -> int +val is_out_scope_tag : NCic.meta_attrs -> bool +val int_of_out_scope_tag : NCic.meta_attrs -> int