fix bad typos, thanks to Kenneth Riddile

This commit is contained in:
Benoit Jacob 2008-12-17 17:14:37 +00:00
parent c22d10f94c
commit 5f582aa4e8
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ public:
/** Construct a plane from its normal \a n and a point \a e onto the plane.
* \warning the vector normal is assumed to be normalized.
*/
inline Hyperplane(const VectorType& n, const VectorType e)
inline Hyperplane(const VectorType& n, const VectorType& e)
: m_coeffs(n.size()+1)
{
normal() = n;

View File

@ -336,14 +336,14 @@ class SparseMatrix
{
EIGEN_DBG_SPARSE(
s << "Nonzero entries:\n";
for (uint i=0; i<m.nonZeros(); ++i)
for (unsigned int i=0; i<m.nonZeros(); ++i)
{
s << "(" << m.m_data.value(i) << "," << m.m_data.index(i) << ") ";
}
s << std::endl;
s << std::endl;
s << "Column pointers:\n";
for (uint i=0; i<m.cols(); ++i)
for (unsigned int i=0; i<m.cols(); ++i)
{
s << m.m_outerIndex[i] << " ";
}