Tactic sequence partition function #273

Open
opened 2025-08-11 11:55:58 -07:00 by aniva · 0 comments
Owner

We need a function that can take a tactic sequence and partition it into individual tactics.

This is related to Project No. 3

e.g.

Input:

intro x; apply x
cases h

would become

intro x
apply x
cases h

For nested tactics such as branches in cases, we don't need to handle them.

We need a function that can take a tactic sequence and partition it into individual tactics. This is related to Project No. 3 e.g. Input: ```lean intro x; apply x cases h ``` would become ``` intro x apply x cases h ``` For nested tactics such as branches in `cases`, we don't need to handle them.
aniva self-assigned this 2025-08-11 11:55:58 -07:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Reference: aniva/Pantograph#273
No description provided.