Skip to content
Snippets Groups Projects
Commit 8b60d867 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Fix uninitialised memory in test case

parent 6b88ad63
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ int main() {
// Fill initial guess with other semi-random numbers
for (size_t i = 0; i < f.size(); ++i)
for (size_t j = 0; j < dim; ++j)
f[i][j] = i * j;
u[i][j] = 17 * j;
Dune::BitSetVector<VectorType::block_type::dimension> ignoreNodes(
grid.size(grid.maxLevel(), dim), false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment