4#include <deal.II/dofs/dof_handler.h>
5#include <deal.II/dofs/dof_tools.h>
6#include <deal.II/grid/grid_refinement.h>
7#include <deal.II/grid/tria.h>
8#include <deal.II/lac/vector.h>
9#include <deal.II/numerics/derivative_approximation.h>
10#include <deal.II/numerics/error_estimator.h>
11#include <deal.II/numerics/solution_transfer.h>
19 using namespace dealii;
33 virtual bool operator()(
const double, VectorType &)
override {
return false; }
40 virtual bool adapt(VectorType &)
override {
return false; }
Implement a simple interface to do all adaptivity tasks, i.e. solution transfer, reinit of dofHandler...
Definition abstract_adaptor.hh:11
Definition no_adaptivity.hh:22
virtual bool adapt(VectorType &) override
Force an adaptation and transfer the solution sol to the new mes.
Definition no_adaptivity.hh:40
virtual bool operator()(const double, VectorType &) override
Check if an adaptation step should be done and tranfer the given solution to the new mesh.
Definition no_adaptivity.hh:33
NoAdaptivity()
Definition no_adaptivity.hh:24
Definition complex_math.hh:14