| 9 | namespace seissol::initializer { |
| 10 | struct GraphKey { |
| 11 | GraphKey(ComputeGraphType userGraphType, |
| 12 | double userTimeWidth = 0.0, |
| 13 | bool withDisplacements = false) |
| 14 | : graphType(userGraphType), timeWidth(userTimeWidth), withDisplacements(withDisplacements) {} |
| 15 | |
| 16 | bool operator==(const GraphKey& other) const { |
| 17 | return ((graphType == other.graphType) && (timeWidth == other.timeWidth) && |
nothing calls this directly
no outgoing calls
no test coverage detected