MCPcopy Create free account
hub / github.com/SeisSol/SeisSol / GraphKey

Method GraphKey

src/Initializer/DeviceGraph.h:11–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9namespace seissol::initializer {
10struct 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) &&

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected