Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to coq PR #18190 adding a whd form of the cbv reduction strategy #528

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coq_elpi_builtins.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3466,7 +3466,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