aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/redexpr.ml
diff options
context:
space:
mode:
authorGravatar Paul Steckler <steck@stecksoft.com>2016-06-28 12:37:00 -0400
committerGravatar Matthieu Sozeau <mattam@mattam.org>2016-09-09 18:12:26 +0200
commit43869b4e05824244e666c60e0b740a80e8b09d0c (patch)
tree119fd8db5cd7bde7750d84fcf107b6ca482aa7fe /proofs/redexpr.ml
parentdee69387bd4b2944c9e81ee422fb9900ab0e6c4d (diff)
no-refold patch
Add a boolean for refolding during reduction, and an option that is off by default in 8.6, to turn refolding on in all reduction functions, as in 8.5.
Diffstat (limited to 'proofs/redexpr.ml')
-rw-r--r--proofs/redexpr.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/redexpr.ml b/proofs/redexpr.ml
index 8a9ce4f94..72cb05f1b 100644
--- a/proofs/redexpr.ml
+++ b/proofs/redexpr.ml
@@ -44,7 +44,7 @@ let cbv_native env sigma c =
let whd_cbn flags env sigma t =
let (state,_) =
- (whd_state_gen true flags env sigma (t,Reductionops.Stack.empty))
+ (whd_state_gen true true flags env sigma (t,Reductionops.Stack.empty))
in Reductionops.Stack.zip ~refold:true state
let strong_cbn flags =