let module U = UriManager in
let module R = CicReduction in
let module C = Cic in
- let (curi,metasenv,proofbo,proofty, attrs) = proof in
- let metano,context,ty = CicUtil.lookup_meta goal metasenv in
- let termty,_ = TC.type_of_aux' metasenv context term CicUniv.empty_ugraph in
- let termty = CicReduction.whd context termty in
- let (termty,metasenv',arguments,fresh_meta) =
- TermUtil.saturate_term
- (ProofEngineHelpers.new_meta_of_proof proof) metasenv context termty 0 in
- let term = if arguments = [] then term else Cic.Appl (term::arguments) in
- let uri,exp_named_subst,typeno,args =
- match termty with
- C.MutInd (uri,typeno,exp_named_subst) -> (uri,exp_named_subst,typeno,[])
- | C.Appl ((C.MutInd (uri,typeno,exp_named_subst))::args) ->
- (uri,exp_named_subst,typeno,args)
- | _ -> raise NotAnInductiveTypeToEliminate
- in
- let paramsno,itty,patterns =
- match CicEnvironment.get_obj CicUniv.empty_ugraph uri with
- C.InductiveDefinition (tys,_,paramsno,_),_ ->
- let _,_,itty,cl = List.nth tys typeno in
- let rec aux n context t =
- match n,CicReduction.whd context t with
- 0,C.Prod (name,source,target) ->
- let fresh_name =
- mk_fresh_name_callback metasenv' context name
- (*CSC: WRONG TYPE HERE: I can get a "bad" name*)
- ~typ:source
- in
- C.Lambda (fresh_name,C.Implicit None,
- aux 0 (Some (fresh_name,C.Decl source)::context) target)
- | n,C.Prod (name,source,target) ->
- let fresh_name =
- mk_fresh_name_callback metasenv' context name
- (*CSC: WRONG TYPE HERE: I can get a "bad" name*)
- ~typ:source
- in
- aux (n-1) (Some (fresh_name,C.Decl source)::context) target
- | 0,_ -> C.Implicit None
- | _,_ -> assert false
- in
- paramsno,itty,
- List.map (function (_,cty) -> aux paramsno context cty) cl
- | _ -> assert false
- in
- let _,right_args =
- List.fold_right
- (fun x (n,acc) -> if n > 0 then (n-1,x::acc) else (n,acc))
- args (List.length args - paramsno, [])
- in
- let outtype =
- let n_lambdas = List.length right_args + 1 in
- let lifted_ty = CicSubstitution.lift n_lambdas ty in
- let replace = ProofEngineReduction.replace_lifting
- ~equality:(ProofEngineReduction.alpha_equivalence)
- in
- let captured_ty =
- let what =
- List.map (CicSubstitution.lift n_lambdas) (right_args@[term])
- in
- let with_what =
- let rec mkargs = function
- | 0 -> []
- | 1 -> [Cic.Rel 1]
- | n -> (Cic.Implicit None)::(mkargs (n-1))
- in
- mkargs n_lambdas
- in
- replace ~what ~with_what ~where:lifted_ty
+ let (curi,metasenv,proofbo,proofty, attrs) = proof in
+ let metano,context,ty = CicUtil.lookup_meta goal metasenv in
+ let termty,_ = TC.type_of_aux' metasenv context term CicUniv.empty_ugraph in
+ let termty = CicReduction.whd context termty in
+ let (termty,metasenv',arguments,fresh_meta) =
+ TermUtil.saturate_term
+ (ProofEngineHelpers.new_meta_of_proof proof) metasenv context termty 0 in
+ let term = if arguments = [] then term else Cic.Appl (term::arguments) in
+ let uri,exp_named_subst,typeno,args =
+ match termty with
+ | C.MutInd (uri,typeno,exp_named_subst) -> (uri,exp_named_subst,typeno,[])
+ | C.Appl ((C.MutInd (uri,typeno,exp_named_subst))::args) ->
+ (uri,exp_named_subst,typeno,args)
+ | _ -> raise NotAnInductiveTypeToEliminate
+ in
+ let paramsno,itty,patterns,right_args =
+ match CicEnvironment.get_obj CicUniv.empty_ugraph uri with
+ | C.InductiveDefinition (tys,_,paramsno,_),_ ->
+ let _,left_parameters,right_args =
+ List.fold_right
+ (fun x (n,acc1,acc2) ->
+ if n > 0 then (n-1,acc1,x::acc2) else (n,x::acc1,acc2))
+ args (List.length args - paramsno, [],[])
in
- let captured_term_ty =
- let term_ty = CicSubstitution.lift (n_lambdas-1) termty in
- let rec mkrels = function 0 -> []|n -> (Cic.Rel n)::(mkrels (n-1)) in
- let rec fstn acc l n =
- if n = 0 then acc else fstn (acc@[List.hd l]) (List.tl l) (n-1)
- in
- match term_ty with
- | C.MutInd _ -> term_ty
- | C.Appl ((C.MutInd (a,b,c))::args) ->
- C.Appl ((C.MutInd (a,b,c))::
- fstn [] args paramsno @ mkrels (n_lambdas -1))
- | _ -> raise NotAnInductiveTypeToEliminate
+ let _,_,itty,cl = List.nth tys typeno in
+ let rec aux left_parameters context t =
+ match left_parameters,CicReduction.whd context t with
+ | [],C.Prod (name,source,target) ->
+ let fresh_name =
+ mk_fresh_name_callback metasenv' context name ~typ:source
+ in
+ C.Lambda (fresh_name,C.Implicit None,
+ aux [] (Some (fresh_name,C.Decl source)::context) target)
+ | hd::tl,C.Prod (name,source,target) ->
+ (* left parameters instantiation *)
+ aux tl context (CicSubstitution.subst hd target)
+ | [],_ -> C.Implicit None
+ | _ -> assert false
in
- let rec add_lambdas = function
- | 0 -> captured_ty
- | 1 ->
- C.Lambda (C.Name "matched", captured_term_ty, (add_lambdas 0))
- | n ->
- C.Lambda (C.Name ("right_"^(string_of_int (n-1))),
- C.Implicit None, (add_lambdas (n-1)))
- in
- add_lambdas n_lambdas
+ paramsno,itty,
+ List.map (function (_,cty) -> aux left_parameters context cty) cl,
+ right_args
+ | _ -> assert false
+ in
+ let outtype =
+ let n_right_args = List.length right_args in
+ let n_lambdas = n_right_args + 1 in
+ let lifted_ty = CicSubstitution.lift n_lambdas ty in
+ let replace = ProofEngineReduction.replace_lifting
+ ~equality:(ProofEngineReduction.alpha_equivalence)
+ in
+ let captured_ty =
+ let what =
+ List.map (CicSubstitution.lift n_lambdas) (right_args@[term])
in
- let term_to_refine =
- C.MutCase (uri,typeno,outtype,term,patterns)
- in
- let refined_term,_,metasenv'',_ =
- CicRefine.type_of_aux' metasenv' context term_to_refine
- CicUniv.empty_ugraph
+ let with_what =
+ let rec mkargs = function
+ | 0 -> []
+ | 1 -> [Cic.Rel 1]
+ | n -> (Cic.Implicit None)::(mkargs (n-1))
in
- let new_goals =
- ProofEngineHelpers.compare_metasenvs
- ~oldmetasenv:metasenv ~newmetasenv:metasenv''
- in
- let proof' = curi,metasenv'',proofbo,proofty, attrs in
- let proof'', new_goals' =
- apply_tactic (apply_tac ~term:refined_term) (proof',goal)
- in
- (* The apply_tactic can have closed some of the new_goals *)
- let patched_new_goals =
- let (_,metasenv''',_,_,_) = proof'' in
- List.filter
- (function i -> List.exists (function (j,_,_) -> j=i) metasenv'''
- ) new_goals @ new_goals'
- in
- proof'', patched_new_goals
- in
+ mkargs n_lambdas
+ in
+ replace ~what ~with_what ~where:lifted_ty
+ in
+ let captured_term_ty =
+ let term_ty = CicSubstitution.lift n_right_args termty in
+ let rec mkrels = function 0 -> []|n -> (Cic.Rel n)::(mkrels (n-1)) in
+ let rec fstn acc l n =
+ if n = 0 then acc else fstn (acc@[List.hd l]) (List.tl l) (n-1)
+ in
+ match term_ty with
+ | C.MutInd _ -> term_ty
+ | C.Appl ((C.MutInd (a,b,c))::args) ->
+ C.Appl ((C.MutInd (a,b,c))::
+ fstn [] args paramsno @ mkrels n_right_args)
+ | _ -> raise NotAnInductiveTypeToEliminate
+ in
+ let rec add_lambdas = function
+ | 0 -> captured_ty
+ | 1 ->
+ C.Lambda (C.Name "matched", captured_term_ty, (add_lambdas 0))
+ | n ->
+ C.Lambda (C.Name ("right_"^(string_of_int (n-1))),
+ C.Implicit None, (add_lambdas (n-1)))
+ in
+ add_lambdas n_lambdas
+ in
+ let term_to_refine = C.MutCase (uri,typeno,outtype,term,patterns) in
+ let refined_term,_,metasenv'',_ =
+ CicRefine.type_of_aux' metasenv' context term_to_refine
+ CicUniv.empty_ugraph
+ in
+ let new_goals =
+ ProofEngineHelpers.compare_metasenvs
+ ~oldmetasenv:metasenv ~newmetasenv:metasenv''
+ in
+ let proof' = curi,metasenv'',proofbo,proofty, attrs in
+ let proof'', new_goals' =
+ apply_tactic (apply_tac ~term:refined_term) (proof',goal)
+ in
+ (* The apply_tactic can have closed some of the new_goals *)
+ let patched_new_goals =
+ let (_,metasenv''',_,_,_) = proof'' in
+ List.filter
+ (function i -> List.exists (function (j,_,_) -> j=i) metasenv''')
+ new_goals @ new_goals'
+ in
+ proof'', patched_new_goals
+ in
mk_tactic (cases_tac ~term)
;;