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-06-13 18:26:05 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-06-13 18:26:05 +0200
commitf8a0745cb0426eb3095dbea24288a64eddab04f0 (patch)
treeb140e55c0269f77114e69870f7558f5a348b4969 /Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
parentc0ad1094995e28a2d564e83a2ca1c6b76cfbd536 (diff)
Build process...
Diffstat (limited to 'Eigen/src/SparseLU/SparseLU_copy_to_ucol.h')
-rw-r--r--Eigen/src/SparseLU/SparseLU_copy_to_ucol.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h b/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
index c97bc6aa4..31411175c 100644
--- a/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
+++ b/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
@@ -44,6 +44,7 @@
*/
#ifndef SPARSELU_COPY_TO_UCOL_H
#define SPARSELU_COPY_TO_UCOL_H
+
/**
* \brief Performs numeric block updates (sup-col) in topological order
*
@@ -58,17 +59,18 @@
* > 0 - number of bytes allocated when run out of space
*
*/
-template <typename ScalarVector, typename IndexVector>
-int SparseLU::LU_copy_to_ucol(const int jcol, const int nseg, IndexVector& segrep, IndexVector& repfnz, IndexVector& perm_r, ScalarVector& dense, LU_GlobalLU_t& glu)
+template < typename IndexVector, typename ScalarVector>
+int LU_copy_to_ucol(const int jcol, const int nseg, IndexVector& segrep, IndexVector& repfnz, IndexVector& perm_r, ScalarVector& dense, LU_GlobalLU_t<IndexVector, ScalarVector>& glu)
{
- Index ksupno, k, ksub, krep, ksupno;
- typedef typename IndexVector::Index;
+ typedef typename IndexVector::Index Index;
+ typedef typename ScalarVector::Scalar Scalar;
+ Index ksub, krep, ksupno;
IndexVector& xsup = glu.xsup;
IndexVector& supno = glu.supno;
IndexVector& lsub = glu.lsub;
IndexVector& xlsub = glu.xlsub;
- ScalarVector& ucol = GLu.ucol;
+ ScalarVector& ucol = glu.ucol;
IndexVector& usub = glu.usub;
IndexVector& xusub = glu.xusub;
Index& nzumax = glu.nzumax;
@@ -76,10 +78,11 @@ int SparseLU::LU_copy_to_ucol(const int jcol, const int nseg, IndexVector& segre
Index jsupno = supno(jcol);
// For each nonzero supernode segment of U[*,j] in topological order
- k = nseg - 1;
+ int k = nseg - 1, i;
Index nextu = xusub(jcol);
Index kfnz, isub, segsize;
Index new_next,irow;
+ Index fsupc, mem;
for (ksub = 0; ksub < nseg; ksub++)
{
krep = segrep(k); k--;
@@ -95,9 +98,9 @@ int SparseLU::LU_copy_to_ucol(const int jcol, const int nseg, IndexVector& segre
new_next = nextu + segsize;
while (new_next > nzumax)
{
- mem = LU_MemXpand<ScalarVector>(ucol, nzumax, nextu, UCOL, glu);
+ mem = LUMemXpand<ScalarVector>(ucol, nzumax, nextu, UCOL, glu.num_expansions);
if (mem) return mem;
- mem = LU_MemXpand<Index>(usub, nzumax, nextu, USUB, glu);
+ mem = LUMemXpand<IndexVector>(usub, nzumax, nextu, USUB, glu.num_expansions);
if (mem) return mem;
}
@@ -120,4 +123,5 @@ int SparseLU::LU_copy_to_ucol(const int jcol, const int nseg, IndexVector& segre
xusub(jcol + 1) = nextu; // close U(*,jcol)
return 0;
}
+
#endif \ No newline at end of file