Skip to content
Snippets Groups Projects
Commit 05f43148 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Add binaryfunctions.hh as an include to CollectiveCommunication

CollectiveCommunication serves as a fallback implementation, when
code that is written for parallel computations is executed in sequential.
The template parameters BinaryFunctions are no-op then, but they are
still there to define the interface. However, in a generic (parallel)
implementation these will be given. Including binaryfunctions.hh here
avoids error messages due to no-op template parameters whose names
could not be found by the compiler.
parent e469a2fb
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
#include <complex>
#include <algorithm>
#include <dune/common/binaryfunctions.hh>
#include <dune/common/exceptions.hh>
/*! \defgroup ParallelCommunication Parallel Communication
......
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