From 72209e21c07bda5f7a655de26a17872a431b7013 Mon Sep 17 00:00:00 2001 From: Paul Heinzlreiter Date: Thu, 30 Jun 2016 12:33:57 +0200 Subject: [PATCH] * testubg mpi --- bh_tree_mpi/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bh_tree_mpi/main.cpp b/bh_tree_mpi/main.cpp index d3d85b0..ba4b8a8 100644 --- a/bh_tree_mpi/main.cpp +++ b/bh_tree_mpi/main.cpp @@ -1,4 +1,5 @@ #include "datastructures/BarnesHutTree.hpp" +#include "parallelization/MpiSimulation.hpp" #include using namespace nbody; @@ -6,8 +7,10 @@ using namespace std; int main(int argc, char* argv[]) { BarnesHutTree tree; + MpiSimulation simulation(argc, argv); if (argc == 2) { + vector bodies = Tree::dubinskiParse(argv[1]); cout << bodies.size() << endl; -- GitLab