-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deal with sink nodes somehow #1
Comments
This is what I did in the old time (also the current heck for targeted sampling), when a sink node is found: |
Would you be willing to write up the version of Algorithm 3 with these changes? I'm not quite following from the verbal description, and it would be good to include the "modified" version in a vignette as part of the package documentation anyway. i.e. adding something likes to the follow that describe what happens when the |
This makes sense. I will try to do this next week. |
Hmmm is there something better than deleting sink nodes? If you have a graph a -> b -> c -> d -> e this will eventually result in deleting the whole graph. |
Also does it make more sense to return |
open to suggestion. although these nodes are often less of our interest after all.
The seed. We know we want to delete the node only when we actually select and query the node. So, currently, u is the sink one. |
Options:
Important to document this because otherwise the, for example, igraph PPR and the aPPR PPR numbers don't match up. Also results in weird circumstances where you visit all nodes in a graph (consider a -> b -> c as an entire graph), but sum(p) << 1. This seems somewhat concerning to me.
The text was updated successfully, but these errors were encountered: