NEDISS: Network Diffusion and Synchronization Simulator
SmallWorldGraph.h
1//
2// Created by m4zz31 on 26/11/21.
3//
4
5#ifndef CPPPROJCT_SMALLWORLDGRAPH_H
6#define CPPPROJCT_SMALLWORLDGRAPH_H
7
8#include "GeneralGraph.h"
9#include <boost/graph/small_world_generator.hpp>
10
12public:
13 /*
14 * The small world graph can be constructed using the Watts-Strogatz
15 * mechanism which imposes the constraint of no self-loops AND no double edges.
16 * The Wikipedia article (https://en.wikipedia.org/wiki/Watts%E2%80%93Strogatz_model)
17 * mentions the constraint N >> K >> log(N), which might have to do with
18 * the mechanism effectively recovering the definition of small world, i.e. that the
19 * typical distance = L propto log(N) in presence of the two previously mentioned constraints
20 *
21 * TLDR: if something weird is happening with your results, please notify developers AND
22 * consider the bound K >> log(N).
23 *
24 * Quantitative enforcement:
25 * using the base 2 for the log, and defining '>>' as two orders of magnitude, i.e. a factor 4,
26 * then N >> K >> log(N) implies that
27 * 1) N >= 16 * log(N), which is enforced with ~ N >= 100
28 * 2) a formula for K(N) such that K is equidistant in exponential 2-steps, i.e.
29 * log2(K/N) ~= log2(log2(N)/K) so a safe generator for K is sqrt(log2(N)*N).
30 * If N is increased enough then just for example 100 * log2(N) will suffice
31 * mini-table:
32 * N K=sqrt(log2(N)*N) log2(N) K~100 * log2(N)
33 * 1e3 100 10 X
34 * 1e4 350 15 1500
35 * 1e5 1300 17 2000
36 * 1e6 4500 20 2000
37 * 1e7 15000 23 2500
38 * 1e8 50000 27 2500
39 */
40 unsigned long N;
41 unsigned long E;
42 Graph g;
43
44 // Unique to this Graph :-)
45 typedef boost::small_world_iterator<boost::minstd_rand, Graph> SWGen;
46 boost::minstd_rand gen;
47 unsigned long K;
48 double Proba;
49
50 // TODO: move this to CommonGraphObjectClass
51 unsigned long Procs = num_processes(boost::graph::distributed::mpi_process_group());
52
53 SmallWorldGraphObject(unsigned long num_nodes, unsigned long kNeighbors, double probability) :
54 E(kNeighbors * num_nodes),
55 K(kNeighbors),
56 N(num_nodes),
57 Proba(probability),
58 g(SWGen(gen, num_nodes, kNeighbors, probability, false), SWGen(), num_nodes) {};
59
60 // TODO: move this to CommonGraphObjectClass
61 void build(){};
62};
63
64
65#endif //CPPPROJCT_SMALLWORLDGRAPH_H
Definition: GeneralGraph.h:139
Definition: SmallWorldGraph.h:11