add insert benchmark comparing StringSet to BroTree (StringSet is just a few ms faster for this)

This commit is contained in:
2024-09-09 14:54:25 +01:00
parent 4a16daaa1a
commit 7d707c9af4
9 changed files with 116300 additions and 0 deletions

11
bench/insert-bro-tree.sml Normal file
View File

@@ -0,0 +1,11 @@
structure InsertBroTree =
struct
fun main () =
let
val endTree = Vector.foldl BroTree.insert BroTree.empty WordsList.words
in
()
end
end
val _ = InsertBroTree.main ()