aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-16 04:39:51 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-16 04:39:51 +0000
commit52c3721af3bcb194d9525699342e143b969296b5 (patch)
tree6bc0db6ed3c72b58e8c6f643bac209a6d4c96d1f
parentc3db24a4dcb96ccf2adc33da51b58e476bbf450d (diff)
downloadruby-52c3721af3bcb194d9525699342e143b969296b5.tar.gz
* lib/matrix.rb (determinant): Bug fix where determinant failed on some matrices [ruby-core:23597]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/matrix.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 00e107e35d..54b1df5221 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 16 13:39:10 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
+
+ * lib/matrix.rb (determinant): Bug fix where determinant failed on
+ some matrices [ruby-core:23597]
+
Wed Sep 16 13:30:20 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* lib/matrix.rb: trivial optimizations
diff --git a/lib/matrix.rb b/lib/matrix.rb
index 2d5dfea424..e4a81ea013 100644
--- a/lib/matrix.rb
+++ b/lib/matrix.rb
@@ -669,7 +669,7 @@ class Matrix
if (akk = a[k][k]) == 0
i = k
loop do
- return 0 if (ii += 1) > size
+ return 0 if (i += 1) > size
break unless a[i][k] == 0
end
a[i], a[k] = a[k], a[i]