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

Cleanup

parent 1851ef7b
No related branches found
No related tags found
No related merge requests found
...@@ -192,11 +192,12 @@ int main(int argc, char *argv[]) { ...@@ -192,11 +192,12 @@ int main(int argc, char *argv[]) {
leafView, p1Basis, frictionalNodes); leafView, p1Basis, frictionalNodes);
// {{{ Initialise vectors // {{{ Initialise vectors
VectorType u(finestSize);
u = 0.0;
VectorType u_old(finestSize); VectorType u_old(finestSize);
u_old = 0.0; // Has to be zero! u_old = 0.0; // Has to be zero!
VectorType u_old_old; VectorType u_old_old(finestSize);
VectorType u(finestSize);
VectorType ud(finestSize); VectorType ud(finestSize);
ud = 0.0; ud = 0.0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment