aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/dn.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2015-04-16 17:03:41 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2015-04-16 17:05:35 +0200
commit820a453c158006244f02e079d1a820f6670a1293 (patch)
treea56628d4ef3ed2816d3b410e1e76ad9811e387f5 /tactics/dn.ml
parentf550af8ae4385f59965d2a421173a9a7feec9afa (diff)
Ensuring purity of datastructures in the API.
Diffstat (limited to 'tactics/dn.ml')
-rw-r--r--tactics/dn.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/dn.ml b/tactics/dn.ml
index 3b1614d6c..aed2c2832 100644
--- a/tactics/dn.ml
+++ b/tactics/dn.ml
@@ -38,7 +38,7 @@ struct
type t = Trie.t
- let create () = Trie.empty
+ let empty = Trie.empty
(* [path_of dna pat] returns the list of nodes of the pattern [pat] read in
prefix ordering, [dna] is the function returning the main node of a pattern *)