| 871 | } |
| 872 | |
| 873 | int get_graph_node_number(graph_t graph) |
| 874 | { |
| 875 | GraphExecutor* executor = reinterpret_cast<GraphExecutor*>(graph); |
| 876 | Graph* real_graph = executor->GetOptimizedGraph(); |
| 877 | |
| 878 | return real_graph->seq_nodes.size(); |
| 879 | } |
| 880 | |
| 881 | node_t get_graph_node_by_idx(graph_t graph, int node_idx) |
| 882 | { |
nothing calls this directly
no test coverage detected