NEDISS: Network Diffusion and Synchronization Simulator
GeneralGraph.h
1//
2// Created by m4zz31 on 29/10/21.
3//
4
5#ifndef CPPPROJCT_GENERALGRAPH_H
6#define CPPPROJCT_GENERALGRAPH_H
7
8#include <iostream>
9
10// Flagged to kill after the next test 01 jan 2022.
11//#include <Eigen/Sparse>
12#include <string>
13#include "../Utils/error.h"
14
15#include "../macros/macros.h"
16
17#include <omp.h>
18#include <vector>
19#include <algorithm>
20
21
22
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>
46
47
49 /*
50 OBJECT DynamicNode are the elements we want to evolve over time
51 it should have:
52 (1) its value:
53 - 1 dimensional for Kuramoto
54 - TODO: N-dimensional (e.g. N=3 for Rossler Oscillators)
55 (2) parameters:
56 - an N-dimensional array with its own properties: characteristic frequency for example
57 (3) temoral register:
58 - 1 dimensional float to replace the value whenever the next update call arrives
59 */
60
61 double value = 0;
62 double temporal_register = 0;
63 std::vector<double> params;
64
65 DynamicNode() = default;
66 DynamicNode(double i): value(i) {};
67
68 // Boost::graph requires the nodes to have a serialization attribute :-)
69 template<typename Archiver>
70 void serialize(Archiver& ar, const unsigned int) {
71 ar & value & params ;
72 }
73};
74
76 /*
77 Edges represent interactions between nodes
78 The Kuramoto equation made each pair interact only once, thus a double
79 value was deemed appropiate. The most general equation could require
80 several interaction coefficients, e.g.
81 df1/dx = coefficient1 * f1 * f2 + coefficient2 * f1 * f2^2
82 todo: N-dimensional values for edges
83 */
84 double value = 1;
85
86 DynamicEdge() = default;
87 DynamicEdge(double i): value(i) {};
88
89 // Boost::graph requires the nodes to have a serialization attribute :-)
90 template<typename Archiver>
91 void serialize(Archiver& ar, const unsigned int /*version*/) {
92 ar & value;
93 }
94};
95
96// flagged to kill after the next test 01 jan 2022.
97//typedef DynamicNode DynamicNode;
98//typedef DynamicEdge DynamicEdge;
99
100
101typedef boost::adjacency_list<boost::vecS,
102 boost::distributedS<boost::graph::distributed::mpi_process_group, boost::vecS>,
103 boost::bidirectionalS,
106// Flagged to kill after the next test 01 jan 2022.
107// boost::property<DynamicNode, boost::vertex_index_t>,
108// boost::property<DynamicEdge, boost::edge_index_t>>
109 Graph;
110
111
112// Flagged to kill after the next test 01 jan 2022.
113// Useful types :-)
114//property_map<Graph, capacity_t>::type capacity
115// = get(capacity_t(), G);
116//property_map<Graph, flow_t>::type flow
117// = get(flow_t(), G);
118//
119// those can be accessed according to what is explained here:
120// https://www.boost.org/doc/libs/1_77_0/libs/graph/doc/using_adjacency_list.html
121//
122//typedef boost::property_map<Graph, double DynamicEdge::*>::type DynamicEdgeMap;
123//typedef boost::iterator_property_map<std::vector<double>::iterator, DynamicEdgeMap> DynamicEdgeCentralMap;
124//typedef boost::iterator_property_map<std::vector<int>::iterator, IndexMap> CentralMap;
125
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;
133
134// Flagged to kill after the next test 01 jan 2022.
135//using boost::adaptors::transformed;
136//#include <boost/graph/adjacency_list.hpp>
137
138
140 /*
141 * This is the general container that all the graphs inherit from :-)
142 *
143 * FUNCTIONS FOR CONFIGURATION
144 * Initialization:
145 * the initialization sets the values of the nodes and edges, and it's
146 * expected use is for the setting of the initial values previous to simulations.
147 *
148 * FUNCTIONS FOR DEBUGGING
149 * showVertex:
150 * shows the number of nodes and edges each processor 'sees',
151 * and all the nodes are iterated and their central value is reported.
152 * The expected use is confirming the number of required nodes are
153 * those as requested, and also confirming the correct setting of
154 * initial values for simple cases e.g. all nodes equal values
155 * showEdges:
156 * shows how many nodes are owned by each processor. This is somehow
157 * complementary to showVertex as in the boost graph distributed framework
158 * processors can 'see' more nodes than those they can modify, thus checking
159 * the sum of nodes with a clear ownership is part of a debugging inspection.
160 * The expected value is that NRequestedNodes = sum(owned nodes)
161 * reportNProcs:
162 * shows how many processors are active according to the graph boost interface.
163 * the expected value is that NGraphProcessors = MPI Processors.
164 */
165 public:
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);
172};
173
174
175#endif //CPPPROJCT_GENERALGRAPH_H
Definition: GeneralGraph.h:139
Definition: GeneralGraph.h:75
Definition: GeneralGraph.h:48