Skip to content

Commit

Permalink
chore: delete excessive paranthesization
Browse files Browse the repository at this point in the history
  • Loading branch information
bollu committed Jul 31, 2024
1 parent 41c094c commit d154c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Init/Data/BitVec/Lemmas.lean
Original file line number Diff line number Diff line change
Expand Up @@ -1576,7 +1576,7 @@ private theorem Nat.sub_mul_eq_mod_of_lt_of_le (hlo : w * n ≤ i) (hhi : i < w
@[simp]
theorem getLsb_replicate {n w : Nat} (x : BitVec w) :
(x.replicate n).getLsb i =
((decide (i < w * n)) && (x.getLsb (i % w))) := by
(decide (i < w * n) && x.getLsb (i % w)) := by
induction n generalizing x
case zero => simp
case succ n ih =>
Expand Down

0 comments on commit d154c13

Please sign in to comment.