Skip to content

Commit

Permalink
This is to adapt to coq/coq#8190.
Browse files Browse the repository at this point in the history
Function cbv_norm_flags now needs to know if the reduction is expected
to be weak or strong. We set it to strong:true preserving the previous
semantics.
  • Loading branch information
herbelin committed Oct 27, 2023
1 parent 7075a45 commit 0368612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coq_elpi_builtins.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3455,7 +3455,7 @@ Supported attributes:
(fun t _ ~depth proof_context constraints state ->
let sigma = get_sigma state in
let flags = Option.default RedFlags.all proof_context.options.redflags in
let t = Tacred.cbv_norm_flags flags proof_context.env sigma t in
let t = Tacred.cbv_norm_flags flags ~strong:true proof_context.env sigma t in
!: t)),
DocAbove);

Expand Down

0 comments on commit 0368612

Please sign in to comment.