diff options
| author | Hugo Herbelin | 2016-09-01 10:03:18 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2016-09-01 10:03:18 +0200 |
| commit | c9c54122d1d9493a965b483939e119d52121d5a6 (patch) | |
| tree | cd088e4cc5c0f69a3bdd25025b14523d43e18ea2 | |
| parent | b6c6e953d28d216c6320418885e20605cc69fb92 (diff) | |
Fixing call to "lazy beta iota" in "refine" (restoring v8.4 behavior).
(It was reducing also in hypotheses.)
| -rw-r--r-- | tactics/tactics.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml index 54977dbce7..a66dbd6e88 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -4589,7 +4589,7 @@ module New = struct let reduce_after_refine = Proofview.V82.tactic (reduce (Lazy {rBeta=true;rIota=true;rZeta=false;rDelta=false;rConst=[]}) - {onhyps=None; concl_occs=AllOccurrences }) + {onhyps=Some []; concl_occs=AllOccurrences }) let refine ?unsafe c = Proofview.Refine.refine ?unsafe c <*> |
