removed debug print

This commit is contained in:
Jiri Pittner 2022-06-22 20:23:17 +02:00
parent 631ec298f5
commit 2bdfe1bd70
1 changed files with 0 additions and 1 deletions

View File

@ -630,7 +630,6 @@ void diagonalize(NRMat<std::complex<double> > &a, NRVec<double> &w, const bool e
FINT LWORK = -1;
std::complex<double> WORKX;
FINT ldb=0; if(b) ldb=b->ncols();
std::cout << "test vectors "<<vectors<<std::endl;
// First call is to determine size of workspace
double *RWORK = new double[3*n+2];