Skip to content

Commit

Permalink
feat: add BitVec _assoc lemmas
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasgrosser committed May 28, 2024
1 parent 6677767 commit 21f7cc5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Init/Data/BitVec/Lemmas.lean
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,11 @@ protected theorem extractLsb_ofNat (x n : Nat) (hi lo : Nat) :
ext
simp

theorem or_assoc (a b c : BitVec w) :
a ||| b ||| c = a ||| (b ||| c) := by
ext i
simp [Bool.or_assoc]

/-! ### and -/

@[simp] theorem toNat_and (x y : BitVec v) :
Expand All @@ -487,6 +492,10 @@ protected theorem extractLsb_ofNat (x n : Nat) (hi lo : Nat) :
ext
simp

theorem and_assoc (a b c : BitVec w) :
a &&& b &&& c = a &&& (b &&& c) := by
ext i
simp [Bool.and_assoc]
/-! ### xor -/

@[simp] theorem toNat_xor (x y : BitVec v) :
Expand All @@ -507,6 +516,10 @@ protected theorem extractLsb_ofNat (x n : Nat) (hi lo : Nat) :
ext
simp

theorem xor_assoc (a b c : BitVec w) :
a ^^^ b ^^^ c = a ^^^ (b ^^^ c) := by
ext i
simp [Bool.xor_assoc]
/-! ### not -/

theorem not_def {x : BitVec v} : ~~~x = allOnes v ^^^ x := rfl
Expand Down

0 comments on commit 21f7cc5

Please sign in to comment.