Remove '*1'

This commit is contained in:
Andreas Fabri 2012-05-02 09:45:40 +00:00
parent 18f01f2334
commit 15ad33b51e
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ public:
m_is_symmetric = is_symmetric;
// reserve memory for a regular 3D grid
m_triplets.reserve(dim*1);
m_triplets.reserve(dim);
}
/// Create a rectangular matrix initialized with zeros.
@ -78,7 +78,7 @@ public:
m_is_symmetric = is_symmetric;
// reserve memory for a regular 3D grid
m_triplets.reserve(rows*1);
m_triplets.reserve(rows);
}
/// Delete this object and the wrapped TAUCS matrix.