| 268 | } |
| 269 | |
| 270 | string StateMap::AncestorStateToString(const Node* node) const { |
| 271 | if (auto id = LookupAncestorId(node)) { |
| 272 | return absl::StrCat( |
| 273 | "{", |
| 274 | absl::StrJoin(*id, ",", |
| 275 | [](string* output, const AncestorNode& ancestor) { |
| 276 | absl::StrAppend(output, |
| 277 | ancestor.output_tensor.node->name(), |
| 278 | ":", ancestor.output_tensor.index); |
| 279 | }), |
| 280 | "}"); |
| 281 | } |
| 282 | return "{}"; |
| 283 | } |
| 284 | |
| 285 | FunctionalizeCond::FunctionalizeCond(Graph* graph, |
| 286 | FunctionLibraryDefinition* library) |
no test coverage detected