From f97c909f5ca97f5e8a8f026e032b9e718f7efad3 Mon Sep 17 00:00:00 2001 From: Alain Miniussi Date: Tue, 1 Nov 2016 01:49:49 +0100 Subject: [PATCH] Added missing vector serializatin declaration. (#11) May not be minimal. Wow, thanks for the fast turnaround, appreciate the help. --- include/boost/graph/distributed/mpi_process_group.hpp | 1 + src/mpi_process_group.cpp | 1 + test/adjlist_redist_test.cpp | 1 + test/distributed_connected_components_test.cpp | 1 + test/distributed_csr_test.cpp | 1 + test/distributed_dfs_test.cpp | 1 + test/distributed_graph_coloring_test.cpp | 1 + test/distributed_mst_test.cpp | 1 + test/distributed_page_rank_test.cpp | 1 + test/distributed_property_map_test.cpp | 1 + test/distributed_queue_test.cpp | 1 + 11 files changed, 11 insertions(+) diff --git a/include/boost/graph/distributed/mpi_process_group.hpp b/include/boost/graph/distributed/mpi_process_group.hpp index c770aa0..0e0627d 100644 --- a/include/boost/graph/distributed/mpi_process_group.hpp +++ b/include/boost/graph/distributed/mpi_process_group.hpp @@ -29,6 +29,7 @@ #include #include #include +#include #include namespace boost { namespace graph { namespace distributed { diff --git a/src/mpi_process_group.cpp b/src/mpi_process_group.cpp index 546c907..050b0f2 100644 --- a/src/mpi_process_group.cpp +++ b/src/mpi_process_group.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include diff --git a/test/adjlist_redist_test.cpp b/test/adjlist_redist_test.cpp index 592ca68..96a659a 100644 --- a/test/adjlist_redist_test.cpp +++ b/test/adjlist_redist_test.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_connected_components_test.cpp b/test/distributed_connected_components_test.cpp index feb9ee7..e630bbb 100644 --- a/test/distributed_connected_components_test.cpp +++ b/test/distributed_connected_components_test.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_csr_test.cpp b/test/distributed_csr_test.cpp index a3daada..a6833ec 100644 --- a/test/distributed_csr_test.cpp +++ b/test/distributed_csr_test.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_dfs_test.cpp b/test/distributed_dfs_test.cpp index 9c31730..d21491b 100644 --- a/test/distributed_dfs_test.cpp +++ b/test/distributed_dfs_test.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_graph_coloring_test.cpp b/test/distributed_graph_coloring_test.cpp index e37e196..2b219c0 100644 --- a/test/distributed_graph_coloring_test.cpp +++ b/test/distributed_graph_coloring_test.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_mst_test.cpp b/test/distributed_mst_test.cpp index 41e8830..614116f 100644 --- a/test/distributed_mst_test.cpp +++ b/test/distributed_mst_test.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_page_rank_test.cpp b/test/distributed_page_rank_test.cpp index 3f15b85..d7b2945 100644 --- a/test/distributed_page_rank_test.cpp +++ b/test/distributed_page_rank_test.cpp @@ -9,6 +9,7 @@ #include #include +#include #include #include #include diff --git a/test/distributed_property_map_test.cpp b/test/distributed_property_map_test.cpp index d1aae74..6304fff 100644 --- a/test/distributed_property_map_test.cpp +++ b/test/distributed_property_map_test.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include diff --git a/test/distributed_queue_test.cpp b/test/distributed_queue_test.cpp index f4e4aec..5a36303 100644 --- a/test/distributed_queue_test.cpp +++ b/test/distributed_queue_test.cpp @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include