Change assert() to use actual variables present.

This commit is contained in:
Atgeirr Flø Rasmussen 2015-08-17 17:06:54 +02:00
parent 9af29fd496
commit d41bd90a40

View File

@ -120,7 +120,7 @@ namespace Opm
b.segment(pos, loc_size) = eqs[elem].value();
pos += loc_size;
}
assert(pos == size);
assert(pos == size_b);
// Create ISTL matrix with interleaved rows and columns (block structured).
Mat istlA;