aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/autorewrite.mli
blob: 2e291e5428c416504690ddbe785c764cb9a512d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

(*i $Id$ i*)

open Tacmach

(* Rewriting rules before tactic interpretation *)
type raw_rew_rule = Term.constr * bool * Coqast.t

(* To add rewriting rules to a base *)
val add_rew_rules : string -> raw_rew_rule list -> unit

(* The AutoRewrite tactic *)
val autorewrite : tactic -> string list -> tactic