NEDISS: Network Diffusion and Synchronization Simulator
SimulationPipe.h
1//
2// Created by m4zz31 on 26/11/21.
3//
4
5#ifndef CPPPROJCT_SIMULATIONPIPE_H
6#define CPPPROJCT_SIMULATIONPIPE_H
7
8#include <iostream>
9#include <fstream>
10#include <string>
11#include <map>
12#include <boost/graph/graphviz.hpp>
13
14#include "../Tests/test-imports.h"
15
16template <int T, typename GRAPHTYPE, int BATCH, typename DIFFEQ>
17void run_several_times(GRAPHTYPE &G, std::string name,
18
19// FLAGGED FOR KILL AFTER NEXT TEST 01 JAN 2022
20// CommunicationHelper &ComHelper,
21// ParallelHelper &ParHelper,
22// IntegrationHelper &IntHelper,
23// MappingHelper &MapHelper,
24 int NRUNS,
25// LayeredSolverHelper &LayHelper,
26 SolverConfig &SOLVER) {
27 // Building
28 G.build();
29
30 // Initialization
31 std::vector<std::pair<double, double>> X0_W;
32 double I=2,LB=0,UB=1;
33
34 // FLAGGED FOR REPLACING WITH:
35 // Set Bounds for random initialization :-) call a func
36 if (std::stoi(std::getenv("EQNUMBER")) == 0) {
37 /*
38 * If the equation is NoiselessKuramoto then the interaction is
39 * called "J", the initialization 'Lower Bound' == LB is "WMIN"
40 * and the upper bound is "WMAX"
41 */
42 I = (double) std::stod(std::getenv("J"));
43 LB = (double) std::stod(std::getenv("WMIN"));
44 UB = (double) std::stod(std::getenv("WMAX"));
45 }
46
47 // FLAGGED FOR REPLACING WITH: random initializer
48 std::uniform_real_distribution<double> initialPhase(0, M_PI);
49 std::uniform_real_distribution<double> naturalFrequency(LB, UB);
50 std::default_random_engine re;
51 for (int i=0; i<G.N; i++){
52 double new_phase = initialPhase(re);
53 double new_freq = naturalFrequency(re);
54 X0_W.push_back({new_phase, new_freq});
55 }
56 G.Initialization(X0_W, I, G.g, G.N);
57
58 // Containers
59 unsigned long NVtot = boost::num_vertices(G.g);
60 CommunicationHelper ComHelper(G.g);
61 ParallelHelper ParHelper(ComHelper.NUM_THREADS, NVtot);
62 IntegrationHelper IntHelper(NVtot);
63 LayeredSolverHelper LayHelper(NVtot);
64 MappingHelper MapHelper(G.g);
65 ReferenceContainer REF(ParHelper,
66 ComHelper,
67 G.g,
68 IntHelper,
69 MapHelper,
70 LayHelper,
71 NVtot);
72
73
74 // Simulation configuration
75 int SAMPLING_FREQ = (int) std::stoi(std::getenv("SAMPLING_FREQ"));
76
77 // FLAGGED FOR being implemented as yetother template parameter by inserting a cased
78 // filter before the present function is called :-) !!!
79 //
80 // Perform the simulation (two branches: Euler and RungeKutta integrators)
81 if (SOLVER.s == 0) {
82 int fileCounter = 0; // flagged for outside if
83 int WRITING_FREQ = SAMPLING_FREQ; // flagged for outside if
85 S_eu.SetT0(0);
86 S_eu.SetStep(0.01);
87 for (int i = 0; i < NRUNS; i++) {
88 if (i==0) {
89 single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
90 } else {
91 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
92 }
93 if (i==0) LayHelper.built = true;
94 S_eu.EvolveTime();
95 if ((i % WRITING_FREQ) == 0) {
96 std::string dots = "graphic/program-output/graphviz." + std::to_string(fileCounter) + ".dot";
97 char * dot = &dots[0];
98 boost::write_graphviz(dot, G.g, boost::make_label_writer(get(&DynamicNode::value, G.g)));
99 fileCounter++;
100 // todo: this only for processor 0 please
101 std::cout << "Writing graphviz into file named" << dots <<std::endl;
102 }
103 // Evolve the graph? if it were dynamic. Not our case :-).
104 }
105 } else if (SOLVER.s == 1) {
106 int fileCounter = 0;
107 int WRITING_FREQ = SAMPLING_FREQ;
108 GeneralSolver<DIFFEQ, RungeKuttaSolver<DIFFEQ>> S_rk("rk", SOLVER.d, &SOLVER.P[0]);
109 S_rk.SetT0(0);
110 S_rk.SetStep(0.01);
111 for (int i = 0; i < NRUNS; i++) {
112 if (i==0) {
113 single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
114 } else {
115 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
116 }
117 if (i==0) LayHelper.built = true;
118 S_rk.EvolveTime();
119 if ((i % WRITING_FREQ) == 0) {
120 std::string dots = "graphic/program-output/graphviz." + std::to_string(fileCounter) + ".dot";
121 char * dot = &dots[0];
122 boost::write_graphviz(dot, G.g, boost::make_label_writer(get(&DynamicNode::value, G.g)));
123 fileCounter++;
124 // todo: this only for processor 0 please
125 std::cout << "Writing graphviz into file named" << dots <<std::endl;
126 }
127 // Evolve the graph? if it were dynamic. Not our case :-).
128 }
129 } else error_report("Requested solver does not exist\n");
130
131 // End
132 printf("\n\n\n[INFO] Simulation has ended successfully!!!\n\n\n");
133}
134
135
136template <int BATCH, typename EQCLASS>
137void simulator_helper(unsigned int SEED, unsigned long N, int NRUNS, SolverConfig &SOLVER, int TOPOLOGY){
138
139 unsigned long K;
140 double p;
141 if ((TOPOLOGY == 2) || (TOPOLOGY == 3)) {
142 p = (double) std::stod(std::getenv("proba"));
143 }
144 if ((TOPOLOGY == 3)) {
145 K = (unsigned long) std::stoul(std::getenv("kneigh"));
146 }
147
148 // FLAGGED FOR KILL AFTER DEBUG 01 JAN 2022: several commented arguments for functions
149 if (TOPOLOGY == 0){
150 RingGraphObject G(N);
151 run_several_times<100, RingGraphObject, BATCH, EQCLASS>(G, "Ring",
152// ComHelper, ParHelper,
153// IntHelper, MapHelper,
154 NRUNS,
155// LayHelper,
156 SOLVER);
157 } else if (TOPOLOGY == 1) {
159 run_several_times<100, CliqueGraphObject, BATCH, EQCLASS>(G, "Clique",
160// ComHelper, ParHelper,
161// IntHelper, MapHelper,
162 NRUNS,
163// LayHelper,
164 SOLVER);
165 } else if (TOPOLOGY == 2) {
166 ErdosRenyiGraphObject G(N, p);
167 run_several_times<100, ErdosRenyiGraphObject, BATCH, EQCLASS>(G, "ErdosRenyi",
168// ComHelper, ParHelper,
169// IntHelper, MapHelper,
170 NRUNS,
171// LayHelper,
172 SOLVER);
173 } else if (TOPOLOGY == 3) {
174 SmallWorldGraphObject G(N, K, p);
175 run_several_times<100, SmallWorldGraphObject, BATCH, EQCLASS>(G, "SmallWorld",
176// ComHelper, ParHelper,
177// IntHelper, MapHelper,
178 NRUNS,
179// LayHelper,
180 SOLVER);
181 } else error_report("Requested ring topology does not exist!\n");
182
183}
184
185
186template <int BATCH>
187void simulator(unsigned int SEED, unsigned long N, int NRUNS, SolverConfig &SOLVER, int TOPOLOGY, int EQNUMBER){
188
189 reproductibility_lock(SEED);
190
191 if (EQNUMBER == 0){
192 simulator_helper<BATCH, NoiselessKuramoto>(SEED, N,NRUNS, SOLVER, TOPOLOGY);
193 } else if (EQNUMBER == 1) {
194 simulator_helper<BATCH, LinearTestEquation>(SEED, N, NRUNS, SOLVER, TOPOLOGY);
195 } else {
196 printf("[FATAL] Required Equation does not exist!\n");
197 std::cout<<std::flush;
198 exit(1);
199 }
200
201};
202
203
204#endif //CPPPROJCT_SIMULATIONPIPE_H
Definition: CliqueGraph.h:12
Definition: ErdosRenyiGraph.h:9
Definition: GeneralSolver.h:38
Definition: RingGraph.h:12
Definition: SmallWorldGraph.h:11
Definition: GeneralSolver.h:24