-
Notifications
You must be signed in to change notification settings - Fork 18
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
add all_neighbor_labels function #76
Comments
I think we already do have it! |
This only works für undirected Graphs. For directed graphs
This is why I think |
Oh right, sorry I missed that. Feel free to open a PR adding it then! |
* Add all_neighbor_labels function Solves #76 * Change all_neighbor_labels test to be independent of order --------- Co-authored-by: Gregor Wehrle <g.wehrle@tu-braunschweig.de>
Closed by #77 |
In Graphs.jl the
all_neighbors
function returns in- and outneighbors for all graphs. This is especially needed for directed graphs. (Docs).I think it would be nice to have a corresponding function like
all_neighbor_labels
in this package. Implementation should be straight forward like in Graphs.jl.What do you think?
The text was updated successfully, but these errors were encountered: