| 2427 | } |
| 2428 | |
| 2429 | bool GraphProperties::HasInputProperties(const string& node_name) const { |
| 2430 | return input_properties_.find(node_name) != input_properties_.end(); |
| 2431 | } |
| 2432 | |
| 2433 | bool GraphProperties::HasOutputProperties(const string& node_name) const { |
| 2434 | return output_properties_.find(node_name) != output_properties_.end(); |
no test coverage detected