5#ifndef CPPPROJCT_GENERALGRAPH_H
6#define CPPPROJCT_GENERALGRAPH_H
13#include "../Utils/error.h"
15#include "../macros/macros.h"
23#include <boost/mpi.hpp>
24#include <boost/graph/use_mpi.hpp>
25#include <boost/graph/distributed/mpi_process_group.hpp>
26#include <boost/graph/distributed/adjacency_list.hpp>
27#include <boost/graph/distributed/named_graph.hpp>
28#include <boost/graph/parallel/process_group.hpp>
29#include <boost/assert.hpp>
30#include <boost/property_map/property_map.hpp>
31#include <boost/property_map/parallel/distributed_property_map.hpp>
32#include <boost/property_map/parallel/caching_property_map.hpp>
33#include <boost/graph/parallel/algorithm.hpp>
34#include <boost/graph/connected_components.hpp>
35#include <boost/graph/parallel/process_group.hpp>
36#include <boost/property_map/parallel/distributed_property_map.hpp>
37#include <boost/property_map/parallel/local_property_map.hpp>
38#include <boost/random/linear_congruential.hpp>
39#include <boost/graph/erdos_renyi_generator.hpp>
40#include <boost/graph/adjacency_list.hpp>
41#include <boost/graph/named_graph.hpp>
42#include <boost/graph/graph_traits.hpp>
43#include <boost/random/linear_congruential.hpp>
44#include <boost/graph/erdos_renyi_generator.hpp>
45#include <boost/range/adaptors.hpp>
62 double temporal_register = 0;
63 std::vector<double> params;
69 template<
typename Archiver>
70 void serialize(Archiver& ar,
const unsigned int) {
90 template<
typename Archiver>
91 void serialize(Archiver& ar,
const unsigned int ) {
101typedef boost::adjacency_list<boost::vecS,
102 boost::distributedS<boost::graph::distributed::mpi_process_group, boost::vecS>,
103 boost::bidirectionalS,
126typedef boost::property_map<Graph, boost::vertex_index_t>::const_type IndexMap;
127typedef boost::graph_traits<Graph>::vertex_iterator vertex_iterator;
128typedef boost::graph_traits<Graph>::edge_iterator edge_iterator;
129typedef boost::property_map<Graph, boost::vertex_owner_t>::const_type OwnerMap;
130typedef boost::property_map<Graph, boost::edge_owner_t>::const_type EdgeOwnerMap;
131typedef boost::property_map<Graph, boost::vertex_local_t>::const_type LocalVertexMap;
132typedef boost::property_map<Graph, boost::vertex_global_t>::const_type GlobalVertexMap;
166 void showVertex(Graph & g);
167 void showEdges(Graph & g);
168 void reportNProcs(Graph & g);
169 void reportNodes(Graph &g);
170 void Initialization(std::vector<std::pair<double, double>> X0_W,
171 double J, Graph & g,
unsigned int N);
Definition: GeneralGraph.h:139
Definition: GeneralGraph.h:75
Definition: GeneralGraph.h:48