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
There can only be a single edge between any two users (a single stream between them)
The edges are mutually exclusive, meaning that if $A$ streams to $B$, $B$ cannot also stream to $A$ at the same time. The previous edge will be deleted if $B$ attempts to stream more tokens back to $A$.
No loops (a user cannot stream to themselves)
Cycles are allowed
Luckily, this means that each subgraph will have a sparse density because the total number of edges will be far from $\frac{V*{(V-1)}}{2}$ (where $V$ = number of users).
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Properties of each streaming subgraph:
Luckily, this means that each subgraph will have a sparse density because the total number of edges will be far from$\frac{V*{(V-1)}}{2}$ (where $V$ = number of users).
For full details, see my full chat with ChatGPT.
Related: #107
Beta Was this translation helpful? Give feedback.
All reactions