correct bug when applying column permutation

This commit is contained in:
Desire NUENTSA 2012-07-10 19:18:50 +02:00
parent de2544cc9b
commit e529bc9cc1

View File

@ -244,7 +244,7 @@ class SparseLU
} // End For U-solve
// Permute back the solution
X = m_perm_c * X;
X = m_perm_c.inverse() * X;
return true;
}