Merged in fix/expressionAssert (pull request #52)

Fixed assert in Expression.h
release/4.3a0
Frank Dellaert 2014-11-27 09:16:31 +01:00
commit 61666f22d6
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ private:
const FastVector<int>& dims, std::vector<Matrix>& H) const {
// H should be pre-allocated
assert(H->size()==keys.size());
assert(H.size()==keys.size());
// Pre-allocate and zero VerticalBlockMatrix
static const int Dim = traits::dimension<T>::value;