Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
28 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
solverfactory_tmpl.cc 685 B
#ifndef MY_DIM
#error MY_DIM unset
#endif

#include "../explicitgrid.hh"
#include "../explicitvectors.hh"

#include "../../dune/tectonic/globalfriction.hh"
#include "tnnmg/functional.hh"
#include "tnnmg/zerononlinearity.hh"
#include "solverfactory.hh"

using MyGlobalFriction = GlobalFriction<Matrix, Vector>;
using MyFunctional = Functional<Matrix&, Vector&, MyGlobalFriction&, Vector&, Vector&, double>;
using MyZeroFunctional = Functional<Matrix&, Vector&, ZeroNonlinearity&, Vector&, Vector&, double>;
using MySolverFactory = SolverFactory<MyFunctional, BitVector>;

template class SolverFactory<MyFunctional, BitVector>;
template class SolverFactory<MyZeroFunctional, BitVector>;