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
#Generate two random graphs with identical degree sequence, but with different random numbers
G1 = snap.GenDegSeq(sorted_degseq, Rnd1)
G2 = snap.GenDegSeq(sorted_degseq, Rnd2)
`
I expected G1 and G2 to be different, but they seem to be isomorphic.
The text was updated successfully, but these errors were encountered:
`
import snap
#Suppose we have a (sorted) degree sequence: sorted_degseq
#We generate two TRnd objects
Rnd1 = snap.TRnd(555, 2)
Rnd2 = snap.TRnd(1000, 5)
#Generate two random graphs with identical degree sequence, but with different random numbers
G1 = snap.GenDegSeq(sorted_degseq, Rnd1)
G2 = snap.GenDegSeq(sorted_degseq, Rnd2)
`
I expected G1 and G2 to be different, but they seem to be isomorphic.
The text was updated successfully, but these errors were encountered: