------------------------------------------------------------------------------
| 399 | |
| 400 | //------------------------------------------------------------------------------ |
| 401 | vtkIdType vtkRedistributeDataSetFilter::GetNumberOfPartitions() const |
| 402 | { |
| 403 | if (!this->Strategy) |
| 404 | { |
| 405 | vtkErrorMacro("No strategy set"); |
| 406 | return false; |
| 407 | } |
| 408 | return this->Strategy->GetNumberOfPartitions(); |
| 409 | } |
| 410 | |
| 411 | //------------------------------------------------------------------------------ |
| 412 | vtkPartitioningStrategy* vtkRedistributeDataSetFilter::GetStrategy() |
no outgoing calls