File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ namespace reticula {
310
310
distribution `res_dist`.
311
311
312
312
At each activation of a node, a random outgoing link from that node is
313
- selected an an event is added for that link.
313
+ selected an event is added for that link.
314
314
315
315
Note that for undirected networks, the activation times of each link are
316
316
the result of indipendent activation of the nodes incident to the link. For
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ namespace reticula {
112
112
edges.reserve (size_hint);
113
113
114
114
for (const auto & v: base_net.vertices ()) {
115
- auto links = base_net.out_edges ();
115
+ auto links = base_net.out_edges (v );
116
116
if (links.empty ()) continue ;
117
117
118
118
std::uniform_int_distribution<std::size_t > idx (0 , links.size () - 1 );
@@ -141,12 +141,8 @@ namespace reticula {
141
141
if (size_hint > 0 )
142
142
edges.reserve (size_hint);
143
143
144
- for (const auto & e: base_net.edges ())
145
- for (typename EdgeT::TimeType t{}; t < max_t *2 ; t += iet_dist (generator))
146
- if (t >= max_t ) edges.emplace_back (e, t - max_t );
147
-
148
144
for (const auto & v: base_net.vertices ()) {
149
- auto links = base_net.out_edges ();
145
+ auto links = base_net.out_edges (v );
150
146
if (links.empty ()) continue ;
151
147
152
148
std::uniform_int_distribution<std::size_t > idx (0 , links.size () - 1 );
You can’t perform that action at this time.
0 commit comments