You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sim_config.py uses node IDs generated by network_generator.py. However, since the mesh network generation is probabilistic, not the exact number of nodes are generated in the network.
So, if we want a mesh network of 5 nodes, we may actually end up with a list of node IDs in the network such as:
Problem
sim_config.py
uses node IDs generated bynetwork_generator.py
. However, since the mesh network generation is probabilistic, not the exact number of nodes are generated in the network.So, if we want a mesh network of 5 nodes, we may actually end up with a list of node IDs in the network such as:
instead of
As a result, the events section will look like:
but Coracle hates that and crashes when it comes across something like that. Turns out Coracle expects node IDs to be sequential and consecutive...
Potential Solutions
The text was updated successfully, but these errors were encountered: