| 135 | } |
| 136 | |
| 137 | void NodeMap::UpdateInput(const string& node_name, const string& old_input_name, |
| 138 | const string& new_input_name) { |
| 139 | RemoveOutput(NodeName(old_input_name), node_name); |
| 140 | AddOutput(NodeName(new_input_name), node_name); |
| 141 | } |
| 142 | |
| 143 | void NodeMap::RemoveInputs(const string& node_name) { |
| 144 | auto node = nodes_[node_name]; |
no test coverage detected