pieuvre/tactic.ml
Adrien Vannson d631cd3e93
Intros
2022-05-18 16:36:02 +02:00

14 lines
208 B
OCaml

open Structs;;
type tactic =
| Intro of var_lambda
| Intros of var_lambda list
| Assumption
| Apply of var_lambda
| Elim of var_lambda
| Cut of ty
| Split
| Left
| Right
| Exact of lam;;