| 164 | } |
| 165 | |
| 166 | void Node::Clear() { |
| 167 | in_edges_.clear(); |
| 168 | out_edges_.clear(); |
| 169 | id_ = -1; |
| 170 | cost_id_ = -1; |
| 171 | class_ = NC_UNINITIALIZED; |
| 172 | props_.reset(); |
| 173 | assigned_device_name_index_ = 0; |
| 174 | } |
| 175 | |
| 176 | void Node::UpdateProperties() { |
| 177 | DataTypeVector inputs; |