Skip to content
Snippets Groups Projects
Commit 4275c4df authored by Martin Bauer's avatar Martin Bauer
Browse files

Added stencil as typedef to communication schemes

parent 2194187d
No related merge requests found
...@@ -77,11 +77,11 @@ namespace communication { ...@@ -77,11 +77,11 @@ namespace communication {
* for the schemes: the tag can be passed in the constructor. * for the schemes: the tag can be passed in the constructor.
*/ */
//******************************************************************************************************************* //*******************************************************************************************************************
template< typename Stencil > template< typename Stencil_T >
class UniformBufferedScheme class UniformBufferedScheme
{ {
public: public:
typedef Stencil_T Stencil;
typedef mpi::SendBuffer SendBuffer; typedef mpi::SendBuffer SendBuffer;
typedef mpi::RecvBuffer RecvBuffer; typedef mpi::RecvBuffer RecvBuffer;
......
...@@ -45,11 +45,11 @@ namespace communication { ...@@ -45,11 +45,11 @@ namespace communication {
* *
*/ */
//******************************************************************************************************************* //*******************************************************************************************************************
template< typename Stencil > template< typename Stencil_T >
class UniformDirectScheme class UniformDirectScheme
{ {
public: public:
typedef Stencil_T Stencil;
typedef walberla::communication::UniformMPIDatatypeInfo UniformMPIDatatypeInfo; typedef walberla::communication::UniformMPIDatatypeInfo UniformMPIDatatypeInfo;
typedef walberla::communication::UniformMPIDatatypeInfo CommunicationItemInfo; typedef walberla::communication::UniformMPIDatatypeInfo CommunicationItemInfo;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment