X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.h;h=b51c2bb56cc0d97222ddf7ca99c98d5d8988df38;hp=666df9e5738b4de515b80a3e67452356f55b6d67;hb=616432c0732b8e7780457a1b6320acb46daa9663;hpb=b10c546f579c7ccb5939161e61a71cd18a3f9bbd diff --git a/effect_chain.h b/effect_chain.h index 666df9e..b51c2bb 100644 --- a/effect_chain.h +++ b/effect_chain.h @@ -179,8 +179,17 @@ private: // Some of the graph algorithms assume that the nodes array is sorted // topologically (inputs are always before outputs), but some operations // (like graph rewriting) can change that. This function restores that order. - void sort_nodes_topologically(); - void topological_sort_visit_node(Node *node, std::set *visited_nodes, std::vector *sorted_list); + void sort_all_nodes_topologically(); + + // Do the actual topological sort. must be a connected, acyclic subgraph; + // links that go to nodes not in the set will be ignored. + std::vector topological_sort(const std::vector &nodes); + + // Utility function used by topological_sort() to do a depth-first search. + // The reason why we store nodes left to visit instead of a more conventional + // list of nodes to visit is that we want to be able to limit ourselves to + // a subgraph instead of all nodes. The set thus serves a dual purpose. + void topological_sort_visit_node(Node *node, std::set *nodes_left_to_visit, std::vector *sorted_list); // Used during finalize(). void find_color_spaces_for_inputs();