Skip to content

Commit

Permalink
chore: improve simp_alive_split (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasgrosser authored Nov 3, 2024
1 parent cfae903 commit 923a784
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion SSA/Projects/InstCombine/TacticAuto.lean
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,12 @@ macro "bv_compare'": tactic =>
macro "simp_alive_split": tactic =>
`(tactic|
(
repeat(all_goals split; all_goals simp only [BitVec.Refinement.some_some, BitVec.Refinement.refl])
all_goals try intros
repeat(
all_goals try simp only [BitVec.Refinement.some_some, BitVec.Refinement.refl]
any_goals split
all_goals try simp only [BitVec.Refinement.some_some, BitVec.Refinement.refl]
)
)
)

Expand Down

0 comments on commit 923a784

Please sign in to comment.