| 58 | } |
| 59 | |
| 60 | size_t AncestorNode::Hash::operator()(const AncestorNode& ancestor) const { |
| 61 | size_t h = std::hash<int>()(ancestor.output_tensor.node->id()); |
| 62 | h = Hash64Combine(h, std::hash<int>()(ancestor.output_tensor.index)); |
| 63 | return Hash64Combine(h, std::hash<int>()(static_cast<int>(ancestor.type))); |
| 64 | } |
| 65 | |
| 66 | typedef std::tuple<StateMap::CondId, StateMap::AncestorId, OutputTensor> |
| 67 | ClusterTuple; |
no test coverage detected