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
I have pushed 8 nodes, but graph create a new one with id null, do you know why this can happen?
And the main issue graph.sinks() ---> [null]
but from graph you can find that there should be 2 nodes [95646, 42556]
The text was updated successfully, but these errors were encountered:
Your example is incorrect. The output of graph.sinks() is correct. The only sink is the node with the label null. The node 95646 is not a sink because it has an outgoing edge to the node labelled null. The node 42556 is not a sink because it also has an outgoing edge to the node labelled null.
Are you treating null nodes somehow specially? Can you provide the code you are running instead of the JSON?
Hi, thanks for your great work!
I have an issue with sinks method. Here is my graph in JSON view
I have pushed 8 nodes, but graph create a new one with id null, do you know why this can happen?
And the main issue
graph.sinks() ---> [null]
but from graph you can find that there should be 2 nodes [95646, 42556]
The text was updated successfully, but these errors were encountered: