Skip to content
Snippets Groups Projects
Commit 3cbc77f7 authored by Christian Engwer's avatar Christian Engwer
Browse files

fix includes of several headers

[[Imported from SVN: r941]]
parent 07ee95e4
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,11 @@
#include "interface.hh"
#include <dune/common/exceptions.hh>
#include <dune/common/typetraits.hh>
#if HAVE_MPI
// MPI header
#include <mpi.h>
namespace Dune
{
/** @defgroup ISTL_Comm ISTL Communication
......@@ -1500,3 +1505,5 @@ namespace Dune
}
#endif
#endif
......@@ -7,6 +7,7 @@
#include "localindex.hh"
#include "mpitraits.hh"
#include <iostream>
namespace Dune
{
......
......@@ -40,7 +40,7 @@ namespace Dune
/**
* @brief The type of the underlying index set.
*/
typedef ParallelIndexSet<TG,TL,N> ParallelIndexSet;
typedef Dune::ParallelIndexSet<TG,TL,N> ParallelIndexSet;
//typedef typename ParallelIndexSet::const_iterator ParallelIndexSetIterator;
......@@ -121,7 +121,7 @@ namespace Dune
/**
* @brief The type of the underlying index set.
*/
typedef ParallelIndexSet<GlobalIndex,LocalIndex,N> ParallelIndexSet;
typedef Dune::ParallelIndexSet<GlobalIndex,LocalIndex,N> ParallelIndexSet;
/**
* @brief The type of the iterator of the selected indices.
......@@ -204,7 +204,7 @@ namespace Dune
/**
* @brief The type of the underlying index set.
*/
typedef ParallelIndexSet<GlobalIndex,LocalIndex,N> ParallelIndexSet;
typedef Dune::ParallelIndexSet<GlobalIndex,LocalIndex,N> ParallelIndexSet;
/**
* @brief The type of the iterator of the selected indices.
......
......@@ -3,6 +3,7 @@
#ifndef LAPLACIAN_HH
#define LAPLACIAN_HH
#include <dune/istl/bcrsmatrix.hh>
#include <dune/common/fvector.hh>
template<class B>
void setupSparsityPattern(Dune::BCRSMatrix<B>& A, int N)
......
......@@ -6,7 +6,7 @@
#include <cmath>
#include <complex>
#include "istlexection.hh"
#include "istlexception.hh"
#include "allocator.hh"
/*! \file
......
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