Eigen/Sparse: fix warnings -Wunused-but-set-variable

This commit is contained in:
Laurent Rineau 2022-10-11 17:37:04 +00:00 committed by Rasmus Munk Larsen
parent 3167544873
commit 7846c7387c
2 changed files with 2 additions and 7 deletions

View File

@ -272,11 +272,11 @@ struct sparse_solve_triangular_sparse_selector<Lhs,Rhs,Mode,UpLo,ColMajor>
} }
Index count = 0; // Index count = 0;
// FIXME compute a reference value to filter zeros // FIXME compute a reference value to filter zeros
for (typename AmbiVector<Scalar,StorageIndex>::Iterator it(tempVector/*,1e-12*/); it; ++it) for (typename AmbiVector<Scalar,StorageIndex>::Iterator it(tempVector/*,1e-12*/); it; ++it)
{ {
++ count; // ++ count;
// std::cerr << "fill " << it.index() << ", " << col << "\n"; // std::cerr << "fill " << it.index() << ", " << col << "\n";
// std::cout << it.value() << " "; // std::cout << it.value() << " ";
// FIXME use insertBack // FIXME use insertBack

View File

@ -77,8 +77,6 @@ void SparseLUImpl<Scalar,StorageIndex>::heap_relax_snode (const Index n, IndexVe
// Identify the relaxed supernodes by postorder traversal of the etree // Identify the relaxed supernodes by postorder traversal of the etree
Index snode_start; // beginning of a snode Index snode_start; // beginning of a snode
StorageIndex k; StorageIndex k;
Index nsuper_et_post = 0; // Number of relaxed snodes in postordered etree
Index nsuper_et = 0; // Number of relaxed snodes in the original etree
StorageIndex l; StorageIndex l;
for (j = 0; j < n; ) for (j = 0; j < n; )
{ {
@ -90,7 +88,6 @@ void SparseLUImpl<Scalar,StorageIndex>::heap_relax_snode (const Index n, IndexVe
parent = et(j); parent = et(j);
} }
// Found a supernode in postordered etree, j is the last column // Found a supernode in postordered etree, j is the last column
++nsuper_et_post;
k = StorageIndex(n); k = StorageIndex(n);
for (Index i = snode_start; i <= j; ++i) for (Index i = snode_start; i <= j; ++i)
k = (std::min)(k, inv_post(i)); k = (std::min)(k, inv_post(i));
@ -99,7 +96,6 @@ void SparseLUImpl<Scalar,StorageIndex>::heap_relax_snode (const Index n, IndexVe
{ {
// This is also a supernode in the original etree // This is also a supernode in the original etree
relax_end(k) = l; // Record last column relax_end(k) = l; // Record last column
++nsuper_et;
} }
else else
{ {
@ -109,7 +105,6 @@ void SparseLUImpl<Scalar,StorageIndex>::heap_relax_snode (const Index n, IndexVe
if (descendants(i) == 0) if (descendants(i) == 0)
{ {
relax_end(l) = l; relax_end(l) = l;
++nsuper_et;
} }
} }
} }