Zulip Chat Archive
Stream: new members
Topic: Can I squeeze finish?
Martin Dvořák (Mar 15 2022 at 17:49):
As we have simp
and squeeze_simp
, is there a similar option for finish
please? Or maybe, rather than printing a list of lemmata that were used, I would like to display the end part of the proof (that was just generated) as a term. Can I do it?
Alex J. Best (Mar 15 2022 at 17:51):
You can use tactic#show_term to see the term produced, but it will be very unreadable. You might be able to see the names of a couple of useful things, but in general due to the way finish works it is not really amenable to producing nice tactic scripts.
Damiano Testa (Mar 15 2022 at 18:13):
Also, my experience is that pasting the output of show_term
will not work as a valid proof.
Last updated: Dec 20 2023 at 11:08 UTC