| 49 | class vtkUnstructuredGrid; |
| 50 | |
| 51 | struct 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 |
| 63 | using DatabaseHandle = std::pair<std::string, int>; |