13 lines
178 B
OCaml
13 lines
178 B
OCaml
open Structs;;
|
|
|
|
type tactic =
|
|
| Intro of var_lambda
|
|
| Assumption
|
|
| Apply of var_lambda
|
|
| Elim of var_lambda
|
|
| Cut of ty
|
|
| Split
|
|
| Left
|
|
| Right
|
|
| Exact of lam;;
|