Skip to content
Snippets Groups Projects
Commit 5ed5f61a authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

fix include paths

[[Imported from SVN: r2364]]
parent 47e0b5bc
No related branches found
No related tags found
No related merge requests found
#ifndef ITERATIONSTEP_HH #ifndef ITERATIONSTEP_HH
#define ITERATIONSTEP_HH #define ITERATIONSTEP_HH
#include "numproc.hh" #include <dune-solvers/numproc.hh>
#include <vector> #include <vector>
#include <string> #include <string>
......
#ifndef DUNE_MONOTONE_MULTIGRID_STEP_HH #ifndef DUNE_MONOTONE_MULTIGRID_STEP_HH
#define DUNE_MONOTONE_MULTIGRID_STEP_HH #define DUNE_MONOTONE_MULTIGRID_STEP_HH
#include <dune/ag-common/multigridstep.hh> #include <dune-solvers/iterationsteps/multigridstep.hh>
#include <dune/ag-common/transferoperators/multigridtransfer.hh> #include <dune-solvers/iterationsteps/projectedblockgsstep.hh>
#include <dune/ag-common/projectedblockgsstep.hh> #include <dune-solvers/transferoperators/multigridtransfer.hh>
#include <dune/ag-common/boxconstraint.hh> #include <dune/ag-common/boxconstraint.hh>
#include <dune/ag-common/obstaclerestrictor.hh> #include <dune/ag-common/obstaclerestrictor.hh>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#define ENERGY_NORM_HH #define ENERGY_NORM_HH
#include "norm.hh" #include "norm.hh"
#include <dune/ag-common/lineariterationstep.hh> #include <dune-solvers/iterationsteps/lineariterationstep.hh>
template<class OperatorType, class DiscFuncType> template<class OperatorType, class DiscFuncType>
class EnergyNorm : public Norm<DiscFuncType> class EnergyNorm : public Norm<DiscFuncType>
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
#define ITERATIVE_SOLVER_HH #define ITERATIVE_SOLVER_HH
#include "solver.hh" #include "solver.hh"
#include "iterationstep.hh" #include <dune-solvers/iterationsteps/iterationstep.hh>
#include "norms/norm.hh" #include <dune-solvers/norms/norm.hh>
/** \brief A generic iterative solver /** \brief A generic iterative solver
* *
......
#ifndef LOOP_SOLVER_HH #ifndef LOOP_SOLVER_HH
#define LOOP_SOLVER_HH #define LOOP_SOLVER_HH
#include <dune/ag-common/iterativesolver.hh> #include <dune-solvers/solvers/iterativesolver.hh>
#include <dune/ag-common/iterationstep.hh> #include <dune-solvers/iterationsteps/iterationstep.hh>
#include <dune/ag-common/norms/norm.hh> #include <dune-solvers/norms/norm.hh>
/** \brief A solver which consists of a single loop /** \brief A solver which consists of a single loop
* *
......
#ifndef DUNE_SOLVER_HH #ifndef DUNE_SOLVER_HH
#define DUNE_SOLVER_HH #define DUNE_SOLVER_HH
#include "numproc.hh" #include <dune-solvers/numproc.hh>
/** \brief The base class for all sorts of solver algorithms */ /** \brief The base class for all sorts of solver algorithms */
class Solver : public NumProc class Solver : public NumProc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment