Zulip Chat Archive
Stream: general
Topic: normalise subtype.val and coe
Johan Commelin (Mar 01 2019 at 09:53):
I have an expression with a whole bunch of x.val
and \u x
occuring. I want to kill the thing with ring
. However, ring
gets stuck because those terms are not syntactically equal, even if they are defeq. I can of course change
to a normalised expression, but I'd rather just rw
the coercions (or the .val
s) away. Can this be done currently?
Kenny Lau (Mar 01 2019 at 09:54):
just make a simp lemma
Johan Commelin (Mar 01 2019 at 09:55):
Aaah! There is unfold_coes
.
Last updated: Dec 20 2023 at 11:08 UTC