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