Patch from Andreas Noack (MIT).
authorlangou <langou@users.noreply.github.com>
Thu, 10 Dec 2015 03:08:12 +0000 (03:08 +0000)
committerlangou <langou@users.noreply.github.com>
Thu, 10 Dec 2015 03:08:12 +0000 (03:08 +0000)
commit6b580c7301f7803387187dfe3b63b358f5db1bf5
tree9d04cf1b6a323fdbb4bfa43012ce2d649d31d62a
parent9dbe6d0045c005dd125d2088b5b5e5a68c3b3585
Patch from Andreas Noack (MIT).

The code for DGEEV was checking the INFO parameter returned by DHSEQR as
    IF( INFO.GT.0 )THEN "QUIT"

Andreas proposed to check
    IF( INFO.NE.0 )THEN "QUIT"

I am fine with the modification. Not terribly excited but fine.

There is really no reason for the case ( INFO.LT.0 ) to happen, so we should
not have to deal with this case.  If this happen, it is really a bug and we
should be notified.  But, at this point, why not.

I applied the proposed patch to xGEEV and xGEEVX.

Julien.
SRC/cgeev.f
SRC/cgeevx.f
SRC/dgeev.f
SRC/dgeevx.f
SRC/sgeev.f
SRC/sgeevx.f
SRC/zgeev.f
SRC/zgeevx.f