Skip to content
Snippets Groups Projects
Commit c136f21b authored by Markus Holzer's avatar Markus Holzer Committed by Philipp Suffa
Browse files

Add Communication Functor to UniformBufferedScheme

parent afd3021d
Branches
No related tags found
No related merge requests found
......@@ -160,6 +160,7 @@ public:
std::function<void()> getStartCommunicateFunctor();
std::function<void()> getWaitFunctor();
std::function<void()> getCommunicateFunctor();
//@}
//*******************************************************************************************************************
......@@ -545,6 +546,11 @@ std::function<void()> UniformBufferedScheme<Stencil>::getWaitFunctor()
return std::bind( &UniformBufferedScheme::wait, this );
}
template< typename Stencil >
std::function<void()> UniformBufferedScheme<Stencil>::getCommunicateFunctor()
{
return std::bind( &UniformBufferedScheme::communicate, this );
}
} // namespace communication
} // namespace blockforest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment