Estimation DLL, QRDecomposition: removed unused data members

time-shift
Sébastien Villemot 2010-12-17 10:52:00 +01:00
parent b1f5c48f3f
commit aa58f7bd37
2 changed files with 1 additions and 3 deletions

View File

@ -23,7 +23,7 @@
QRDecomposition::QRDecomposition(size_t rows_arg, size_t cols_arg, size_t cols2_arg) :
rows(rows_arg), cols(cols_arg), mind(std::min(rows, cols)), cols2(cols2_arg),
lwork(rows*cols), lwork2(cols2), H(rows), Q2(rows), v(rows)
lwork(rows*cols), lwork2(cols2)
{
work = new double[lwork];
work2 = new double[lwork2];

View File

@ -33,8 +33,6 @@ private:
const size_t cols2;
lapack_int lwork, lwork2;
double *work, *work2, *tau;
Matrix H, Q2;
Vector v;
public:
/*!
\todo Replace heuristic choice for workspace size by a query to determine the optimal size