Zulip Chat Archive
Stream: new members
Topic: iterating use tactic
Anya Michaelsen (May 29 2020 at 20:15):
if the goal begins with "\exists x y ..." is there a way to do something like "use x y" instead of "use x, use y"?
Bryan Gin-ge Chen (May 29 2020 at 20:17):
You can pass a list like this: use [x, y]
. See tactic#use.
Jason KY. (May 29 2020 at 20:18):
something like refine \<x, y, _\>
would also work
Last updated: Dec 20 2023 at 11:08 UTC