NEDISS: Network Diffusion and Synchronization Simulator
graph-test-init.h
1//
2// Created by m4zz31 on 30/10/21.
3//
4
5#ifndef CPPPROJCT_GRAPH_TEST_INIT_H
6#define CPPPROJCT_GRAPH_TEST_INIT_H
7
8#include <string>
9#include <vector>
10#include <cmath>
11
12#include "test-imports.h"
13
14
15// TODO: expand to the remaining equations
16// TODO: remove comments
17
18void graph_tests_init(int TOPOLOGY, unsigned int SEED, unsigned long N = 4);
19
20// THIS USES ONLY THE KURAMOTO EQUATION!!!
21template <int T, typename GRAPHTYPE>
22void test_graph_init(GRAPHTYPE &G, std::string name){
23
24 // Print in command which test is
25 adsync_message<T>(msg_prev + "'test_" + name + "_graph_init'", G.g);
26
27 // Build it
28 adsync_message<T>(msg_prev + "'build_" + name + "'", G.g);
29 G.build();
30 adsync_message_barrier<T>(msg_post + "build_" + name, G.g);
31
32 // Show the total number of created nodes
33 adsync_message_barrier<T>(msg_prev + "'reportNodes'", G.g);
34 G.reportNodes(G.g);
35 adsync_message_barrier<T>(msg_post + "'reportNodes'", G.g);
36
37 // Show the created nodes
38 adsync_message_barrier<T>(msg_prev + "'showVertex'", G.g);
39 G.showVertex(G.g);
40 adsync_message_barrier<T>(msg_post + "'showVertex'", G.g);
41
42 // Show the edges
43 adsync_message_barrier<T>(msg_prev + "'showEdges'", G.g);
44 G.showEdges(G.g);
45 adsync_message_barrier<T>(msg_post + "'showEdges'", G.g);
46
47 // Initialize for constant vals
48 adsync_message_barrier<T>(msg_prev + "'Initialization' (constant values)'", G.g);
49 G.Initialization({{12.345, 6.78}}, 3.14, G.g, G.N);
50 adsync_message_barrier<T>(msg_post + "'Initialization' (constant values)'", G.g);
51
52 // Show the number of created nodes again
53 adsync_message_barrier<T>(msg_prev + "'showVertex' (post eq constant values)", G.g);
54 G.showVertex(G.g);
55 adsync_message_barrier<T>(msg_post + "'showVertex' (post eq constant values)", G.g);
56
57 // Show the edges again
58 adsync_message_barrier<T>(msg_prev + "'showEdges' (post eq constant values)", G.g);
59 G.showEdges(G.g);
60 adsync_message_barrier<T>(msg_post + "'showEdges' (post eq constant values)", G.g);
61
62 // Initialize for varied kuramoto
63 //--------INITIALIZATION that is not parallelized yet
64 std::vector<std::pair<double, double>> X0_W;
65 for (int i=0; i<G.N; i++){
66 X0_W.push_back({
67 std::abs(std::sin(3.14 * ((double) i) / 13)),
68 1/((double) G.N) * (double) i
69 });
70 }
71 adsync_message_barrier<T>(msg_prev + "'Initialization' (varied values)'", G.g);
72 G.Initialization(X0_W, 5.67, G.g, G.N);
73 adsync_message_barrier<T>(msg_post + "'Initialization' (varied values)'", G.g);
74
75 // Show the number of created nodes again
76 adsync_message_barrier<T>(msg_prev + "'showVertex' (post eq varied values)", G.g);
77 G.showVertex(G.g);
78 adsync_message_barrier<T>(msg_post + "'showVertex' (post eq varied values)", G.g);
79
80 // Show the number of created nodes again
81 adsync_message_barrier<T>(msg_prev + "'showVertex' (post eq varied values)(again, to confirm the vertex iterator conserves the order)", G.g);
82 G.showVertex(G.g);
83 adsync_message_barrier<T>(msg_post + "'showVertex' (post eq varied values)(again, to confirm the vertex iterator conserves the order)", G.g);
84
85
86 // Show the edges again
87 adsync_message_barrier<T>(msg_prev + "'showEdges' (post eq varied values)", G.g);
88 G.showEdges(G.g);
89 adsync_message_barrier<T>(msg_post + "'showEdges' (post eq varied values)", G.g);
90
91 // Print in command what test is :-)
92 adsync_message<T>(msg_post + "'test_" + name + "_graph_init'", G.g);
93};
94
95
96
97#endif //CPPPROJCT_GRAPH_TEST_INIT_H