@{ * Reduce an array to the given destination process. This version of Reduce * takes an identifier defined in the * vtkCommunicator::StandardOperations enum to define the operation. */
| 922 | * vtkCommunicator::StandardOperations enum to define the operation. |
| 923 | */ |
| 924 | int Reduce( |
| 925 | const int* sendBuffer, int* recvBuffer, vtkIdType length, int operation, int destProcessId) |
| 926 | { |
| 927 | return this->ReduceVoidArray(sendBuffer, recvBuffer, length, VTK_INT, operation, destProcessId); |
| 928 | } |
| 929 | int Reduce(const unsigned int* sendBuffer, unsigned int* recvBuffer, vtkIdType length, |
| 930 | int operation, int destProcessId) |
| 931 | { |
no test coverage detected