aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/btermdn.ml
blob: 3015e651b166376aac151ec2d84a2598444c936a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

(* $Id$ *)

open Term
open Termdn

(* Discrimination nets with bounded depth.
   See the module dn.ml for further explanations.
   Eduardo (5/8/97). *)

let dnet_depth = ref 8
		   
let bounded_constr_pat_discr (t,depth) =
  if depth = 0 then 
    None 
  else
    match constr_pat_discr t with
      | None -> None
      | Some (c,l) -> Some(c,List.map (fun c -> (c,depth-1)) l)
	    
let bounded_constr_val_discr (t,depth) =
  if depth = 0 then 
    None 
  else
    match constr_val_discr t with
      | None -> None
      | Some (c,l) -> Some(c,List.map (fun c -> (c,depth-1)) l)

type 'a t = (lbl,constr * int,'a) Dn.under_t

let newdn () = Dn.create bounded_constr_pat_discr

let ex_termdn = newdn()

let inDN tdn = { 
  Dn.args = ex_termdn.Dn.args;
  Dn.tm = tdn }

let outDN dn = dn.Dn.tm

let create () = outDN (newdn())

let add dn (c,v) = outDN (Dn.add (inDN dn) ((c,!dnet_depth),v))

let rmv dn (c,v) = outDN (Dn.rmv (inDN dn) ((c,!dnet_depth),v))

let lookup dn t = 
  List.map 
    (fun ((c,_),v) -> (c,v)) 
    (Dn.lookup (inDN dn) bounded_constr_val_discr (t,!dnet_depth))

let app f dn = Dn.app (fun ((c,_),v) -> f(c,v)) (inDN dn)