Skip to content

Commit 9967986

Browse files
committed
Fix a bug in node activation temporal networks
1 parent c7ce866 commit 9967986

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

include/reticula/random_networks.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ namespace reticula {
310310
distribution `res_dist`.
311311
312312
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.
314314
315315
Note that for undirected networks, the activation times of each link are
316316
the result of indipendent activation of the nodes incident to the link. For

src/random_networks/activation_temporal.tpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ namespace reticula {
112112
edges.reserve(size_hint);
113113

114114
for (const auto& v: base_net.vertices()) {
115-
auto links = base_net.out_edges();
115+
auto links = base_net.out_edges(v);
116116
if (links.empty()) continue;
117117

118118
std::uniform_int_distribution<std::size_t> idx(0, links.size() - 1);
@@ -141,12 +141,8 @@ namespace reticula {
141141
if (size_hint > 0)
142142
edges.reserve(size_hint);
143143

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-
148144
for (const auto& v: base_net.vertices()) {
149-
auto links = base_net.out_edges();
145+
auto links = base_net.out_edges(v);
150146
if (links.empty()) continue;
151147

152148
std::uniform_int_distribution<std::size_t> idx(0, links.size() - 1);

0 commit comments

Comments
 (0)