;;
let rec flexible_arg context subst = function
- | NCic.Meta (i,_) | NCic.Appl (NCic.Meta (i,_) :: _)->
+ | NCic.Meta (i,_) ->
(try
let _,_,t,_ = List.assoc i subst in
flexible_arg context subst t
with Not_found -> true)
+ | NCic.Appl (NCic.Meta (i,_) :: args)->
+ (try
+ let _,_,t,_ = List.assoc i subst in
+ flexible_arg context subst
+ (NCicReduction.head_beta_reduce ~delta:max_int
+ (NCic.Appl (t :: args)))
+ with Not_found -> true)
(* this is a cheap whd, it only performs zeta-reduction.
*
* it works when the **omissis** disambiguation algorithm
with NCicUtils.Subst_not_found _ -> false
;;
-let rec mk_irl =
- function
- 0 -> []
- | n -> NCic.Rel n :: mk_irl (n-1)
+let rec mk_irl stop base =
+ if base > stop then []
+ else (NCic.Rel base) :: mk_irl stop (base+1)
;;
(* the argument must be a term in whd *)
metasenv, subst, bo
| (arg,ty)::tail ->
pp(lazy("arg{ " ^
- NCicPp.ppterm ~metasenv ~subst ~context:context_of_args arg ^ ":" ^
+ NCicPp.ppterm ~metasenv ~subst ~context:context_of_args arg ^ " : " ^
NCicPp.ppterm ~metasenv ~subst ~context:context_of_args ty));
let metasenv, subst, telescopic_ty =
if processed_args = [] then metasenv, subst, ty else
let _ = pp(lazy("delift")) in
- delift_type_wrt_terms rdb metasenv subst context_of_args ty
- (List.rev processed_args)
+ delift_type_wrt_terms rdb metasenv subst context
+ (NCicSubstitution.lift n ty)
+ (List.map (NCicSubstitution.lift n) (List.rev processed_args))
in
- pp(lazy("arg}"));
+ pp(lazy("arg} "^NCicPp.ppterm ~metasenv ~subst ~context telescopic_ty));
let name = "HBeta"^string_of_int n in
let metasenv, subst, bo =
mk_lambda metasenv subst ((name,NCic.Decl telescopic_ty)::context) (n+1)
(*D*) in outside true; rc with exn -> outside false; raise exn
and delift_type_wrt_terms rdb metasenv subst context t args =
+ let lc = List.rev args @ mk_irl (List.length context) (List.length args+1) in
let (metasenv, subst), t =
try
NCicMetaSubst.delift
with UnificationFailure _ | Uncertain _ -> None
in
indent := ind; res)
- metasenv subst context 0 (0,NCic.Ctx (args @
- List.rev (mk_irl (List.length context)))) t
+ metasenv subst context 0 (0,NCic.Ctx lc) t
with NCicMetaSubst.MetaSubstFailure _ -> (metasenv, subst), t
in
metasenv, subst, t
(* this should be moved elsewhere *)
val fix_sorts: NCic.term -> NCic.term
+(* delift_type_wrt_terms st m s c t args
+ * lift t (length args)
+ * [ rel 1 ... rel (len args) / lift (length args) (arg_1 .. arg_n) ]
+ *)
val delift_type_wrt_terms:
#NRstatus.status ->
NCic.metasenv -> NCic.substitution -> NCic.context ->
- NCic.term -> NCic.term list ->
+ NCic.term -> NCic.term list ->
NCic.metasenv * NCic.substitution * NCic.term