mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Fix no newline at end of file warning
This commit is contained in:
parent
fb03b56647
commit
1221dd90aa
@ -91,4 +91,5 @@ void printBenchStyle(std::ofstream& out)
|
|||||||
</xsl:stylesheet>\n\n";
|
</xsl:stylesheet>\n\n";
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
#endif
|
||||||
|
@ -238,9 +238,9 @@ bool saveMarket(const SparseMatrixType& mat, const std::string& filename, int sy
|
|||||||
for(int j=0; j<mat.outerSize(); ++j)
|
for(int j=0; j<mat.outerSize(); ++j)
|
||||||
for(typename SparseMatrixType::InnerIterator it(mat,j); it; ++it)
|
for(typename SparseMatrixType::InnerIterator it(mat,j); it; ++it)
|
||||||
{
|
{
|
||||||
++ count;
|
++ count;
|
||||||
internal::PutMatrixElt(it.value(), it.row()+1, it.col()+1, out);
|
internal::PutMatrixElt(it.value(), it.row()+1, it.col()+1, out);
|
||||||
// out << it.row()+1 << " " << it.col()+1 << " " << it.value() << "\n";
|
// out << it.row()+1 << " " << it.col()+1 << " " << it.value() << "\n";
|
||||||
}
|
}
|
||||||
out.close();
|
out.close();
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user