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

[Cleanup] Fix up includes

parent 83bb6347
No related branches found
No related tags found
No related merge requests found
...@@ -43,8 +43,6 @@ ...@@ -43,8 +43,6 @@
#include <dune/fufem/functions/basisgridfunction.hh> #include <dune/fufem/functions/basisgridfunction.hh>
#include <dune/fufem/sharedpointermap.hh> #include <dune/fufem/sharedpointermap.hh>
#include <dune/solvers/norms/energynorm.hh> #include <dune/solvers/norms/energynorm.hh>
#include <dune/solvers/norms/sumnorm.hh>
#include <dune/solvers/norms/twonorm.hh>
#include <dune/solvers/solvers/loopsolver.hh> #include <dune/solvers/solvers/loopsolver.hh>
#include <dune/solvers/solvers/solver.hh> #include <dune/solvers/solvers/solver.hh>
#include <dune/tnnmg/nonlinearities/zerononlinearity.hh> #include <dune/tnnmg/nonlinearities/zerononlinearity.hh>
...@@ -56,12 +54,9 @@ ...@@ -56,12 +54,9 @@
#include "adaptivetimestepper.hh" // FIXME #include "adaptivetimestepper.hh" // FIXME
#include "assemblers.hh" #include "assemblers.hh"
#include "tobool.hh"
#include "coupledtimestepper.hh"
#include "distances.hh" #include "distances.hh"
#include "enumparser.hh" #include "enumparser.hh"
#include "enums.hh" #include "enums.hh"
#include "fixedpointiterator.hh"
#include "friction_writer.hh" #include "friction_writer.hh"
#include "gridselector.hh" #include "gridselector.hh"
#include "sand-wedge-data/mybody.hh" #include "sand-wedge-data/mybody.hh"
......
#include "ageinglawstateupdater.hh" #include "ageinglawstateupdater.hh"
#include "../tobool.hh"
template <class ScalarVector, class Vector> template <class ScalarVector, class Vector>
AgeingLawStateUpdater<ScalarVector, Vector>::AgeingLawStateUpdater( AgeingLawStateUpdater<ScalarVector, Vector>::AgeingLawStateUpdater(
......
#ifndef SRC_STATE_AGEINGLAWSTATEUPDATER_HH #ifndef SRC_STATE_AGEINGLAWSTATEUPDATER_HH
#define SRC_STATE_AGEINGLAWSTATEUPDATER_HH #define SRC_STATE_AGEINGLAWSTATEUPDATER_HH
#include "../tobool.hh"
#include "stateupdater.hh" #include "stateupdater.hh"
template <class ScalarVector, class Vector> template <class ScalarVector, class Vector>
......
#include "sliplawstateupdater.hh" #include "sliplawstateupdater.hh"
#include "../tobool.hh"
template <class ScalarVector, class Vector> template <class ScalarVector, class Vector>
SlipLawStateUpdater<ScalarVector, Vector>::SlipLawStateUpdater( SlipLawStateUpdater<ScalarVector, Vector>::SlipLawStateUpdater(
......
#ifndef SRC_STATE_SLIPLAWSTATEUPDATER_HH #ifndef SRC_STATE_SLIPLAWSTATEUPDATER_HH
#define SRC_STATE_SLIPLAWSTATEUPDATER_HH #define SRC_STATE_SLIPLAWSTATEUPDATER_HH
#include "../tobool.hh"
#include "stateupdater.hh" #include "stateupdater.hh"
template <class ScalarVector, class Vector> template <class ScalarVector, class Vector>
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
#include "config.h" #include "config.h"
#endif #endif
#include <dune/istl/matrixindexset.hh>
#include "timestepping.hh" #include "timestepping.hh"
#include "timestepping/backward_euler.cc" #include "timestepping/backward_euler.cc"
......
...@@ -3,9 +3,10 @@ ...@@ -3,9 +3,10 @@
#include <memory> #include <memory>
#include "enums.hh"
#include <dune/common/bitsetvector.hh> #include <dune/common/bitsetvector.hh>
#include "enums.hh"
template <class Vector, class Matrix, class Function, size_t dim> template <class Vector, class Matrix, class Function, size_t dim>
class TimeSteppingScheme { class TimeSteppingScheme {
public: public:
......
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