------------------------------------------------------------------------------
| 1201 | |
| 1202 | //------------------------------------------------------------------------------ |
| 1203 | bool vtkAMRResampleFilter::IsParallel() |
| 1204 | { |
| 1205 | if (this->Controller == nullptr) |
| 1206 | { |
| 1207 | return false; |
| 1208 | } |
| 1209 | |
| 1210 | return this->Controller->GetNumberOfProcesses() > 1; |
| 1211 | } |
| 1212 | |
| 1213 | //------------------------------------------------------------------------------ |
| 1214 | vtkUniformGrid* vtkAMRResampleFilter::GetReferenceGrid(vtkOverlappingAMR* amrds) |
no test coverage detected