Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
185 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
timestepping_tmpl.cc 277 B
#ifndef DIM
#error DIM unset
#endif

#include <dune/common/function.hh>

#include "explicitvectors.hh"

using Function = Dune::VirtualFunction<double, double>;

template class Newmark<Vector, Matrix, Function, DIM>;
template class BackwardEuler<Vector, Matrix, Function, DIM>;