diff options
author | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-02 05:21:54 +0000 |
---|---|---|
committer | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-02 05:21:54 +0000 |
commit | a0e438cd3c28d2eaf4efa18243d5b6edafa14d88 (patch) | |
tree | c8a0e8d7a8553034c2cc4957890ea48ad7277693 /ext/bigdecimal/sample/linear.rb | |
parent | 096d362939816b569b22ed3de87c06277ef4c3fb (diff) |
Import bigdecimal-1.4.0.pre-20181130a
* https://github.com/ruby/bigdecimal/compare/74d25ef..v1.4.0.pre.20181130a
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/bigdecimal/sample/linear.rb')
-rw-r--r-- | ext/bigdecimal/sample/linear.rb | 21 |
1 files changed, 11 insertions, 10 deletions
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) |