Skip to content

Commit

Permalink
make things compile
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasgrosser committed Oct 18, 2023
1 parent 88540c5 commit e4ddae1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SSA/Projects/InstCombine/ForMathlib.lean
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def ofBool : Bool → Bitvec 1 := fun b => b ::ᵥ Vector.nil
def a : Bitvec 2 := 0

def b : Prop := a ≤ a
def bb : Bool := b
def bb : Bool := a ≤ a

#check b
def c : Nat := 2
Expand Down
2 changes: 1 addition & 1 deletion SSA/Projects/InstCombine/ForStd.lean
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ instance {n} {x y : BitVec n} : Decidable (BitVec.ult x y) :=
instance {n} {x y : BitVec n} : Decidable (BitVec.ule x y) :=
decEq _ _

instance {n} {x y : BitVec n} : Decidable (x < y) :=
instance {n} {x y : BitVec n} : Decidable (x < y) := by
sorry

instance {n} {x y : BitVec n} : Decidable (x ≤ y) :=
Expand Down

0 comments on commit e4ddae1

Please sign in to comment.