summaryrefslogtreecommitdiff
path: root/tactics/btermdn.ml
blob: a0aecbbcf92663730a93d78b1f83f92675a0f7f0 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(* $Id: btermdn.ml 11282 2008-07-28 11:51:53Z msozeau $ *)

open Term
open Names
open Termdn
open Pattern
open Libnames

(* 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_st st (t,depth) =
  if depth = 0 then 
    None 
  else
    match constr_pat_discr_st st t with
      | None -> None
      | Some (c,l) -> Some(c,List.map (fun c -> (c,depth-1)) l)
	    
let bounded_constr_val_discr_st st (t,depth) =
  if depth = 0 then 
    Dn.Nothing 
  else
    match constr_val_discr_st st t with
      | Dn.Label (c,l) -> Dn.Label(c,List.map (fun c -> (c,depth-1)) l)
      | Dn.Nothing -> Dn.Nothing
      | Dn.Everything -> Dn.Everything

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 
    Dn.Nothing 
  else
    match constr_val_discr t with
      | Dn.Label (c,l) -> Dn.Label(c,List.map (fun c -> (c,depth-1)) l)
      | Dn.Nothing -> Dn.Nothing
      | Dn.Everything -> Dn.Everything

type 'a t = (global_reference,constr_pattern * int,'a) Dn.t
  
let create = Dn.create
  
let add = function
  | None -> 
      (fun dn (c,v) -> 
	Dn.add dn bounded_constr_pat_discr ((c,!dnet_depth),v))
  | Some st -> 
      (fun dn (c,v) -> 
	Dn.add dn (bounded_constr_pat_discr_st st) ((c,!dnet_depth),v))

let rmv = function
  | None -> 
      (fun dn (c,v) -> 
	Dn.rmv dn bounded_constr_pat_discr ((c,!dnet_depth),v))
  | Some st -> 
      (fun dn (c,v) -> 
	Dn.rmv dn (bounded_constr_pat_discr_st st) ((c,!dnet_depth),v))

let lookup = function
  | None -> 
      (fun dn t ->
	List.map 
	  (fun ((c,_),v) -> (c,v)) 
	  (Dn.lookup dn bounded_constr_val_discr (t,!dnet_depth)))
  | Some st -> 
      (fun dn t ->
	List.map 
	  (fun ((c,_),v) -> (c,v)) 
	  (Dn.lookup dn (bounded_constr_val_discr_st st) (t,!dnet_depth)))

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