blob: 1dae56052582c99dbeacfb2e3c2f98e5df3c50e3 (
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
|
(***********************************************************************
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
***********************************************************************)
open Term
open Pattern
open Libnames
(** Named, bounded-depth, term-discrimination nets. *)
module Make :
functor (Y:Map.OrderedType) ->
sig
module Term_dn : sig
type term_label =
| GRLabel of global_reference
| ProdLabel
| LambdaLabel
| SortLabel
end
type 'na t
type 'na frozen_t
val create : unit -> 'na t
val add : 'na t -> ('na * (constr_pattern * Y.t)) -> unit
val rmv : 'na t -> 'na -> unit
val in_dn : 'na t -> 'na -> bool
val remap : 'na t -> 'na -> (constr_pattern * Y.t) -> unit
val lookup : 'na t -> constr -> (constr_pattern * Y.t) list
val app : ('na -> (constr_pattern * Y.t) -> unit) -> 'na t -> unit
val dnet_depth : int ref
val freeze : 'na t -> 'na frozen_t
val unfreeze : 'na frozen_t -> 'na t -> unit
val empty : 'na t -> unit
val to2lists : 'na t -> ('na * (constr_pattern * Y.t)) list *
(Term_dn.term_label option * Btermdn.Make(Y).t) list
end
|