11 lines
272 B
Text
11 lines
272 B
Text
import Std.Tactic.BVDecide
|
|
|
|
theorem x_eq_y (x y : Bool) (hx : x = True) (hy : y = True) : x = y := by
|
|
bv_decide
|
|
|
|
example (z : BitVec 64) : True := by
|
|
let x : BitVec 64 := 10
|
|
let y : BitVec 64 := 20 + z
|
|
have : z + (2 * x) = y := by
|
|
bv_decide
|
|
exact True.intro
|