You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rw does not know how to apply equation lemmas for a declaration when optParams are not set to their default values:
deffoo (x := 0) : Nat := x
example : foo x = x := by simp only [foo] -- okexample : foo x = x := by rw [foo]
-- failed to rewrite using equation theorems for 'foo'
rw [@foo] does not work either (it behaves the same, presumably because the @ needs to be applied not to foo but to the equation lemma).
The text was updated successfully, but these errors were encountered:
rw
does not know how to apply equation lemmas for a declaration when optParams are not set to their default values:rw [@foo]
does not work either (it behaves the same, presumably because the@
needs to be applied not tofoo
but to the equation lemma).The text was updated successfully, but these errors were encountered: