1
0
mirror of https://github.com/ltcptgeneral/cs239-caching.git synced 2025-04-05 05:37:23 +00:00

randomize friends further

This commit is contained in:
HiccupHan 2025-02-24 17:47:07 -08:00
parent 9dd93d96f2
commit f475991f50

@ -27,7 +27,7 @@ def parse_profile(text, user_id, num_users):
followers = random.randint(10, 5000)
friend_ids = [str(fid) for fid in range(num_users) if fid != user_id]
friend_ids = [str(fid) for fid in range(user_id) if fid != user_id]
random.shuffle(friend_ids)
friends = friend_ids[:random.randint(1, min(100, math.ceil(num_users/3)))]