From 3f13d9f0710b22039ec405392ef83ed2f391e8ec Mon Sep 17 00:00:00 2001 From: tadf Date: Sun, 28 Jun 2009 12:20:02 +0000 Subject: * lib/cmath.rb (sqrt): fixed an issue [ruby-list:45852] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/cmath.rb | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 580cc4925..3af2e6243 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jun 28 21:16:48 2009 Tadayoshi Funaba + + * lib/cmath.rb (sqrt): fixed an issue [ruby-list:45852]. + Sun Jun 28 19:48:29 2009 Tadayoshi Funaba * complex.c (nucomp_expt): some improvements. diff --git a/lib/cmath.rb b/lib/cmath.rb index d9e53f361..6b47e70a1 100644 --- a/lib/cmath.rb +++ b/lib/cmath.rb @@ -63,7 +63,8 @@ module CMath sqrt!(z) end else - if z.imag < 0 + if z.imag < 0 || + (z.imag == 0 && z.imag.to_s[0] == '-') sqrt(z.conjugate).conjugate else r = z.abs -- cgit