[Lapackpp-cvs] SF.net SVN: lapackpp: [409] lapackpp/trunk/matrix/src/gfqrc.cc
Status: Beta
Brought to you by:
cstim
|
From: <br...@us...> - 2008-04-23 14:43:08
|
Revision: 409
http://lapackpp.svn.sourceforge.net/lapackpp/?rev=409&view=rev
Author: briwhi
Date: 2008-04-23 07:42:41 -0700 (Wed, 23 Apr 2008)
Log Message:
-----------
This fixes bug 1949765 "(minor) bug in gfqrc".
There are two places in src/matrix/gfqrc.cc where k is assigned:
integer k = std::max(m, n); // FIXME: correct?
Fixed to
integer k = std::min(m, n);
as per man zgeqrf/zungqr/zunmqr.
Modified Paths:
--------------
lapackpp/trunk/matrix/src/gfqrc.cc
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|