Skip to content

Commit

Permalink
Remove RadixTree benchmark
Browse files Browse the repository at this point in the history
Remove extra dependency
  • Loading branch information
Hiroshi Nakamura committed Mar 23, 2012
1 parent e525d46 commit 7e664ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions bench/bench.rb
@@ -1,5 +1,4 @@
require 'benchmark' require 'benchmark'
require 'radix_tree' # gem install radix_tree
require 'avl_tree' require 'avl_tree'
require 'red_black_tree' require 'red_black_tree'
require 'openssl' require 'openssl'
Expand Down Expand Up @@ -47,7 +46,6 @@ def run(bm, h, keys)


Benchmark.bmbm do |bm| Benchmark.bmbm do |bm|
run(bm, Hash.new, keys) run(bm, Hash.new, keys)
run(bm, RadixTree.new, keys)
run(bm, AVLTree.new, keys) run(bm, AVLTree.new, keys)
run(bm, RedBlackTree.new, keys) run(bm, RedBlackTree.new, keys)
end end

0 comments on commit 7e664ff

Please sign in to comment.