diff options
| author | Matthieu Sozeau | 2014-10-08 17:25:00 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-10-10 20:40:04 +0200 |
| commit | 4dca32d9eabd2c5a1a239cfb8c3a33a0d962991c (patch) | |
| tree | 289abefff61c1966a091a12062efd62b9a0fab29 /pretyping/detyping.ml | |
| parent | a806b1d47273b008507aa08a99e5e45fbfe5243b (diff) | |
Make constrMatching and detyping more robust with respect to
expand_projection failing if an innapropriate sigma is given.
Diffstat (limited to 'pretyping/detyping.ml')
| -rw-r--r-- | pretyping/detyping.ml | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/pretyping/detyping.ml b/pretyping/detyping.ml index 205c5a208b..1119293f5b 100644 --- a/pretyping/detyping.ml +++ b/pretyping/detyping.ml @@ -450,17 +450,22 @@ let rec detype flags avoid env sigma t = else if Projection.unfolded p then (** Print the compatibility match version *) - let pb = Environ.lookup_projection p (snd env) in - let body = pb.Declarations.proj_body in - let ty = Retyping.get_type_of (snd env) sigma c in - let (ind, args) = Inductive.find_rectype (snd env) ty in - let body' = strip_lam_assum body in - detype flags avoid env sigma (substl (c :: List.rev args) body') + let c' = + try + let pb = Environ.lookup_projection p (snd env) in + let body = pb.Declarations.proj_body in + let ty = Retyping.get_type_of (snd env) sigma c in + let (ind, args) = Inductiveops.find_mrectype (snd env) sigma ty in + let body' = strip_lam_assum body in + substl (c :: List.rev args) body' + with Retyping.RetypeError _ | Not_found -> + anomaly (str"Cannot detype an unfolded primitive projection.") + in detype flags avoid env sigma c' else - let ty = Retyping.get_type_of (snd env) sigma c in - let (ind, args) = Inductive.find_rectype (snd env) ty in - GApp (dl, GRef (dl, ConstRef (Projection.constant p), None), - List.map (detype flags avoid env sigma) (args @ [c])) + let c = + try Retyping.expand_projection (snd env) sigma p c [] + with Retyping.RetypeError _ -> anomaly (str"Cannot detype a primitive projection") + in detype flags avoid env sigma c | Evar (evk,cl) -> let id,l = try Evd.evar_ident evk sigma, |
