This PR combines the simplification and unfold-reducible-constants steps in `grind` to ensure that no potential normalization steps are missed. Closes #9610
9 lines
202 B
Text
9 lines
202 B
Text
set_option warn.sorry false
|
|
abbrev sixteen : UInt32 := 16
|
|
|
|
theorem foo (x: UInt32) :
|
|
x.toNat ≤ sixteen.toNat := by sorry
|
|
|
|
theorem aa (x : UInt32) :
|
|
x.toNat ≤ sixteen.toNat := by
|
|
grind [foo]
|