Fixed typo in assert
parent
fea2eb0b5f
commit
7a5f48f6dd
|
|
@ -370,7 +370,7 @@ public:
|
||||||
|
|
||||||
/// Move terms to array, destroys content
|
/// Move terms to array, destroys content
|
||||||
void move(std::vector<Matrix>& H) {
|
void move(std::vector<Matrix>& H) {
|
||||||
assert(H.size()==jacobains.size());
|
assert(H.size()==jacobians_.size());
|
||||||
size_t j = 0;
|
size_t j = 0;
|
||||||
JacobianMap::iterator it = jacobians_.begin();
|
JacobianMap::iterator it = jacobians_.begin();
|
||||||
for (; it != jacobians_.end(); ++it)
|
for (; it != jacobians_.end(); ++it)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue