aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-07-13 17:32:25 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-07-13 17:32:25 +0200
commit773804691a9203af41c06109f79372a048a584df (patch)
tree2a0617cc207a3b0b77632f5937ae22aa2cae1424 /Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
parente529bc9cc1e23a748fb345bc25428001db6adb53 (diff)
working version of sparse LU with unsymmetric supernodes and fill-reducing permutation
Diffstat (limited to 'Eigen/src/SparseLU/SparseLU_copy_to_ucol.h')
-rw-r--r--Eigen/src/SparseLU/SparseLU_copy_to_ucol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h b/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
index a0cab563d..9e1708da1 100644
--- a/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
+++ b/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
@@ -108,7 +108,7 @@ int LU_copy_to_ucol(const int jcol, const int nseg, SegRepType& segrep, RepfnzTy
for (i = 0; i < segsize; i++)
{
irow = lsub(isub);
- usub(nextu) = perm_r(irow); // Unlike teh L part, the U part is stored in its final order
+ usub(nextu) = perm_r(irow); // Unlike the L part, the U part is stored in its final order
ucol(nextu) = dense(irow);
dense(irow) = Scalar(0.0);
nextu++;