diff options
| author | Hugo Herbelin | 2014-11-22 18:10:14 +0100 |
|---|---|---|
| committer | Hugo Herbelin | 2014-11-30 12:52:00 +0100 |
| commit | 31aa17efa51c6420f2b2f8fdb1e8397ab5212cbb (patch) | |
| tree | 31e1918cadcf972d3e879dc7f0910573c74558a3 | |
| parent | 524f38b37fa744b7859d8c97bdec6bcbf27882aa (diff) | |
Set use_evars_eagerly_in_conv_on_closed_terms in rewrite_unif_flags too.
This allows to have the example in test setoid_unif.v to work again.
| -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 3c34c507f4..22145d4615 100644 --- a/tactics/rewrite.ml +++ b/tactics/rewrite.ml @@ -531,7 +531,7 @@ let rewrite_transparent_state () = let rewrite_core_unif_flags = { Unification.modulo_conv_on_closed_terms = None; Unification.use_metas_eagerly_in_conv_on_closed_terms = true; - Unification.use_evars_eagerly_in_conv_on_closed_terms = false; + Unification.use_evars_eagerly_in_conv_on_closed_terms = true; Unification.modulo_delta = empty_transparent_state; Unification.modulo_delta_types = full_transparent_state; Unification.check_applied_meta_types = true; |
