diff --git a/Matrix/pzshtmat.cpp b/Matrix/pzshtmat.cpp index b3dc69cfd1..165c11dcd9 100644 --- a/Matrix/pzshtmat.cpp +++ b/Matrix/pzshtmat.cpp @@ -278,16 +278,16 @@ void TPZGenMatrix::Print (const char *c, ostream & out) const { cout << "NULL TPZGenMatrix\n"; return; } -// out << c << endl; -// out << "TPZGenMatrix Rows = " << this->fRows << " columns = " << this->fCols << endl; -// for (int64_t i=0; ifRows; i++) { -// out << "\n row " << i; -// for (int64_t j=0; jfCols; j++) { -// if ( !(j%6) ) out << "\n"; -// out << " " << fMem[(i*this->fCols)+j]; -// } -// } -// out << "\n"; + out << c << endl; + out << "TPZGenMatrix Rows = " << this->fRows << " columns = " << this->fCols << endl; + for (int64_t i=0; ifRows; i++) { + out << "\n row " << i; + for (int64_t j=0; jfCols; j++) { + if ( !(j%6) ) out << "\n"; + out << " " << fMem[(i*this->fCols)+j]; + } + } + out << "\n"; return; }