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

Whitespace

parent 4c09e7d5
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,7 @@ initTimeStepper(Config::scheme scheme, FunctionType const &dirichletFunction,
dirichletFunction);
}
}
template <class SingletonVectorType, class VectorType>
Dune::shared_ptr<StateUpdater<SingletonVectorType, VectorType>>
initStateUpdater(Config::state_model model,
......@@ -126,6 +127,7 @@ initStateUpdater(Config::state_model model,
alpha_initial, frictionalNodes, L);
}
}
template <class FunctionMap> void initPython(FunctionMap &functions) {
Python::start();
......
......@@ -17,6 +17,7 @@ class TimeSteppingScheme {
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *
clone() = 0;
};
template <class VectorType, class MatrixType, class FunctionType, int dim>
class ImplicitEuler
: public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> {
......@@ -50,6 +51,7 @@ class ImplicitEuler
bool postProcessCalled = false;
};
template <class VectorType, class MatrixType, class FunctionType, int dim>
class Newmark
: public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> {
......@@ -87,6 +89,7 @@ class Newmark
bool postProcessCalled = false;
};
template <class VectorType, class MatrixType, class FunctionType, int dim>
class EulerPair
: public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> {
......@@ -121,4 +124,5 @@ class EulerPair
bool postProcessCalled = false;
};
#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