diff options
| author | Hugo Herbelin | 2018-08-21 14:59:23 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2018-09-06 16:38:45 +0200 |
| commit | e8ccf6120f3765e04c527bca8b2b1fffc6df08ca (patch) | |
| tree | cd10f52c37700b01b5efa4bcf70a85994f8b221f /proofs | |
| parent | 579f30a53809f9cf73aa3d7c69960b50fc51c7fc (diff) | |
Fixing #8270 (cbn was calling zeta even when not asked for).
Diffstat (limited to 'proofs')
| -rw-r--r-- | proofs/redexpr.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/redexpr.ml b/proofs/redexpr.ml index 629b77be2a..44685d2bbd 100644 --- a/proofs/redexpr.ml +++ b/proofs/redexpr.ml @@ -52,7 +52,7 @@ let whd_cbn flags env sigma t = Reductionops.Stack.zip ~refold:true sigma state let strong_cbn flags = - strong (whd_cbn flags) + strong_with_flags whd_cbn flags let simplIsCbn = ref (false) let _ = Goptions.declare_bool_option { |
