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
{{ message }}
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
Iterating through all nodes in a graph does currently not ensure that all inputs of a node have been generated.
To simplify the generation of all values in a graph, an iterator that provides a topological ordering could be created.
The text was updated successfully, but these errors were encountered:
You can use an existing solution for topological sorting, such as topological-sort.
I don’t think egui_node_graph can do much better than this, honestly.
edit: also, this crate allows for loops (although not without intermediate nodes), which means the such iterator can't be implemented in the general case.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Iterating through all nodes in a graph does currently not ensure that all inputs of a node have been generated.
To simplify the generation of all values in a graph, an iterator that provides a topological ordering could be created.
The text was updated successfully, but these errors were encountered: