diff options
| author | Matthieu Sozeau | 2016-07-25 13:40:41 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2016-07-29 20:06:15 +0200 |
| commit | ba5c882c6c174170d18fe01f36863ca592065671 (patch) | |
| tree | 99d45a51cefaad2af4c66a9abf26714876f8f2c8 /tactics | |
| parent | 639eecd27e42c7dd646afdcb67b5a4e51a4541c1 (diff) | |
Fix bug #4673: regression in setoid_rewrite.
Modulo delta for types should be fully transparent.
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/rewrite.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/rewrite.ml b/tactics/rewrite.ml index 0892dc9e6c..3a62358e3e 100644 --- a/tactics/rewrite.ml +++ b/tactics/rewrite.ml @@ -576,7 +576,7 @@ let general_rewrite_unif_flags () = Unification.modulo_conv_on_closed_terms = Some ts; Unification.use_evars_eagerly_in_conv_on_closed_terms = false; Unification.modulo_delta = ts; - Unification.modulo_delta_types = ts; + Unification.modulo_delta_types = full_transparent_state; Unification.modulo_betaiota = true } in { Unification.core_unify_flags = core_flags; |
