Skip to content
Snippets Groups Projects
Commit 4c3f8d09 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Clean up #includes

parent 7488e8e8
No related branches found
No related tags found
No related merge requests found
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
#ifndef DUNE_TECTONIC_GLOBAL_NONLINEARITY_HH #ifndef DUNE_TECTONIC_GLOBAL_NONLINEARITY_HH
#define DUNE_TECTONIC_GLOBAL_NONLINEARITY_HH #define DUNE_TECTONIC_GLOBAL_NONLINEARITY_HH
//#include <dune/common/bitsetvector.hh>
#include <dune/common/fvector.hh> #include <dune/common/fvector.hh>
#include <dune/tectonic/localnonlinearity.hh>
#include "localnonlinearity.hh"
namespace Dune { namespace Dune {
template <int dim, class OuterFunctionType> class GlobalNonlinearity { template <int dim, class OuterFunctionType> class GlobalNonlinearity {
......
...@@ -3,13 +3,13 @@ ...@@ -3,13 +3,13 @@
#ifndef DUNE_TECTONIC_LOCAL_NONLINEARITY_HH #ifndef DUNE_TECTONIC_LOCAL_NONLINEARITY_HH
#define DUNE_TECTONIC_LOCAL_NONLINEARITY_HH #define DUNE_TECTONIC_LOCAL_NONLINEARITY_HH
#include <limits>
#include <dune/common/fvector.hh> #include <dune/common/fvector.hh>
#include <dune/common/fmatrix.hh> #include <dune/common/fmatrix.hh>
#include <dune/fufem/interval.hh> #include <dune/fufem/interval.hh>
#include <limits>
#include "nicefunction.hh" #include "nicefunction.hh"
namespace Dune { namespace Dune {
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
#ifndef MY_BLOCK_PROBLEM_HH #ifndef MY_BLOCK_PROBLEM_HH
#define MY_BLOCK_PROBLEM_HH #define MY_BLOCK_PROBLEM_HH
// #include <dune/common/parametertree.hh>
#include <dune/common/bitsetvector.hh> #include <dune/common/bitsetvector.hh>
#include <dune/tnnmg/problem-classes/bisection.hh> #include <dune/tnnmg/problem-classes/bisection.hh>
......
// Based on dune/tnnmg/problem-classes/convexproblem.hh // Based on dune/tnnmg/problem-classes/convexproblem.hh
#include <dune/tectonic/globalnonlinearity.hh>
#ifndef MY_CONVEX_PROBLEM_HH #ifndef MY_CONVEX_PROBLEM_HH
#define MY_CONVEX_PROBLEM_HH #define MY_CONVEX_PROBLEM_HH
#include "globalnonlinearity.hh"
/** \brief TODO /** \brief TODO
\tparam MatrixTypeTEMPLATE The type used for the matrix of the quadratic \tparam MatrixTypeTEMPLATE The type used for the matrix of the quadratic
......
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
#ifndef NICE_FUNCTION_HH #ifndef NICE_FUNCTION_HH
#define NICE_FUNCTION_HH #define NICE_FUNCTION_HH
#include <dune/common/function.hh>
#include <cmath> #include <cmath>
#include <dune/common/function.hh>
namespace Dune { namespace Dune {
class NiceFunction : public VirtualFunction<double, double> { class NiceFunction : public VirtualFunction<double, double> {
public: public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment