From 2810c12a99fed7297d558d8b1aaaf755eb8b8a2d Mon Sep 17 00:00:00 2001 From: mrkn Date: Wed, 5 Dec 2018 11:30:24 +0000 Subject: Import bigdecimal 1.4.0.pre.20181205a * https://github.com/ruby/bigdecimal/compare/74d25ef..v1.4.0.pre.20181205a git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/bigdecimal/sample/linear.rb | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'ext/bigdecimal/sample/linear.rb') diff --git a/ext/bigdecimal/sample/linear.rb b/ext/bigdecimal/sample/linear.rb index 3b23269f8a..516c2473be 100644 --- a/ext/bigdecimal/sample/linear.rb +++ b/ext/bigdecimal/sample/linear.rb @@ -28,8 +28,8 @@ def rd_order(na) end na = ARGV.size -zero = BigDecimal.new("0.0") -one = BigDecimal.new("1.0") +zero = BigDecimal("0.0") +one = BigDecimal("1.0") while (n=rd_order(na))>0 a = [] @@ -37,27 +37,28 @@ while (n=rd_order(na))>0 b = [] if na <= 0 # Read data from console. - printf("\nEnter coefficient matrix element A[i,j]\n"); + printf("\nEnter coefficient matrix element A[i,j]\n") for i in 0...n do for j in 0...n do printf("A[%d,%d]? ",i,j); s = ARGF.gets - a << BigDecimal.new(s); - as << BigDecimal.new(s); + a << BigDecimal(s) + as << BigDecimal(s) end - printf("Contatant vector element b[%d] ? ",i); b << BigDecimal.new(ARGF.gets); + printf("Contatant vector element b[%d] ? ",i) + b << BigDecimal(ARGF.gets) end else # Read data from specified file. - printf("Coefficient matrix and constant vector.\n"); + printf("Coefficient matrix and constant vector.\n") for i in 0...n do s = ARGF.gets printf("%d) %s",i,s) s = s.split for j in 0...n do - a << BigDecimal.new(s[j]); - as << BigDecimal.new(s[j]); + a << BigDecimal(s[j]) + as << BigDecimal(s[j]) end - b << BigDecimal.new(s[n]); + b << BigDecimal(s[n]) end end x = lusolve(a,b,ludecomp(a,n,zero,one),zero) -- cgit v1.2.3