"bh_tree_mpi/datastructures/BarnesHutTree.cpp" did not exist on "26f8e73d871524c10c587ccad265923890c085bf"
Newer
Older
#ifndef COMM_BUFFER_HPP
#define COMM_BUFFER_HPP
#include <mpi.h>
#include <vector>
#include "../datastructures/Body.hpp"
namespace nbody {
using namespace std;
class MpiBodyComm {
protected:
virtual void sendBlocking(int target, vector<Body> bodies);
virtual void recvBlocking(int source, vector<Body>& bodies);
virtual bool sendUnblocking(int target, vector<Body> bodies);
virtual bool recvUnblocking(int source, vector<Body>& bodies);