| 231 | } |
| 232 | |
| 233 | int vtkSubGroup::getLocalRank(int processId) |
| 234 | { |
| 235 | int localRank = processId - this->members[0]; |
| 236 | |
| 237 | if ((localRank < 0) || (localRank >= this->nmembers)) |
| 238 | return -1; |
| 239 | else |
| 240 | return localRank; |
| 241 | } |
| 242 | #define MINOP \ |
| 243 | if (tempbuf[p] < buf[p]) \ |
| 244 | { \ |
no outgoing calls
no test coverage detected