------------------------------------------------------------------------------
| 366 | |
| 367 | //------------------------------------------------------------------------------ |
| 368 | bool vtkMPIController::TestAny(int count, vtkMPICommunicator::Request requests[], int& idx) |
| 369 | { |
| 370 | int flag = 0; |
| 371 | |
| 372 | // Downcast to MPI communicator |
| 373 | vtkMPICommunicator* myMPICommunicator = (vtkMPICommunicator*)this->Communicator; |
| 374 | |
| 375 | myMPICommunicator->TestAny(count, requests, idx, flag); |
| 376 | return flag != 0; |
| 377 | } |
| 378 | |
| 379 | //------------------------------------------------------------------------------ |
| 380 | bool vtkMPIController::TestSome( |