2024-04-30 11:44:28 +02:00
|
|
|
open Lam
|
|
|
|
open Types
|
|
|
|
open Proof
|
|
|
|
|
|
|
|
type cmd =
|
2024-05-17 14:14:28 +02:00
|
|
|
Goal of ty
|
2024-05-11 11:44:43 +02:00
|
|
|
| Undo
|
2024-05-13 18:05:28 +02:00
|
|
|
| Qed
|
2024-05-17 21:28:02 +02:00
|
|
|
| Check
|
2024-05-17 14:14:28 +02:00
|
|
|
|
|
|
|
type instr =
|
|
|
|
Cmd of cmd
|
2024-04-30 11:44:28 +02:00
|
|
|
| Tact of tactic
|
|
|
|
|
|
|
|
type parser_entry =
|
|
|
|
| Lam of lam
|
2024-05-17 14:14:28 +02:00
|
|
|
| Instr of instr list
|