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
The output should be: [(0, 1), (1, 2), (1, 3)], but instead, it is [(0, 1, {'t': [[0, -1]]})]. Notice also the -1 in the t. Nonetheless, for [e for e in G1.time_slice(0).edges()] the output is correct (except for the t, which continue to show -1).
Could it be related to how seen is populated in interactions_iter?
The text was updated successfully, but these errors were encountered:
Hi,
I was running the code for the example of the
time_slice
method, and the output does not match the one in the documentation.Given:
The output should be:
[(0, 1), (1, 2), (1, 3)]
, but instead, it is[(0, 1, {'t': [[0, -1]]})]
. Notice also the-1
in thet
. Nonetheless, for[e for e in G1.time_slice(0).edges()]
the output is correct (except for thet
, which continue to show-1
).Could it be related to how
seen
is populated ininteractions_iter
?The text was updated successfully, but these errors were encountered: