aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/trie.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/trie.ml')
-rw-r--r--lib/trie.ml2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/trie.ml b/lib/trie.ml
index a4a348c19..7efce9785 100644
--- a/lib/trie.ml
+++ b/lib/trie.ml
@@ -52,8 +52,6 @@ let labels (Node (_,m)) =
(** FIXME: this is order-dependent. Try to find a more robust presentation? *)
List.rev (T_codom.fold (fun x _ acc -> x::acc) m [])
-let in_dom (Node (_,m)) lbl = T_codom.mem lbl m
-
let is_empty_node (Node(a,b)) = (X.is_nil a) && (T_codom.is_empty b)
let assure_arc m lbl =