Skip to content

Commit

Permalink
* benchmark/bm_app_answer.rb: revert r42990, benchmark scripts should
Browse files Browse the repository at this point in the history
  be self-contained and avoid dependencies, especially such small one.
  See ruby#393 (comment).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eregon committed Sep 22, 2013
1 parent 011bd85 commit 3557a5f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Sun Sep 22 19:00:28 2013 Benoit Daloze <eregontp@gmail.com>

* benchmark/bm_app_answer.rb: revert r42990, benchmark scripts should
be self-contained and avoid dependencies, especially such small one.
See https://github.com/ruby/ruby/pull/393#issuecomment-24861301.

Sat Sep 21 20:11:06 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>

* process.c (rb_fork_internal): remove cloexec setting on pipes
Expand Down
10 changes: 9 additions & 1 deletion benchmark/bm_app_answer.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
require_relative 'other-lang/ack'
def ack(m, n)
if m == 0 then
n + 1
elsif n == 0 then
ack(m - 1, 1)
else
ack(m - 1, ack(m, n - 1))
end
end

def the_answer_to_life_the_universe_and_everything
(ack(3,7).to_s.split(//).inject(0){|s,x| s+x.to_i}.to_s + "2" ).to_i
Expand Down

0 comments on commit 3557a5f

Please sign in to comment.