diff options
author | Pierre Boutillier <pierre.boutillier@ens-lyon.org> | 2014-01-30 12:21:05 +0100 |
---|---|---|
committer | Pierre Boutillier <pierre.boutillier@ens-lyon.org> | 2014-02-24 13:35:05 +0100 |
commit | 97614d75a3ae8e515170d1c58c0cbbdf55346558 (patch) | |
tree | 2d18af0abebdbccb662fb8ff3ed89918fbfbe7fc /proofs | |
parent | c4370e5394cc9f678250150bd5bb407629b21913 (diff) |
Stack operations of Reductionops in Reductionops.Stack
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 db6f48547..3c8ccec6b 100644 --- a/proofs/redexpr.ml +++ b/proofs/redexpr.ml @@ -186,7 +186,7 @@ let reduction_of_red_expr env = | Simpl None -> (simpl,DEFAULTcast) | Cbv f -> (cbv_norm_flags (make_flag f),DEFAULTcast) | Cbn f -> - (strong (fun env evd x -> zip ~refold:true + (strong (fun env evd x -> Stack.zip ~refold:true (fst (whd_state_gen true (make_flag f) env evd (x, [])))),DEFAULTcast) | Lazy f -> (clos_norm_flags (make_flag f),DEFAULTcast) | Unfold ubinds -> (unfoldn (List.map out_with_occurrences ubinds),DEFAULTcast) |