Skip to content
Snippets Groups Projects
Commit 840e63e3 authored by Elias Pipping's avatar Elias Pipping
Browse files

[Cleanup] Initialise postProcessCalled as true

parent 6f184b97
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,6 @@ class BackwardEuler : public TimeSteppingScheme<Vector, Matrix, Function, dim> { ...@@ -35,6 +35,6 @@ class BackwardEuler : public TimeSteppingScheme<Vector, Matrix, Function, dim> {
double tau; double tau;
bool postProcessCalled = false; bool postProcessCalled = true;
}; };
#endif #endif
...@@ -38,6 +38,6 @@ class Newmark : public TimeSteppingScheme<Vector, Matrix, Function, dim> { ...@@ -38,6 +38,6 @@ class Newmark : public TimeSteppingScheme<Vector, Matrix, Function, dim> {
double tau; double tau;
bool postProcessCalled = false; bool postProcessCalled = true;
}; };
#endif #endif
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