Zulip Chat Archive
Stream: general
Topic: usability bug in squeeze_simp
Johan Commelin (Aug 27 2019 at 10:02):
@Simon Hudon If I run squeeze_simp [(mul_assoc _ _ _).symm]
, the output contains metavariables eq.symm (mul_assoc ?m_1 ?m_2 ?m_3)
.
Johan Commelin (Aug 27 2019 at 10:04):
Do you think you could postprocess to restore the _
s?
Simon Hudon (Aug 27 2019 at 10:11):
I use pp
to pretty print so it's not obvious. If I replace all with a constant named _
, it comes out as «_»
. I could try cleaning up after the pretty printing.
Simon Hudon (Aug 27 2019 at 10:12):
Actually, I think I'll just create a local_const
with a unique name and then replace it with _
afterwards
Last updated: Dec 20 2023 at 11:08 UTC