aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/btermdn.mli
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/btermdn.mli')
-rw-r--r--tactics/btermdn.mli9
1 files changed, 5 insertions, 4 deletions
diff --git a/tactics/btermdn.mli b/tactics/btermdn.mli
index 882f0bbb9..2d0b2f106 100644
--- a/tactics/btermdn.mli
+++ b/tactics/btermdn.mli
@@ -4,6 +4,7 @@
(*i*)
open Generic
open Term
+open Rawterm
(*i*)
(* Discrimination nets with bounded depth. *)
@@ -12,10 +13,10 @@ type 'a t
val create : unit -> 'a t
-val add : 'a t -> (constr * 'a) -> 'a t
-val rmv : 'a t -> (constr * 'a) -> 'a t
+val add : 'a t -> (constr_pattern * 'a) -> 'a t
+val rmv : 'a t -> (constr_pattern * 'a) -> 'a t
-val lookup : 'a t -> constr -> (constr * 'a) list
-val app : ((constr * 'a) -> unit) -> 'a t -> unit
+val lookup : 'a t -> constr -> (constr_pattern * 'a) list
+val app : ((constr_pattern * 'a) -> unit) -> 'a t -> unit
val dnet_depth : int ref