(************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* decrec (Array.fold_right (fun a l -> a::l) l acc) f | Cast (c1,_,_) -> decrec acc c1 | _ -> (c,acc) in decrec [] let decomp_pat = let rec decrec acc = function | PApp (f,args) -> decrec (Array.to_list args @ acc) f | c -> (c,acc) in decrec [] let constr_pat_discr t = if not (occur_meta_pattern t) then None else match decomp_pat t with | PRef ((IndRef _) as ref), args | PRef ((ConstructRef _ ) as ref), args | PRef ((VarRef _) as ref), args -> Some(ref,args) | _ -> None let constr_val_discr t = let c, l = decomp t in match kind_of_term c with (* Const _,_) -> Some(TERM c,l) *) | Ind ind_sp -> Some(IndRef ind_sp,l) | Construct cstr_sp -> Some(ConstructRef cstr_sp,l) | Var id -> Some(VarRef id,l) | _ -> None (* Les deux fonctions suivantes ecrasaient les precedentes, ajout d'un suffixe _nil CP 16/08 *) let constr_pat_discr_nil t = match constr_pat_discr t with | None -> None | Some (c,_) -> Some(c,[]) let constr_val_discr_nil t = match constr_val_discr t with | None -> None | Some (c,_) -> Some(c,[]) let create = Dn.create let add dn = Dn.add dn constr_pat_discr let rmv dn = Dn.rmv dn constr_pat_discr let lookup dn t = Dn.lookup dn constr_val_discr t let app f dn = Dn.app f dn