(************************************************************************) (* * The Rocq Prover / The Rocq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************)
open CErrors open Util open Names open Nameops open Termops open Constr open Context open Environ open Evd open EConstr open Vars open Reductionops open Tacred open Pretype_errors open Evarutil open Unification open Tactypes open Logic
type meta_arg = {
marg_meta : metavariable;
marg_chain : metavariable listoption;
marg_dep : bool;
marg_templ : (rel_context * Univ.Level.t) option;
} (* List of clenv meta arguments with the submetas of the clenv it has been possibly chained with. We never need to chain more than two clenvs, so there
is no need to make the type recursive. *)
let merge_fsorts evd clenv = let usubst = Evd.universe_subst evd in (* Hackish check: the level is considered to be already fresh when it is not part of the evarmap substitution. Other heuristics are more broken because some parts of the UState API are not very clear about their invariants and
this is relied upon by e.g. Program. *) letfilter l = not (UnivFlex.mem l usubst) in let fold accu marg = match marg.marg_templ with
| None -> accu
| Some (ctx, l) -> Univ.Level.Set.add l accu in let fsorts = List.fold_left fold Univ.Level.Set.empty clenv.metas in let fsorts = Univ.Level.Set.filterfilter fsorts in let uctx = (fsorts, Univ.Constraints.empty) in
Evd.merge_context_set Evd.univ_flexible evd uctx
let update_clenv_evd clenv evd metam = let evd = merge_fsorts evd clenv in
mk_clausenv clenv.env evd metam clenv.metas clenv.templval clenv.metaset clenv.templtyp
let strip_params env sigma c = match EConstr.kind sigma c with
| App (f, args) ->
(match EConstr.kind sigma f with
| Const cst ->
(match Structures.PrimitiveProjections.find_opt_with_relevance cst with
| Some (p,r) -> let p = Projection.make p falsein let npars = Projection.npars p in if Array.length args > npars then
mkApp (mkProj (p, r, args.(npars)),
Array.sub args (npars+1) (Array.length args - (npars + 1))) else c
| None -> c)
| _ -> c)
| _ -> c
let meta_handler sigma = let meta_value mv = match Unification.Meta.meta_opt_fvalue sigma mv with
| None -> None
| Some b -> Some b.rebus in
{ Reductionops.meta_value }
let clenv_strip_proj_params clenv = let templval = strip_params clenv.env clenv.evd clenv.templval in
mk_clausenv clenv.env clenv.evd clenv.metam clenv.metas templval clenv.metaset clenv.templtyp
let get_template env sigma c = let (hd, args) = EConstr.decompose_app sigma c in match EConstr.destRef sigma hd with
| ConstructRef (ind, i), u when Environ.template_polymorphic_ind ind env -> let (mib, mip) = Inductive.lookup_mind_specif env ind in let templ = match mib.Declarations.mind_template with
| None -> assert false
| Some t -> t.template_param_arguments in
Some (ind, List.skipn_at_best (Array.length args) templ)
| _ -> None
| exception DestKO -> None
let get_type_of_with_metas ~metas env sigma c = let metas n = try Some (Unification.Meta.meta_ftype metas n).Unification.rebus with Not_found -> None in
Retyping.get_type_of ~metas env sigma c
let refresh_template_constraints ~metas env sigma ind c = let mib = Environ.lookup_mind (fst ind) env in let ctx = (Option.get mib.mind_template).template_context in let cstrs0 = UVars.UContext.constraints @@ UVars.AbstractContext.repr ctx in if Univ.Constraints.is_empty cstrs0 then sigma else let _, allargs = decompose_app sigma c in letmap c = { uj_val = c; uj_type = get_type_of_with_metas ~metas env sigma c } in let allargs = Array.mapmap allargs in let sigma, univs = Typing.get_template_parameters env sigma ind allargs in let cstrs, _, _ = Inductive.instantiate_template_universes mib univs in
Evd.add_constraints sigma cstrs
let clenv_refresh env sigma ctx clenv = match ctx with
| Some ctx -> let (subst, ctx) = UnivGen.fresh_sort_context_instance ctx in let emap c = Vars.subst_univs_level_constr subst c in let sigma = Evd.merge_sort_context_set Evd.univ_flexible sigma ctx in (* Only metas are mentioning the old universes. *)
mk_clausenv env sigma (Unification.Meta.map_metas emap clenv.metam) clenv.metas
(emap clenv.templval)
clenv.metaset
(emap (fst clenv.templtyp), snd clenv.templtyp)
| None -> (* We also refresh template arguments. This assumes that callers of {!clenv_refresh} use a freshly minted clenv, but this is the case as this
function is only used by auto-like tactics for hint refresh. *) let fold (metas, sigma) marg = match marg.marg_templ with
| None -> (metas, sigma), marg
| Some (decls, _) -> let sigma, s = Evd.new_univ_level_variable Evd.univ_flexible_alg sigma in let t = it_mkProd_or_LetIn (mkType (Univ.Universe.make s)) decls in let name = Meta.meta_name clenv.metam marg.marg_meta in let metas = Meta.meta_declare marg.marg_meta t ~name metas in
(metas, sigma), { marg with marg_templ = Some (decls, s) } in let (metam, evd), metas = List.fold_left_map fold (clenv.metam, sigma) clenv.metas in let evd = match get_template env sigma clenv.templval with
| None -> evd
| Some (ind, _) -> refresh_template_constraints ~metas:metam env evd ind clenv.templval in
mk_clausenv env evd metam metas clenv.templval clenv.metaset clenv.templtyp
let clenv_evd ce = ce.evd let clenv_arguments c = List.map (fun arg -> arg.marg_meta) c.metas let clenv_meta_list c = c.metam
let clenv_meta_type ~metas env sigma mv = let ty = try Unification.Meta.meta_ftype metas mv with Not_found -> anomaly Pp.(str "unknown meta ?" ++ str (Nameops.string_of_meta mv) ++ str ".") in if Metaset.is_empty ty.freemetas then ty.rebus else Meta.meta_instance metas env sigma ty.rebus let clenv_value clenv = if Metaset.is_empty clenv.metaset then clenv.templval else Meta.meta_instance clenv.metam clenv.env clenv.evd clenv.templval let clenv_type clenv = if Metaset.is_empty (snd clenv.templtyp) then fst clenv.templtyp else Meta.meta_instance clenv.metam clenv.env clenv.evd (fst clenv.templtyp)
let clenv_push_prod cl = let metas = meta_handler cl.metam in let typ = whd_all ~metas cl.env (clenv_evd cl) (clenv_type cl) in let rec clrec typ = match EConstr.kind cl.evd typ with
| Cast (t,_,_) -> clrec t
| Prod (na,t,u) -> let mv = new_meta () in let dep = not (noccurn (clenv_evd cl) 1 u) in let na' = if dep then na.binder_name else Anonymous in let e' = Meta.meta_declare mv t ~name:na' cl.metam in let concl = if dep then subst1 (mkMeta mv) u else u in let templval = applist (cl.templval, [mkMeta mv]) in let metaset = Metaset.add mv cl.metaset in let marg = {
marg_meta = mv;
marg_chain = None;
marg_dep = dep;
marg_templ = None; (* We could refresh here but probably not worth it *)
} in
Some (mv, dep, { templval; metaset;
templtyp = (concl, metavars_of concl);
evd = cl.evd;
metam = e';
env = cl.env;
metas = cl.metas @ [marg]; })
| _ -> None in clrec typ
(* Instantiate the first [bound] products of [t] with metas (all products if
[bound] is [None]; unfold local defs *)
(** [clenv_environments sigma n t] returns [sigma',lmeta,ccl] where [lmetas] is a list of metas to be applied to a proof of [t] so that it produces the unification pattern [ccl]; [sigma'] is [sigma] extended with [lmetas]; if [n] is defined, it limits the size of the list even if [ccl] is still a product; otherwise, it stops when [ccl] is not a product; example: if [t] is [forall x y, x=y -> y=x] and [n] is [None], then [lmetas] is [Meta n1;Meta n2;Meta n3] and [ccl] is [Meta n1=Meta n2]; if [n] is [Some 1], [lmetas] is [Meta n1]
and [ccl] is [forall y, Meta n1=y -> y=Meta n1] *)
let clenv_environments env sigma template bound t = letopen EConstr in letopen Vars in let rec clrec templ sigma metam metas n t = match n, EConstr.kind sigma t with
| (Some 0, _) -> (metam, sigma, List.rev metas, t)
| (n, Cast (t,_,_)) -> clrec templ sigma metam metas n t
| (n, Prod (na,t1,t2)) -> let mv = new_meta () in let dep = not (noccurn sigma 1 t2) in let na' = if dep then na.binder_name else Anonymous in let sigma, t1, templ, tmpl = match templ with
| [] -> sigma, t1, templ, None
| None :: templ -> sigma, t1, templ, None
| Some _ :: templ -> let decls, _ = Reductionops.dest_arity env sigma t1 in let sigma, s = Evd.new_univ_level_variable Evd.univ_flexible_alg sigma in let t1 = EConstr.it_mkProd_or_LetIn (EConstr.mkType (Univ.Universe.make s)) decls in
sigma, t1, templ, Some (decls, s) in let metam = Meta.meta_declare mv t1 ~name:na' metam in let t2 = if dep then (subst1 (mkMeta mv) t2) else t2 in
clrec templ sigma metam ((mv, dep, tmpl) :: metas) (Option.map ((+) (-1)) n) t2
| (n, LetIn (na,b,_,t)) -> clrec templ sigma metam metas n (subst1 b t)
| (n, _) -> (metam, sigma, List.rev metas, t) in
clrec template sigma Meta.empty [] bound t
let mk_clenv_from_env env sigma n (c,cty) = let evd = sigma in let template = get_template env sigma c in let template_args = match template with Some (_, args) -> args | None -> [] in let (metas, evd, args, concl) = clenv_environments env evd template_args n cty in letmap (mv, _, _) = mkMeta mv in let templval = mkApp (c, Array.map_of_list map args) in let evd = match template with
| None -> evd
| Some (ind, _) -> refresh_template_constraints ~metas env evd ind templval in let metaset = Metaset.of_list (List.map pi1 args) in letmap (mv, dep, tmpl) = { marg_meta = mv; marg_chain = None; marg_dep = dep; marg_templ = tmpl } in
{ templval; metaset;
templtyp = (concl, metavars_of concl);
metam = metas;
evd = evd;
env = env;
metas = List.mapmap args;
}
let mk_clenv_from env sigma c = mk_clenv_from_env env sigma None c let mk_clenv_from_n env sigma n c = mk_clenv_from_env env sigma (Some n) c
(* [mentions clenv mv0 mv1] is true if mv1 is defined and mentions * mv0, or if one of the free vars on mv1's freelist mentions
* mv0 *)
let mentions sigma mv0 = let rec menrec mv1 =
Int.equal mv0 mv1 || let mlist = trymatch Meta.meta_opt_fvalue sigma mv1 with
| Some b -> b.freemetas
| None -> Metaset.empty with Not_found -> Metaset.empty in
Metaset.exists menrec mlist in menrec
let error_incompatible_inst sigma mv = let na = Meta.meta_name sigma mv in match na with
| Name id ->
user_err
Pp.(str "An incompatible instantiation has already been found for " ++
Id.print id)
| _ ->
anomaly ~label:"clenv_assign" (Pp.str "non dependent metavar already assigned.")
(* TODO: replace by clenv_unify (mkMeta mv) rhs ? *) let clenv_assign ~metas env sigma mv rhs = let rhs_metas = metavars_of rhs in if Metaset.exists (mentions metas mv) rhs_metas then
user_err Pp.(str "clenv_assign: circularity in unification"); try beginmatch Meta.meta_opt_fvalue metas mv with
| Some body -> ifnot (EConstr.eq_constr sigma body.rebus rhs) then
error_incompatible_inst metas mv else
sigma, metas
| None ->
Meta.meta_assign mv (rhs, Meta.TypeNotProcessed) metas sigma end with Not_found ->
user_err Pp.(str "clenv_assign: undefined meta")
(* [clenv_dependent hyps_only clenv] * returns a list of the metavars which appear in the template of clenv, * and which are dependent, This is computed by taking the metavars of the * template in right-to-left order, and collecting the metavars which appear * in their types, and adding in all the metavars appearing in the * type of clenv. * If [hyps_only] then metavariables occurring in the concl are _excluded_ * If [iter] is also set then all metavariables *recursively* occurring * in the concl are _excluded_
Details of the strategies used for computing the set of unresolved dependent metavariables
Then, we compute: A = the set of all unresolved metas C = the set of metas occurring in concl (here ?y, ?z) C* = the recursive closure of C wrt types (here ?y, ?z, ?U, ?V) D = the set of metas occurring in a type of meta (here ?x, ?T, ?z, ?U, ?V) NL = the set of duplicated metas even if non dependent (here ?T) (we make the assumption that duplicated metas have internal dependencies)
Then, for the "apply"-style tactic (hyps_only), missing metas are A inter ((D minus C) union NL)
for the optimized "apply"-style tactic (taking in care, f_equal style lemma, from 2/8/10, Coq > 8.3), missing metas are A inter (( D minus C* ) union NL)
for the "elim"-style tactic, missing metas are A inter (D union C union NL)
In any case, we respect the order given in A.
*)
let clenv_metas_in_type_of_meta ~metas env sigma mv = let typ = Meta.meta_ftype metas mv in let typ = if Metaset.is_empty typ.freemetas then typ.rebus else Meta.meta_instance metas env sigma typ.rebus in
metavars_of typ
let dependent_closure ~metas env sigma mvs = let rec aux mvs acc =
Metaset.fold
(fun mv deps -> let metas_of_meta_type = clenv_metas_in_type_of_meta ~metas env sigma mv in
aux metas_of_meta_type (Metaset.union deps metas_of_meta_type))
mvs acc in
aux mvs mvs
let undefined_metas metas = let fold n accu = match Unification.Meta.meta_opt_fvalue metas n with
| Some _ -> accu
| None -> n :: accu in let m = Unification.Meta.fold fold metas [] in List.sort Int.compare m
let clenv_dependent_gen hyps_only ?(iter=true) ~metas env sigma concl = let all_undefined = undefined_metas metas in let deps_in_concl = metavars_of concl in let deps_in_hyps = dependent_in_type_of_metas ~metas env sigma all_undefined in let deps_in_concl = if hyps_only && iter then dependent_closure ~metas env sigma deps_in_concl else deps_in_concl in List.filter
(fun mv -> if hyps_only then
Metaset.mem mv deps_in_hyps && not (Metaset.mem mv deps_in_concl) else
Metaset.mem mv deps_in_hyps || Metaset.mem mv deps_in_concl)
all_undefined
let clenv_missing ce = let miss = clenv_dependent_gen ~metas:ce.metam true ce.env ce.evd (clenv_type ce) in let miss = List.map (Unification.Meta.meta_name ce.metam) miss in
(miss, List.count (fun arg -> not arg.marg_dep) ce.metas)
let clenv_unify ?(flags=default_unify_flags ()) cv_pb t1 t2 clenv = let metas = clenv.metam in let metas, sigma = w_unify ~metas ~flags clenv.env clenv.evd cv_pb t1 t2 in
update_clenv_evd clenv sigma metas
let clenv_unify_meta_types ?(flags=default_unify_flags ()) clenv = let metas = clenv.metam in let metas, sigma = w_unify_meta_types ~metas ~flags:flags clenv.env clenv.evd in
update_clenv_evd clenv sigma metas
let clenv_unique_resolver ?(flags=default_unify_flags ()) clenv concl = let metas = meta_handler clenv.metam in let (hd, _) = decompose_app clenv.evd (whd_nored ~metas clenv.env clenv.evd (fst clenv.templtyp)) in let clenv = if isMeta clenv.evd hd then clenv_unify_meta_types ~flags clenv else clenv in
clenv_unify CUMUL ~flags (clenv_type clenv) concl clenv
let adjust_meta_source ~metas evd mv = function
| loc,Evar_kinds.VarInstance id -> let rec match_name c l = match EConstr.kind evd c, l with
| Lambda ({binder_name=Name id},_,c), a::l when EConstr.eq_constr evd a (mkMeta mv) -> Some id
| Lambda (_,_,c), a::l -> match_name c l
| _ -> None in (* This is very ad hoc code so that an evar inherits the name of the binder
in situations like "ex_intro (fun x => P) ?ev p" *) let f mv' = let t = Unification.Meta.meta_ftype metas mv' in if Metaset.mem mv t.freemetas then let f,l = decompose_app_list evd t.rebus in match EConstr.kind evd f with
| Meta mv'' ->
(match Meta.meta_opt_fvalue metas mv''with
| Some c -> match_name c.rebus l
| None -> None)
| _ -> None else None in let metas = List.rev @@ Unification.Meta.fold (fun mv accu -> mv :: accu) metas [] in let id = Option.default id (List.find_map f metas) in
loc,Evar_kinds.VarInstance id
| src -> src
(* [clenv_pose_metas_as_evars clenv dep_mvs] * For each dependent evar in the clause-env which does not have a value, * pose a value for it by constructing a fresh evar. We do this in * left-to-right order, so that every evar's type is always closed w.r.t. * metas.
* Node added 14/4/08 [HH]: before this date, evars were collected in clenv_dependent by collect_metas in the fold_constr order which is (almost) the left-to-right order of dependencies in term. However, due to K-redexes, collect_metas was sometimes missing some metas. The call to collect_metas has been replaced by a call to undefined_metas, but then the order was the one of definition of the metas (numbers in increasing order) which is _not_ the dependency order when a clenv_fchain occurs (because clenv_fchain plugs a term with a list of consecutive metas in place of a - a priori - arbitrary metavariable belonging to another sequence of consecutive metas: e.g., clenv_fchain may plug (H ?1 ?2) at the position ?6 of (nat_ind ?3 ?4 ?5 ?6), leading to a dependency order 3<4<5<1<2). To ensure the dependency order, we check that the type of each meta to pose is already meta-free, otherwise we postpone the transformation, hoping that no cycle may happen.
Another approach could have been to use decimal numbers for metas so that in the example above, (H ?1 ?2) would have been renumbered (H ?6.1 ?6.2) then making the numeric order match the dependency order.
*)
let clenv_pose_metas_as_evars ~metas env sigma dep_mvs = let rec fold metas sigma = function
| [] -> metas, sigma
| mv::mvs -> let ty = clenv_meta_type ~metas env sigma mv in (* Postpone the evar-ization if dependent on another meta *) (* This assumes no cycle in the dependencies - is it correct ? *) if occur_meta sigma ty then fold metas sigma (mvs@[mv]) else let src = Meta.evar_source_of_meta mv metas in let src = adjust_meta_source ~metas sigma mv src in let typeclass_candidate = Typeclasses.is_maybe_class_type sigma ty in let (sigma, evar) = new_evar ~typeclass_candidate env sigma ~src ty in let sigma, metas = clenv_assign ~metas env sigma mv evar in
fold metas sigma mvs in
fold metas sigma dep_mvs
(* [clenv_fchain mv clenv clenv'] * * Resolves the value of "mv" (which must be undefined) in clenv to be * the template of clenv' be the value "c", applied to "n" fresh * metavars, whose types are chosen by destructing "clf", which should * be a clausale forme generated from the type of "c". The process of * resolution can cause unification of already-existing metavars, and * of the fresh ones which get created. This operation is a composite * of operations which pose new metavars, perform unification on * terms, and make bindings.
Otherwise said, from
[clenv] = [env;sigma;metas |- c:T] [clenv'] = [env';sigma';metas' |- d:U] [mv] = [mi] of type [Ti] in [metas]
then, if the unification of [Ti] and [U] produces map [rho], the chaining is [env';sigma';rho'(metas),rho(metas') |- c:rho'(T)] for [rho'] being [rho;mi:=d].
In particular, it assumes that [env'] and [sigma'] extend [env] and [sigma].
*)
let fchain_flags () =
{ (default_unify_flags ()) with
allow_K_in_toplevel_higher_order_unification = true }
let clenv_instantiate ?(flags=fchain_flags ()) ?submetas mv clenv (c, ty) = let clenv, c = match submetas with
| None -> clenv, c
| Some (metas, metam) -> let metam = Unification.Meta.meta_merge metam clenv.metam in let clenv = update_clenv_evd clenv clenv.evd metam in let c = applist (c, List.map mkMeta metas) in letmap arg = if Int.equal mv arg.marg_meta then (* we never chain more than 2 clenvs *) let () = assert (Option.is_empty arg.marg_chain) in
{ arg with marg_chain = Some metas } else arg in let metas = List.mapmap clenv.metas in
{ clenv with metas = metas }, c in (* unify the type of the template of [nextclenv] with the type of [mv] *) let clenv = clenv_unify ~flags CUMUL ty (clenv_meta_type ~metas:clenv.metam clenv.env clenv.evd mv) clenv in let evd, metam = clenv_assign ~metas:clenv.metam clenv.env clenv.evd mv c in
update_clenv_evd clenv evd metam
(* [clenv_independent clenv] * returns a list of metavariables which appear in the term cval, * and which are not dependent. That is, they do not appear in * the types of other metavars which are in cval, nor in the type
* of cval, ctyp. *)
let clenv_independent clenv = let mvs = collect_metas clenv.evd (clenv_value clenv) in let ctyp_mvs = metavars_of (clenv_type clenv) in let deps = Metaset.union (dependent_in_type_of_metas ~metas:clenv.metam clenv.env clenv.evd mvs) ctyp_mvs in List.filter (fun mv -> not (Metaset.mem mv deps)) mvs
let check_bindings bl = matchList.duplicates qhyp_eq (List.map (fun {CAst.v=x} -> fst x) bl) with
| NamedHyp s :: _ ->
user_err ?loc:s.CAst.loc
Pp.(str "The variable " ++ Id.print s.CAst.v ++
str " occurs more than once in binding list.");
| AnonHyp n :: _ ->
user_err
Pp.(str "The position " ++ int n ++
str " occurs more than once in binding list.")
| [] -> ()
let explain_no_such_bound_variable mvl {CAst.v=id;loc} = letopen Pp in let expl = match mvl with
| [] -> str "(no bound variables at all in the expression)."
| [id] -> str "(possible name is: " ++ Id.print id ++ str ")."
| _ -> str "(possible names are: " ++ pr_enum Id.print mvl ++ str ")." in
user_err ?loc (str "No such bound variable " ++ Id.print id ++ spc () ++ expl)
let meta_with_name metas ({CAst.v=id} as lid) = let na = Name id in let fold n (l1, l2 as l) = let na' = Unification.Meta.meta_name metas n in let def = Option.has_some (Unification.Meta.meta_opt_fvalue metas n) in if Name.equal na na' then if def then (n::l1,l2) else (n::l1,n::l2) else l in let (mvl, mvnodef) = Unification.Meta.fold fold metas ([], []) in matchList.rev mvnodef, List.rev mvl with
| _,[] -> let fold n l = let na = Unification.Meta.meta_name metas n in if na != Anonymous then Name.get_id na :: l else l in let mvl = List.rev (Unification.Meta.fold fold metas []) in
explain_no_such_bound_variable mvl lid
| (n::_,_|_,n::_) ->
n
let meta_of_binder clause loc mvs = function
| NamedHyp s -> meta_with_name clause.metam s
| AnonHyp n -> tryList.nth mvs (n-1) with (Failure _|Invalid_argument _) ->
user_err Pp.(str "No such binder.")
let error_already_defined b = match b with
| NamedHyp id ->
user_err ?loc:id.CAst.loc
Pp.(str "Binder name \"" ++ Id.print id.CAst.v ++
str"\" already defined with incompatible value.")
| AnonHyp n ->
anomaly
Pp.(str "Position " ++ int n ++ str" already defined.")
let clenv_unify_binding_type ~metas env sigma c t u = if isMeta sigma (fst (decompose_app sigma (whd_nored ~metas:(meta_handler metas) env sigma u))) then (* Not enough information to know if some subtyping is needed *)
Meta.CoerceToType, metas, sigma, c else (* Enough information so as to try a coercion now *) try let sigma, metas, c = w_coerce_to_type ~metas env sigma c t u in
Meta.TypeProcessed, metas, sigma, c with
| PretypeError (_,_,ActualTypeNotCoercible (_,_,
(NotClean _ | ConversionFailed _))) as e -> raise e
| e when precatchable_exception e ->
Meta.TypeNotProcessed, metas, sigma, c
let clenv_assign_binding clenv k c = let k_typ = hnf_constr clenv.env clenv.evd (clenv_meta_type ~metas:clenv.metam clenv.env clenv.evd k) in let c_typ = nf_betaiota clenv.env clenv.evd (Retyping.get_type_of clenv.env clenv.evd c) in let status, metas, sigma, c = clenv_unify_binding_type ~metas:clenv.metam clenv.env clenv.evd c c_typ k_typ in let sigma, metas = Meta.meta_assign k (c, status) metas sigma in
update_clenv_evd clenv sigma metas
let clenv_match_args bl clenv = ifList.is_empty bl then
clenv else let mvs = clenv_independent clenv in
check_bindings bl; List.fold_left
(fun clenv {CAst.loc;v=(b,c)} -> let k = meta_of_binder clenv loc mvs b in match Meta.meta_opt_fvalue clenv.metam k with
| Some body -> if EConstr.eq_constr clenv.evd body.rebus c then clenv else error_already_defined b
| None ->
clenv_assign_binding clenv k c)
clenv bl
let error_not_right_number_missing_arguments n =
user_err
Pp.(strbrk "Not the right number of missing arguments (expected " ++
int n ++ str ").")
let clenv_constrain_dep_args hyps_only bl clenv = ifList.is_empty bl then
clenv else let occlist = clenv_dependent_gen ~metas:clenv.metam hyps_only clenv.env clenv.evd (clenv_type clenv) in if Int.equal (List.length occlist) (List.length bl) then List.fold_left2 clenv_assign_binding clenv occlist bl else if hyps_only then (* Tolerance for compatibility <= 8.3 *) let occlist' = clenv_dependent_gen ~metas:clenv.metam hyps_only ~iter:false clenv.env clenv.evd (clenv_type clenv) in if Int.equal (List.length occlist') (List.length bl) then List.fold_left2 clenv_assign_binding clenv occlist' bl else
error_not_right_number_missing_arguments (List.length occlist) else
error_not_right_number_missing_arguments (List.length occlist)
let pose_dependent_evars ?(with_evars=false) ~metas env sigma concl = let dep_mvs = clenv_dependent_gen ~metas false env sigma concl in ifnot (List.is_empty dep_mvs) && not with_evars then raise
(RefinerError (env, sigma, UnresolvedBindings (List.map (Meta.meta_name metas) dep_mvs)));
clenv_pose_metas_as_evars ~metas env sigma dep_mvs
let clenv_pose_dependent_evars ?with_evars clenv = let metas, sigma = pose_dependent_evars ?with_evars ~metas:clenv.metam clenv.env clenv.evd (clenv_type clenv) in
update_clenv_evd clenv sigma metas
let error_unsupported_deep_meta () =
user_err (strbrk "Application of lemmas whose beta-iota normal " ++
strbrk "form contains metavariables deep inside the term is not " ++
strbrk "supported; try \"refine\" instead.")
type proof =
| RfHole of metavariable
| RfGround of EConstr.t
| RfApp of proof * proof list
| RfProj of Projection.t * ERelevance.t * proof
exception NonLinear
let is_ground = function
| RfGround _ -> true
| RfHole _ | RfApp _ | RfProj _ -> false
let make_proof env sigma c = let metas = ref Metaset.empty in let rec make c = match EConstr.kind sigma c with
| Meta mv -> if Metaset.mem mv !metas thenraise NonLinear else let () = metas := Metaset.add mv !metas in
RfHole mv
| App (f, args) -> let f = make f in let args = Array.map_to_list (fun c -> make c) args in if is_ground f && List.for_all is_ground args then RfGround c else RfApp (f, args)
| Proj (p, r, a) -> let a = make a in if is_ground a then RfGround c else RfProj (p, r, a)
| _ -> if occur_meta sigma c then error_unsupported_deep_meta () else RfGround c in try make c with NonLinear -> raise (RefinerError (env, sigma, NonLinearProof c))
let rec as_constr = function
| RfHole mv -> EConstr.mkMeta mv
| RfGround c -> c
| RfApp (f, args) -> EConstr.mkApp (as_constr f, Array.map_of_list as_constr args)
| RfProj (p, r, c) -> EConstr.mkProj (p, r, as_constr c)
(* Old style mk_goal primitive *) let mk_goal env evars hyps concl = (* A goal created that way will not be used by refine and will not be shelved. It must not appear as a future_goal, so the future goals are restored to their initial value after the evar is
created. *) let evars = Evd.push_future_goals evars in let inst = EConstr.identity_subst_val hyps in let relevance = Retyping.relevance_of_type env evars concl in let (evars,evk) =
Evarutil.new_pure_evar ~src:(Loc.tag Evar_kinds.GoalEvar) ~typeclass_candidate:false hyps evars ~relevance concl in let _, evars = Evd.pop_future_goals evars in let ev = EConstr.mkEvar (evk,inst) in
(evk, ev, evars)
let rec mk_refgoals ~metas env sigma goalacc conclty trm = match trm with
| RfGround trm -> let ty = Retyping.get_type_of env sigma trm in
(goalacc, ty, sigma, trm)
| RfHole mv -> let conclty = match conclty with
| None -> Unification.Meta.meta_type metas env sigma mv
| Some conclty -> conclty in let conclty = nf_betaiota env sigma conclty in let hyps = Environ.named_context_val env in let (gl,ev,sigma) = mk_goal env sigma hyps conclty in
gl::goalacc, conclty, sigma, ev
| RfApp (f, l) -> let (acc',hdty,sigma,applicand) = match f with
| RfGround f when Termops.is_template_polymorphic_ref env sigma f -> let ty = (* Template polymorphism of definitions and inductive types *) let args, _ = List.split_when (fun p -> not (is_ground p)) l in let args = Array.map_of_list as_constr args in
type_of_global_reference_knowing_parameters env sigma f args in
goalacc, ty, sigma, f
| _ -> mk_refgoals ~metas env sigma goalacc None f in let ((acc'',conclty',sigma), args) = mk_arggoals ~metas env sigma acc' hdty l in let ans = EConstr.applist (applicand, args) in
(acc'', conclty', sigma, ans)
| RfProj (p, r, c) -> let (acc',cty,sigma,c') = mk_refgoals ~metas env sigma goalacc None c in let c = EConstr.mkProj (p, r, c') in let ty = get_type_of env sigma c in
(acc',ty,sigma,c)
and mk_arggoals ~metas env sigma goalacc funty allargs = let foldmap (goalacc, funty, sigma) harg = let t = whd_all ~metas:(meta_handler metas) env sigma funty in match EConstr.kind sigma t with
| Prod (_, c1, b) -> let (acc, hargty, sigma, arg) = mk_refgoals ~metas env sigma goalacc (Some c1) harg in
(acc, EConstr.Vars.subst1 arg b, sigma), arg
| _ -> raise (RefinerError (env,sigma,CannotApply (t, as_constr harg))) in List.fold_left_map foldmap (goalacc, funty, sigma) allargs
let treat_case env sigma ci lbrty accu = letopen EConstr in let fold (sigma, accu) (ctx, ty) = letopen Context.Rel.Declaration in let brctx = Array.of_list (List.rev_map get_annot ctx) in let args = Context.Rel.instance mkRel 0 ctx in (* TODO: tweak this to prevent dummy β-cuts *) let ty = nf_betaiota env sigma (it_mkProd_or_LetIn ty ctx) in let hyps = Environ.named_context_val env in let (gl, ev, sigma) = mk_goal env sigma hyps ty in let br' = mkApp (ev, args) in
(sigma, gl :: accu), (brctx, br') in
Array.fold_left_map fold (sigma, accu) lbrty
let std_refine ~metas env sigma cl r = let r = make_proof env sigma r in let (sgl, _, sigma, trm) = mk_refgoals ~metas env sigma [] (Some cl) r in
(sigma, sgl, trm)
(***********************************************) (* find appropriate names for pattern variables. Useful in the Case
and Inversion (case_then_using et case_nodep_then_using) tactics. *)
type refiner_kind =
| Std of Meta.t * EConstr.t
| Caseof case_node * (EConstr.rel_context * EConstr.t) array
let refiner_gen is_case = letopen Proofview.Notations in
Proofview.Goal.enter beginfun gl -> let sigma = Proofview.Goal.sigma gl in let env = Proofview.Goal.env gl in let st = Proofview.Goal.state gl in let cl = Proofview.Goal.concl gl in let (sigma, sgl, c) = match is_case with
| Case ((ci, u, pms, p, iv, c), branches) -> let ((sigma, accu), lf) = treat_case env sigma ci branches [] in let ans = EConstr.mkCase (ci, u, pms, p, iv, c, lf) in
(sigma, accu, ans)
| Std (metas, r) ->
std_refine ~metas env sigma cl r in letmap gl = Proofview.goal_with_state gl st in let sgl = List.rev_map map sgl in let evk = Proofview.Goal.goal gl in (* Check that the goal itself does not appear in the refined term *) let _ = ifnot (Evarutil.occur_evar_upto sigma evk c) then () else Pretype_errors.error_occur_check env sigma evk c in let sigma = Evd.define evk c sigma in
Proofview.Unsafe.tclEVARS sigma <*>
Proofview.Unsafe.tclSETGOALS sgl end
let refiner clenv = let r = clenv_value clenv in
refiner_gen (Std (clenv.metam, r))
end
open Unification
let dft = default_unify_flags
let res_pf ?(with_evars=false) ?(with_classes=true) ?(flags=dft ()) clenv =
Proofview.Goal.enter beginfun gl -> let concl = Proofview.Goal.concl gl in let clenv = clenv_unique_resolver ~flags clenv concl in let metas, sigma = pose_dependent_evars ~with_evars ~metas:clenv.metam clenv.env clenv.evd (clenv_type clenv) in let sigma = if with_classes then let sigma =
Typeclasses.resolve_typeclasses ~filter:Typeclasses.all_evars
~fail:(not with_evars) clenv.env sigma in (* After an apply, all the subgoals including those dependent shelved ones are in
the hands of the user and resolution won't be called implicitely on them. *)
Typeclasses.make_unresolvables (fun x -> true) sigma else sigma in let clenv = update_clenv_evd clenv sigma metas in let r = clenv_value clenv in
Proofview.tclTHEN
(Proofview.Unsafe.tclEVARS sigma)
(Internal.refiner_gen (Std (metas, r))) end
type case_analysis =
| RealCase of case_node
| PrimitiveEta of EConstr.t array
let build_case_analysis env sigma (ind, u) params pred indices indarg dep knd = letopen Inductiveops in letopen Context.Rel.Declaration in (* Assumes that the arguments do not contain free rels *) let indf = make_ind_family ((ind, u), Array.to_list params) in let projs = get_projections env ind in let relevance = Retyping.relevance_of_sort knd in
let pnas, deparsign = let arsign = get_arity env indf in let r = Inductiveops.relevance_of_inductive_family env indf in let depind = build_dependent_inductive env indf in let deparsign = LocalAssum (make_annot Anonymous r,depind)::arsign in let set_names env l = let ident_hd env ids t na = let na = Namegen.named_hd env (Evd.from_env env) t na in
Namegen.next_name_away na ids in let fold d (ids, l) = let id = ident_hd env ids (get_type d) (get_name d) in
(Id.Set.add id ids, set_name (Name id) d :: l) in
snd (List.fold_right fold l (Id.Set.empty,[])) in let pctx = let deparsign = set_names env deparsign in if dep then deparsign else LocalAssum (make_annot Anonymous r, depind) :: List.tl deparsign in let pnas = Array.of_list (List.rev_map get_annot pctx) in
pnas, deparsign in
match projs with
| None -> let ci = make_case_info env ind RegularStyle in let pbody =
mkApp
(pred, if dep then Context.Rel.instance mkRel 0 deparsign else Context.Rel.instance mkRel 1 (List.tl deparsign)) in let iv = if Typeops.should_invert_case env (ERelevance.kind sigma relevance) ci then CaseInvert { indices = indices } else NoInvert in
RealCase (ci, u, params, ((pnas, pbody), relevance), iv, indarg)
| Some ps -> let args = Array.map (fun (p,r) -> let r = EConstr.Vars.subst_instance_relevance u (ERelevance.make r) in
mkProj (Projection.make p true, r, indarg))
ps in
PrimitiveEta args
let case_pf ?(with_evars=false) ~dep (indarg, typ) =
Proofview.Goal.enter beginfun gl -> let env = Proofview.Goal.env gl in let sigma = Proofview.Goal.sigma gl in let concl = Proofview.Goal.concl gl in (* Extract inductive data from the argument. *) let hd, args = decompose_app sigma typ in (* Workaround to #5645: reduce_to_atomic_ind produces ill-typed terms *) let sigma, _ = Typing.checked_appvect env sigma hd args in let ind, u = destInd sigma hd in let s = Retyping.get_sort_of env sigma concl in let (mib, mip) = Inductive.lookup_mind_specif env ind in let params, indices = Array.chop mib.mind_nparams args in
let sigma = Indrec.check_valid_elimination env sigma (ind, u) ~dep s in
let indf =
Inductiveops.make_ind_family ((ind, u), Array.to_list params) in
(* Extract the return clause using unification with the conclusion *) let typP = Inductiveops.make_arity env sigma dep indf s in let mvP = new_meta () in let metas = Meta.meta_declare mvP typP Meta.empty in let depargs = Array.append indices [|indarg|] in let templtyp = if dep then mkApp (mkMeta mvP, depargs) else mkApp (mkMeta mvP, indices) in let flags = elim_flags () in let metas, sigma = w_unify_meta_types ~metas ~flags env sigma in let metas, sigma = w_unify ~metas ~flags env sigma CUMUL templtyp concl in let pred = Meta.meta_instance metas env sigma (mkMeta mvP) in
(* Create the branch types *) let branches = letopen Inductiveops in let constrs = get_constructors env indf in let get_branch cs = let base = mkApp (pred, cs.cs_concl_realargs) in let argctx = cs.cs_args in if dep then let argctx = Namegen.name_context env sigma argctx in
(argctx, applist (base, [build_dependent_constructor cs])) else
(argctx, base) in
Array.map get_branch constrs in
(* Build the case node proper *) let body = build_case_analysis env sigma (ind, u) params pred indices indarg dep s in
(* After an apply, all the subgoals including those dependent shelved ones are in
the hands of the user and resolution won't be called implicitely on them. *) let sigma =
Typeclasses.resolve_typeclasses ~filter:Typeclasses.all_evars
~fail:(not with_evars) env sigma in let sigma = Typeclasses.make_unresolvables (fun x -> true) sigma in (* Note that the environment rel context does not matter for betaiota *) let rec nf_betaiota c = EConstr.map sigma nf_betaiota (whd_betaiota ~metas:(meta_handler metas) env sigma c) in (* Call the legacy refiner on the result *) let arg = match body with
| RealCase (ci, u, pms, (p,r), iv, c) -> let c = nf_betaiota c in let pms = Array.map nf_betaiota pms in let p = on_snd nf_betaiota p in
Internal.Case ((ci, u, pms, (p,r), iv, c), branches)
| PrimitiveEta args -> let mv = new_meta () in let (ctx, t) = branches.(0) in let metas = Meta.meta_declare mv (it_mkProd_or_LetIn t ctx) metas in
Internal.Std (metas, mkApp (mkMeta mv, Array.map nf_betaiota args)) in
Proofview.tclTHEN
(Proofview.Unsafe.tclEVARS sigma)
(Internal.refiner_gen arg) end
(* [unifyTerms] et [unify] ne semble pas gérer les Meta, en particulier ne semblent pas vérifier que des instances différentes d'une même Meta sont compatibles. D'ailleurs le "fst" jette les metas
provenant de w_Unify. (Utilisé seulement dans prolog.ml) *)
(* let unifyTerms m n = walking (fun wc -> fst (w_Unify CONV m n [] wc)) *) let unify ?(flags=fail_quick_unif_flags) ~cv_pb m =
Proofview.Goal.enter beginfun gl -> let env = Tacmach.pf_env gl in let sigma = Proofview.Goal.sigma gl in let n = Tacmach.pf_concl gl in try let _, sigma = w_unify ~metas:Meta.empty env sigma cv_pb ~flags m n in
Proofview.Unsafe.tclEVARSADVANCE sigma with e when CErrors.noncritical e -> let info = Exninfo.reify () in
Proofview.tclZERO ~info e end
(****************************************************************) (* Clausal environment for an application *)
let make_clenv_binding_gen hyps_only n env sigma (c,t) = function
| ImplicitBindings largs -> let clause = mk_clenv_from_env env sigma n (c,t) in
clenv_constrain_dep_args hyps_only largs clause
| ExplicitBindings lbind -> let clause = mk_clenv_from_env env sigma n (c, t) in clenv_match_args lbind clause
| NoBindings ->
mk_clenv_from_env env sigma n (c,t)
let make_clenv_binding_apply env sigma n = make_clenv_binding_gen true n env sigma let make_clenv_binding env sigma = make_clenv_binding_gen false None env sigma
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.27Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.