Execute all node function by order.
18 {
19 std::unordered_map<std::string, bool> visited;
21 {
22 if (!visited[node.first])
23 {
25 }
26 }
27 }
void execute_internal(directed_acyclic_node *node, std::unordered_map< std::string, bool > &visited)
Execute a node's function.
std::unordered_map< std::string, directed_acyclic_node * > m_Nodes
Graph Nodes.