MCPcopy Create free account
hub / github.com/Kitware/VTK / DatabasePartitionInfo

Class DatabasePartitionInfo

IO/IOSS/vtkIOSSReaderInternal.h:51–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49class vtkUnstructuredGrid;
50
51struct DatabasePartitionInfo
52{
53 int ProcessCount = 0;
54 std::set<int> Ranks;
55
56 bool operator==(const DatabasePartitionInfo& other) const
57 {
58 return this->ProcessCount == other.ProcessCount && this->Ranks == other.Ranks;
59 }
60};
61
62// Opaque handle used to identify a specific Region
63using DatabaseHandle = std::pair<std::string, int>;

Callers 1

UpdateDatabaseNamesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected