diff options
| author | Matthieu Sozeau | 2015-12-02 15:37:14 +0100 |
|---|---|---|
| committer | Matthieu Sozeau | 2015-12-02 15:38:52 +0100 |
| commit | c62eb0470975c9b5960a49a90b49b4aa191efd1c (patch) | |
| tree | 3812bf622f165f19f255c7e1cdbb42a2d28af920 | |
| parent | 16504ad480a920e1800d52f5adbea8ddecefbeb0 (diff) | |
Add an option to deactivate compatibility printing of primitive
projections (off by default).
| -rw-r--r-- | pretyping/detyping.ml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/pretyping/detyping.ml b/pretyping/detyping.ml index b5228094a2..67261def0b 100644 --- a/pretyping/detyping.ml +++ b/pretyping/detyping.ml @@ -166,6 +166,18 @@ let _ = declare_bool_option optread = print_primproj_params; optwrite = (:=) print_primproj_params_value } +let print_primproj_compatibility_value = ref true +let print_primproj_compatibility () = !print_primproj_compatibility_value + +let _ = declare_bool_option + { optsync = true; + optdepr = false; + optname = "backwards-compatible printing of primitive projections"; + optkey = ["Printing";"Primitive";"Projection";"Compatibility"]; + optread = print_primproj_compatibility; + optwrite = (:=) print_primproj_compatibility_value } + + (* Auxiliary function for MutCase printing *) (* [computable] tries to tell if the predicate typing the result is inferable*) @@ -476,7 +488,7 @@ let rec detype flags avoid env sigma t = GApp (dl, GRef (dl, ConstRef (Projection.constant p), None), [detype flags avoid env sigma c]) else - if Projection.unfolded p then + if print_primproj_compatibility () && Projection.unfolded p then (** Print the compatibility match version *) let c' = try |
