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
are pretty slow for large networks (30,000 nodes and 15,000 edges). We should investigate if there are
more efficient API calls in networkx that provide edge counts, and edge views in general, as in iterating over
agent network edges like
donor_list = [x for x,_ in self.network.graph.in_edges(self)]
Furthermore, we might want to provide repast4py network API for these functions so the user doesn't need to reference the underlying networkx graph.
The text was updated successfully, but these errors were encountered:
The networkx graph API for getting the in and out edges appear to be costly, e.g.:
are pretty slow for large networks (30,000 nodes and 15,000 edges). We should investigate if there are
more efficient API calls in networkx that provide edge counts, and edge views in general, as in iterating over
agent network edges like
Furthermore, we might want to provide repast4py network API for these functions so the user doesn't need to reference the underlying networkx graph.
The text was updated successfully, but these errors were encountered: