129 | | |
130 | | |
| 132 | == Grapth->GraphParallel == |
| 133 | |
| 134 | |
| 135 | <boost/graph/distributed/breadth_first_search.hpp> |
| 136 | |
| 137 | from <boost/graph/breadth_first_search.hpp> |
| 138 | |
| 139 | <boost/graph/distributed/concepts.hpp> |
| 140 | |
| 141 | from <boost/graph/breadth_first_search.hpp> |
| 142 | |
| 143 | <boost/graph/distributed/connected_components.hpp> |
| 144 | |
| 145 | from <boost/graph/connected_components.hpp> |
| 146 | |
| 147 | <boost/graph/distributed/depth_first_search.hpp> |
| 148 | |
| 149 | from <boost/graph/depth_first_search.hpp> |
| 150 | |
| 151 | <boost/graph/distributed/dijkstra_shortest_paths.hpp> |
| 152 | |
| 153 | from <boost/graph/dijkstra_shortest_paths.hpp> |
| 154 | |
| 155 | <boost/graph/distributed/fruchterman_reingold.hpp> |
| 156 | |
| 157 | from <boost/graph/fruchterman_reingold.hpp> |
| 158 | |
| 159 | <boost/graph/distributed/graphviz.hpp> |
| 160 | |
| 161 | from <boost/graph/graphviz.hpp> |
| 162 | |
| 163 | <boost/graph/distributed/one_bit_color_map.hpp> |
| 164 | |
| 165 | from <boost/graph/one_bit_color_map.hpp> |
| 166 | |
| 167 | <boost/graph/distributed/page_rank.hpp> |
| 168 | |
| 169 | from <boost/graph/page_rank.hpp> |
| 170 | |
| 171 | <boost/graph/distributed/rmat_graph_generator.hpp> |
| 172 | |
| 173 | from <boost/graph/rmat_graph_generator.hpp> |
| 174 | |
| 175 | <boost/graph/distributed/strong_components.hpp> |
| 176 | |
| 177 | from <boost/graph/strong_components.hpp> |
| 178 | |
| 179 | <boost/graph/distributed/two_bit_color_map.hpp> |
| 180 | |
| 181 | from <boost/graph/two_bit_color_map.hpp> |
| 182 | |
| 183 | <boost/pending/property_serialize.hpp> |
| 184 | |
| 185 | from <boost/graph/adj_list_serialize.hpp> |
| 186 | |
| 187 | |
| 188 | |
| 189 | Remove all the graph distributed specializations declarations in Graph as e.g. |
| 190 | |
| 191 | |
| 192 | {{{ |
| 193 | #ifdef BOOST_GRAPH_USE_MPI |
| 194 | template <class DistributedGraph, class ColorMap, class BFSVisitor, |
| 195 | class P, class T, class R> |
| 196 | void bfs_helper |
| 197 | (DistributedGraph& g, |
| 198 | typename graph_traits<DistributedGraph>::vertex_descriptor s, |
| 199 | ColorMap color, |
| 200 | BFSVisitor vis, |
| 201 | const bgl_named_params<P, T, R>& params, |
| 202 | boost::mpl::true_); |
| 203 | #endif // BOOST_GRAPH_USE_MPI |
| 204 | |
| 205 | }}} |
| 206 | |
| 207 | |
| 208 | The definition of these specializations are already in GraphParallel. |
| 209 | |
| 210 | = Other dependencies = |