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

Method GetReductionMethodForColumn

Infovis/Core/vtkReduceTable.cxx:277–285  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

275
276//------------------------------------------------------------------------------
277int vtkReduceTable::GetReductionMethodForColumn(vtkIdType col)
278{
279 std::map<vtkIdType, int>::iterator itr = this->ColumnReductionMethods.find(col);
280 if (itr != this->ColumnReductionMethods.end())
281 {
282 return itr->second;
283 }
284 return -1;
285}
286
287//------------------------------------------------------------------------------
288void vtkReduceTable::SetReductionMethodForColumn(vtkIdType col, int method)

Callers 1

PopulateDataColumnMethod · 0.95

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected