Skip to content
Snippets Groups Projects
timestepping_tmpl.cc 289 B
Newer Older
#ifndef MY_DIM
#error MY_DIM unset
#endif

#include <dune/common/function.hh>

#include "explicitvectors.hh"

using Function = Dune::VirtualFunction<double, double>;
template class Newmark<Vector, Matrix, Function, MY_DIM>;
template class BackwardEuler<Vector, Matrix, Function, MY_DIM>;