Skip to content
Snippets Groups Projects
Commit f9bbdf43 authored by Timo Koch's avatar Timo Koch
Browse files

[bugfix] Include important headers in implicit propertydefaults

The BCRSMatrix was nowhere included in the implicit models and
just worked by chance with MPI. Without MPI and gcc 5.2.1 or
clang 2.6 only decalaration of BCRSMatrix from matrixutils was
available.

The propertydefaults should include important headers of the
classes they are using to set the properties.
parent 2a393501
No related branches found
No related tags found
1 merge request!69[bugfix] Include important headers in implicit propertydefaults
......@@ -25,6 +25,11 @@
#ifndef DUMUX_IMPLICIT_PROPERTY_DEFAULTS_HH
#define DUMUX_IMPLICIT_PROPERTY_DEFAULTS_HH
#include <dune/common/fvector.hh>
#include <dune/common/fmatrix.hh>
#include <dune/grid/common/mcmgmapper.hh>
#include <dune/istl/bcrsmatrix.hh>
#include <dumux/nonlinear/newtonmethod.hh>
#include <dumux/nonlinear/newtoncontroller.hh>
#include <dumux/common/boundarytypes.hh>
......
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