Skip to content
Snippets Groups Projects
Commit 8335f916 authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Fix formatting in Communicator.h

parent 42feff5d
No related branches found
No related tags found
No related merge requests found
......@@ -49,17 +49,17 @@ namespace vf::parallel
class Communicator
{
public:
Communicator(const Communicator&) = delete;
Communicator & operator=(const Communicator& rhs) = delete;
Communicator(const Communicator &) = delete;
Communicator &operator=(const Communicator &rhs) = delete;
static std::shared_ptr<Communicator> getInstance();
virtual ~Communicator() = default;
virtual int getBundleID() = 0;
virtual int getNumberOfBundles() = 0;
virtual int getProcessID() const = 0;
virtual int getProcessID() const = 0;
virtual int getProcessID(int bundle, int rank) = 0;
virtual bool isRoot() const = 0;
virtual bool isRoot() const = 0;
virtual void *getNativeCommunicator() = 0;
virtual void sendSerializedObject(std::stringstream &ss, int target) = 0;
......
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