MCPcopy Create free account
hub / github.com/Kitware/VTK / ExchangeFloatArrays

Method ExchangeFloatArrays

Filters/ParallelGeometry/vtkPDistributedDataFilter.cxx:1284–1298  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1282
1283//------------------------------------------------------------------------------
1284vtkFloatArray** vtkPDistributedDataFilter::ExchangeFloatArrays(
1285 vtkFloatArray** myArray, int deleteSendArrays, int tag)
1286{
1287 vtkFloatArray** fa;
1288
1289 if (this->UseMinimalMemory)
1290 {
1291 fa = this->ExchangeFloatArraysLean(myArray, deleteSendArrays, tag);
1292 }
1293 else
1294 {
1295 fa = this->ExchangeFloatArraysFast(myArray, deleteSendArrays, tag);
1296 }
1297 return fa;
1298}
1299
1300//------------------------------------------------------------------------------
1301vtkIdTypeArray** vtkPDistributedDataFilter::ExchangeIdArrays(

Callers 1

AssignGlobalNodeIdsMethod · 0.95

Calls 2

Tested by

no test coverage detected