1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* benchmark/bm_so_binary_trees.rb: disable `puts' method

and change iteration parameter to increase execution time.
* benchmark/gc/binarytree.rb: added.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-06-20 07:30:41 +00:00
parent 0ec4589259
commit c5c1e8b8d4
3 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Thu Jun 20 16:28:33 2013 Koichi Sasada <ko1@atdot.net>
* benchmark/bm_so_binary_trees.rb: disable `puts' method
and change iteration parameter to increase execution time.
* benchmark/gc/binarytree.rb: added.
Thu Jun 20 16:06:37 2013 Koichi Sasada <ko1@atdot.net>
* benchmark/gc/pentomino.rb: added.

View file

@ -4,7 +4,9 @@
# contributed by Jesse Millikan
# disable output
def STDOUT.write_ *args
alias puts_orig puts
def puts str
# disable puts
end
def item_check(tree)
@ -25,7 +27,7 @@ def bottom_up_tree(item, depth)
end
end
max_depth = 12 # 16 # ARGV[0].to_i
max_depth = 16 # ARGV[0].to_i
min_depth = 4
max_depth = min_depth + 2 if min_depth + 2 > max_depth
@ -55,3 +57,6 @@ min_depth.step(max_depth + 1, 2) do |depth|
end
puts "long lived tree of depth #{max_depth}\t check: #{item_check(long_lived_tree)}"
undef puts
alias puts puts_orig

View file

@ -0,0 +1 @@
require_relative '../bm_so_binary_trees.rb'