[eigen] Dead code in Pardiso |
[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]
void getMatrix(const MatrixType& matrix)
{
// PARDISO supports only upper, row-major matrices
PermutationMatrix<Dynamic,Dynamic,StorageIndex> p_null;
m_matrix.resize(matrix.rows(), matrix.cols());
m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
m_matrix.makeCompressed();
}
Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |