pieuvre/tactic.ml
2022-05-10 15:00:19 +02:00

9 lines
132 B
OCaml

open Structs;;
type tactic =
| Intro of var_lambda
| Assumption
| Apply of var_lambda
| Elim of var_lambda
| Cut of ty;;