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/coq#18280 (case relevance outside case info) #1713

Merged
merged 1 commit into from
Nov 10, 2023
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
6 changes: 4 additions & 2 deletions src/Language/IdentifierParameters.v
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Import Ltac2.Constr.Unsafe.
Require Rewriter.Util.InductiveHList.
Require Rewriter.Util.LetIn.
Import InductiveHList.Notations.
Require Import Rewriter.Util.Tactics2.DestCase.
Require Import Ltac2.Printf.

(* TODO: move to Util *)
Expand All @@ -28,8 +29,9 @@ Ltac2 Set reify_preprocess_extra :=
=> let t := Constr.type term in
'(@ZRange.zrange_rect_nodep $t $f $x) *)
match Constr.Unsafe.kind term with
| Constr.Unsafe.Case cinfo ret_ty cinv x branches
=> match Constr.Unsafe.kind ret_ty with
| Constr.Unsafe.Case _ _ _ _ _
=> let (cinfo, ret_ty, cinv, x, branches) := destCase term in
match Constr.Unsafe.kind ret_ty with
| Constr.Unsafe.Lambda xb ret_ty
=> let ty := Constr.Unsafe.substnl [x] 0 ret_ty in
lazy_match! Constr.Binder.type xb with
Expand Down
Loading